/* ============================================================
   pages/finder.css — Scholarship Finder Page
   UNIQUE layouts only — shared components in core.css
   ============================================================ */

/* Finder Hero */
.finder-hero {
  background: linear-gradient(135deg, #1a1625 0%, #2d1f3d 60%, #3d1f4d 100%);
  padding: 2.5rem 0 2rem;
  color: #fff;
  position: relative;
  overflow: visible;
}

.finder-hero + .anja-strip {
  margin-top: 0;
}

.finder-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 148, 134, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.finder-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(172, 50, 138, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.finder-hero-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.finder-hero-title-row h1 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.finder-hero-subtitle {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  margin-top: 6px;
}

.finder-hero-badge {
  background: rgba(21, 148, 134, 0.15);
  border: 1px solid rgba(21, 148, 134, 0.3);
  color: #4dd9c8;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Finder stat cards */
.finder-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.finder-hero-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  cursor: default;
  transition: all 0.2s;
  position: relative;
}

.finder-hero-stat:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.finder-hero-stat__icon {
  font-size: 20px;
  margin-bottom: 6px;
  display: block;
}

.finder-hero-stat__num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.finder-hero-stat__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.finder-hero-stat.primary {
  border-color: rgba(21, 148, 134, 0.4);
  background: rgba(21, 148, 134, 0.08);
}

.finder-hero-stat.primary .finder-hero-stat__num {
  color: #4dd9c8;
}

.finder-hero-stat.urgent {
  border-color: rgba(172, 50, 138, 0.3);
  background: rgba(172, 50, 138, 0.06);
}

.finder-hero-stat.urgent .finder-hero-stat__num {
  color: #d47ab8;
}

.finder-hero-stat.urgent::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ac328a;
  animation: finder-pulse 2s infinite;
}

@keyframes finder-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Finder filter bar */
.finder-hero-filters {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-top: 20px;
  max-width: 100%;
  overflow-x: hidden;
}

.finder-hero-select {
  padding: 9px 32px 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-body);
  appearance: none;
  cursor: pointer;
  min-width: 150px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.15s;
}

.finder-hero-select:focus {
  border-color: rgba(21, 148, 134, 0.6);
  outline: none;
}

.finder-hero-select option {
  background: #1a1625;
  color: #fff;
}

.finder-hero-search {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-body);
  min-width: 120px;
  transition: border-color 0.15s;
}

.finder-hero-search::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.finder-hero-search:focus {
  border-color: rgba(21, 148, 134, 0.6);
  outline: none;
}

.finder-hero-go {
  background: linear-gradient(135deg, #ac328a, #9a2e80);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-heading);
  white-space: nowrap;
  transition: opacity 0.15s;
}

.finder-hero-go:hover {
  opacity: 0.9;
}

/* Mobile filter elements — hidden on desktop */
.finder-mobile-bar,
.finder-mobile-panel {
  display: none;
}

/* Status tabs inside filter bar */
.finder-hero-tabs {
  display: flex;
  gap: 4px;
  margin-left: 4px;
  max-width: 100%;
}

.finder-hero-tab {
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.finder-hero-tab.active {
  background: #ac328a;
  color: #fff;
  border-color: #ac328a;
}

.finder-hero-tab:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
}

.finder-hero-clear {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s;
  flex-shrink: 0;
}

.finder-hero-clear:hover {
  color: #fff;
  text-decoration: underline;
}

.finder-status-hidden-desktop {
  /* hidden input, no styles needed */
}

/* Anja do Deadline strip */
.anja-strip {
  background: linear-gradient(90deg, #fdf0f8 0%, #f0faf8 100%);
  border-bottom: 1px solid rgba(21, 148, 134, 0.12);
  max-width: 100%;
}

.anja-strip__inner {
  display: flex;
  align-items: center;
  min-height: 100px;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.anja-strip__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px 0 0;
  min-width: 90px;
  flex-shrink: 0;
  text-align: center;
  border-right: 1px solid rgba(21, 148, 134, 0.15);
  align-self: stretch;
}

.anja-strip__emoji {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 4px;
}

.anja-strip__name {
  font-size: 11px;
  font-weight: 700;
  color: #b5417a;
  line-height: 1.3;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}

.anja-strip__tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-top: 2px;
}

.anja-strip__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 20px 14px 16px;
  flex: 1;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(21, 148, 134, 0.25) transparent;
  max-width: 100%;
}

.anja-strip__track::-webkit-scrollbar {
  height: 4px;
}

.anja-strip__track::-webkit-scrollbar-track {
  background: transparent;
}

.anja-strip__track::-webkit-scrollbar-thumb {
  background: rgba(21, 148, 134, 0.3);
  border-radius: 2px;
}

.anja-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(21, 148, 134, 0.12);
  border-radius: 10px;
  padding: 8px 12px 8px 8px;
  min-width: 220px;
  max-width: 240px;
  flex-shrink: 0;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.anja-card:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.09);
  border-color: rgba(21, 148, 134, 0.35);
}

.anja-card__thumb {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: #ede8f5;
}

.anja-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.anja-card__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.anja-card__days {
  font-size: 11px;
  font-weight: 600;
  color: #159486;
}

/* Finder Results */
.finder-results-section {
  padding: 40px 0 56px;
}

.finder-results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border-light);
  flex-wrap: wrap;
  gap: 8px;
}

.finder-results-left {
  flex: 1;
  min-width: 200px;
}

.finder-results-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.finder-results-count {
  font-size: 15px;
  color: var(--color-text-secondary);
}

.finder-results-count strong {
  color: var(--color-text);
  font-weight: 700;
}

.finder-results-page {
  font-size: 13px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.finder-sort {
  display: flex;
  align-items: center;
  gap: 6px;
}

.finder-sort-label {
  font-size: 12px;
  color: var(--color-text-muted);
  white-space: nowrap;
  font-weight: 500;
}

.finder-sort-select {
  padding: 6px 28px 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238a8494' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  transition: border-color 0.15s;
}

.finder-sort-select:focus {
  border-color: var(--color-primary);
  outline: none;
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-width: 0;
}

.finder-grid > * {
  min-width: 0;
  overflow: hidden;
}

/* Finder Empty */
.finder-empty {
  text-align: center;
  padding: 80px 20px;
}

.finder-empty-icon {
  margin-bottom: 20px;
  color: var(--color-border);
}

.finder-empty-icon svg {
  color: var(--color-text-muted);
  opacity: 0.4;
}

.finder-empty h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--color-text);
}

.finder-empty p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* Finder Interstitial */
.finder-interstitial {
  grid-column: 1 / -1;
}

.finder-interstitial--consultoria {
  display: grid;
  grid-template-columns: 1fr 180px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-height: 0;
}

.finder-interstitial__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 28px;
  border-left: 4px solid #159486;
  background: #fff;
  justify-content: center;
}

.finder-interstitial__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #159486;
}

.finder-interstitial__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.finder-interstitial__desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.finder-interstitial__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.finder-interstitial__btn {
  flex-shrink: 0;
  background: #159486;
  color: #fff;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.finder-interstitial__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(21, 148, 134, 0.3);
  opacity: 1;
}

.finder-interstitial__price {
  font-size: 12px;
  color: var(--color-text-muted);
}

.finder-interstitial__right {
  background: linear-gradient(135deg, #159486, #0e6b62);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.finder-interstitial__right::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.15) 0%, transparent 65%);
}

.finder-interstitial__icon {
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

/* Finder Mentoria Section */
.finder-mentoria-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 52px 0;
}

.finder-mentoria-section__inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: center;
}

.finder-mentoria-section__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.finder-mentoria-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.finder-mentoria-section__heading {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.finder-mentoria-section__body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  max-width: 520px;
  margin: 0;
}

.finder-mentoria-section__stats {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  flex-wrap: wrap;
}

.finder-mentoria-section__stat-sep {
  opacity: 0.5;
}

.finder-mentoria-section__btn {
  align-self: flex-start;
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  margin-top: 4px;
}

.finder-mentoria-section__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  opacity: 1;
}

.finder-mentoria-section__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.finder-mentoria-section__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.finder-mentoria-section__photo-wrap {
  position: relative;
  z-index: 1;
}

.finder-mentoria-section__photo {
  width: 220px;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  display: block;
}

/* Finder Status Tabs (taxonomy page also uses these) */
.finder-status-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0;
}

.finder-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.finder-tab:hover {
  color: var(--color-text);
  text-decoration: none;
}

.finder-tab--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.finder-tab-count {
  font-size: 11px;
  background: rgba(172, 50, 138, 0.1);
  color: var(--color-primary);
  padding: 1px 7px;
  border-radius: 10px;
  font-weight: 700;
}

/* Finder WhatsApp (taxonomy page also uses) */
.finder-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  padding: 40px 0;
}

.finder-whatsapp-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.finder-whatsapp-text h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.finder-whatsapp-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.finder-whatsapp-btn {
  background: #fff !important;
  color: #128C7E !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.finder-whatsapp-btn:hover {
  opacity: 0.9;
  text-decoration: none;
}


/* ── Responsive: Finder ── */

@media (max-width: 1024px) {
  .finder-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .finder-hero {
    padding: 24px 16px 16px;
  }

  .finder-hero-title-row {
    flex-direction: column;
    gap: 8px;
  }

  .finder-hero-title-row h1 {
    font-size: 1.4rem;
  }

  .finder-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .finder-hero-stat__num {
    font-size: 20px;
  }

  .finder-desktop-only {
    display: none !important;
  }

  .finder-hero-tabs {
    display: none !important;
  }

  .finder-hero-filters {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(26, 22, 37, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px 16px 0 0;
    padding: 0;
    margin: 0;
    display: block;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  }

  .finder-mobile-bar {
    display: flex;
    gap: 6px;
    padding: 8px 10px;
    align-items: center;
  }

  .finder-mobile-main-select {
    flex: 1;
    padding: 8px 24px 8px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    font-family: var(--font-body);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
    min-width: 0;
  }

  .finder-mobile-main-select option {
    background: #1a1625;
    color: #fff;
  }

  .finder-mobile-go-compact {
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #ac328a, #9a2e80);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    flex-shrink: 0;
  }

  .finder-mobile-toggle {
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 10px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: all 0.15s;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-body);
  }

  .finder-mobile-toggle__less { display: none; }

  .finder-mobile-toggle[aria-expanded="true"] {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
  }

  .finder-mobile-toggle[aria-expanded="true"] .finder-mobile-toggle__more { display: none; }
  .finder-mobile-toggle[aria-expanded="true"] .finder-mobile-toggle__less { display: inline; }

  .finder-mobile-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .finder-mobile-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-teal);
  }

  .finder-mobile-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 6px 10px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .finder-mobile-panel.open {
    display: grid;
  }

  .finder-mobile-search {
    grid-column: 1 / -1;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    font-size: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    font-family: var(--font-body);
    outline: none;
  }

  .finder-mobile-search::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }

  .finder-mobile-select {
    padding: 8px 24px 8px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    font-size: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    font-family: var(--font-body);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
  }

  .finder-mobile-select option {
    background: #1a1625;
    color: #fff;
  }

  .finder-mobile-go {
    grid-column: 1 / -1;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    background: linear-gradient(135deg, #ac328a, #9a2e80);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
  }

  .finder-mobile-clear {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 4px 0 2px;
  }

  .finder-mobile-clear:active {
    color: #fff;
  }

  .finder-results-section {
    padding-bottom: 70px;
  }

  .finder-hero-clear {
    display: none;
  }

  .finder-results-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .finder-results-right {
    width: 100%;
    justify-content: space-between;
  }

  .finder-sort {
    width: 100%;
  }

  .finder-sort-select {
    flex: 1;
  }

  .finder-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .finder-interstitial--consultoria {
    grid-template-columns: 1fr;
  }

  .finder-interstitial__right {
    display: none;
  }

  .finder-interstitial__left {
    padding: 20px;
  }

  .finder-interstitial__title {
    font-size: 15px;
  }

  .finder-interstitial__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .finder-interstitial__btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .finder-mentoria-section {
    padding: 40px 0;
  }

  .finder-mentoria-section__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .finder-mentoria-section__body {
    max-width: none;
  }

  .finder-mentoria-section__stats {
    justify-content: center;
  }

  .finder-mentoria-section__btn {
    align-self: center;
  }

  .finder-mentoria-section__photo {
    width: 160px;
    height: 190px;
  }

  /* Anja strip */
  .anja-strip__inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .anja-strip__label {
    flex-direction: row;
    gap: 8px;
    padding: 10px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(21, 148, 134, 0.15);
    align-self: auto;
    justify-content: flex-start;
    min-width: 0;
  }

  .anja-strip__emoji {
    margin-bottom: 0;
  }

  .anja-strip__name {
    display: inline;
    white-space: nowrap;
  }

  .anja-strip__track {
    padding: 12px 16px;
  }

  /* Finder status tabs */
  .finder-status-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }

  .finder-status-tabs::-webkit-scrollbar {
    display: none;
  }

  .finder-tab {
    padding: 8px 14px;
    font-size: 13px;
  }

  .finder-whatsapp-inner {
    flex-direction: column;
    text-align: center;
  }

  .finder-whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

  .finder-hero-select,
  .finder-hero-search,
  .finder-hero-tab {
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .finder-hero-stats {
    gap: 6px;
  }

  .finder-hero-stat {
    padding: 10px 8px;
  }

  .finder-hero-stat__icon {
    font-size: 14px;
  }

  .finder-hero-stat__num {
    font-size: 18px;
  }

  .finder-hero-stat__label {
    font-size: 9px;
  }
}
