.efl-af-tiles-container {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 24px auto;
  overflow-x: auto;
}

.efl-af-tile {
  flex: 0 0 auto;
  min-width: 190px;
  max-width: 220px;
  padding: 20px 24px;
  border-radius: 18px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.efl-af-tile:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  border-color: rgba(255,255,255,0.3);
}

.efl-af-tile-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  display: block;
}

.efl-af-tile span {
  text-align: center;
  line-height: 1.2;
  font-size: 14px;
}

.efl-af-tile span b {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

/* Mobile: two columns */
@media (max-width: 768px) {
  .efl-af-tiles-container {
    flex-wrap: wrap !important;
    justify-content: center;
  }
  .efl-af-tile {
    flex: 0 1 calc(50% - 12px) !important;
    max-width: none;
  }
}
