    :root {
      --tajah-bg: #fcfcf6;
      --tajah-ink: #1f2a37;
      --tajah-muted: #5e5e59;
      --tajah-primary: #b670ff;
      --tajah-success: #067647;
      --tajah-tag: #fffd70;
      --tajah-drawer-desktop: min(50vw, 560px);
      --tajah-page-max: 1280px;
      --tajah-time-bg: #f4f4f0;
      --tajah-time-border: #e8e8e2;
      --tajah-time-ink: #6b6b65;
    }

    html {
      font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
    }

    body {
      margin: 0;
      background-color: var(--tajah-bg);
      color: var(--tajah-ink);
    }

    .tajah-page {
      max-width: var(--tajah-page-max);
      margin-left: auto;
      margin-right: auto;
      padding: 2rem 1.5rem 4rem;
    }

    @media (min-width: 1024px) {
      .tajah-page {
        padding: 2.5rem 2.5rem 5rem;
      }
    }

    .tajah-results-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 900px) {
      .tajah-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 1200px) {
      .tajah-results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    /* ── Drawer ── */
    .tajah-drawer-panel {
      position: absolute;
      top: 60px;
      right: 0;
      height: calc(100vh - 70px); 
      width: min(100%, var(--tajah-drawer-desktop));
      min-width: 280px;
      display: flex;
      flex-direction: column;
      background: linear-gradient(165deg, #efe6ff 0%, #f9f5ff 28%, #f3f0fa 55%, #faf8fc 100%);
      border-inline-start: 1px solid rgba(182, 112, 255, 0.28);
      box-shadow: -16px 0 48px rgba(76, 29, 120, 0.14);
      z-index: 10;
      animation: tajah-drawer-in 0.22s ease-out;
    }

    .tajah-drawer-header {
      background: linear-gradient(120deg, rgba(182, 112, 255, 0.22) 0%, rgba(182, 112, 255, 0.06) 55%, transparent 100%);
      border-bottom: 1px solid rgba(182, 112, 255, 0.22);
    }

    .tajah-filter-card {
      border-radius: 1rem;
      border: 1px solid rgba(182, 112, 255, 0.26);
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 0 6px 22px rgba(99, 42, 156, 0.07);
      backdrop-filter: blur(8px);
    }

    .tajah-filter-card h3 {
      color: #35214d;
    }

    .tajah-drawer-scroll {
      background: linear-gradient(180deg, transparent, rgba(182, 112, 255, 0.04));
    }

    .tajah-drawer-footer {
      display: flex;
      flex-direction: row;
      gap: 0.75rem;
      padding: 1rem 1.1rem 1.25rem;
      border-top: 1px solid rgba(182, 112, 255, 0.22);
      background: linear-gradient(0deg, rgba(237, 224, 255, 0.85) 0%, rgba(250, 248, 252, 0.4) 100%);
    }

    /* ── Buttons ── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      border-radius: 14px;
      padding: 0 18px;
      font-size: 0.875rem;
      font-weight: 700;
      font-family: inherit;
      color: #fff;
      background: #b670ff;
      border: none;
      cursor: pointer;
      transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
      box-shadow: 0 2px 8px rgba(182, 112, 255, 0.30);
    }

    .btn-primary:hover {
      background: #a055f5;
      box-shadow: 0 4px 16px rgba(182, 112, 255, 0.40);
    }

    .btn-primary:active {
      background: #8e3fe0;
      transform: scale(0.97);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      border-radius: 14px;
      padding: 0 18px;
      font-size: 0.875rem;
      font-weight: 700;
      font-family: inherit;
      color: #b670ff;
      background: #fff;
      border: 2px solid #b670ff;
      cursor: pointer;
      transition: background 0.15s ease, transform 0.1s ease;
    }

    .btn-secondary:hover {
      background: #f5edff;
    }

    .btn-secondary:active {
      background: #ede0ff;
      transform: scale(0.97);
    }

    .tajah-btn-apply-filter {
      flex: 1;
      min-height: 48px;
      border-radius: 1rem;
      border: 0;
      font-weight: 700;
      font-size: 0.9rem;
      font-family: inherit;
      cursor: pointer;
      color: #fff;
      background: #b670ff;
      box-shadow: 0 4px 16px rgba(182, 112, 255, 0.35);
      transition: background 0.15s ease, transform 0.1s ease;
    }

    .tajah-btn-apply-filter:hover {
      background: #a055f5;
    }

    .tajah-btn-apply-filter:active {
      transform: scale(0.98);
      background: #8e3fe0;
    }

    .tajah-btn-clear-filter {
      flex: 1;
      min-height: 48px;
      border-radius: 1rem;
      border: 2px solid rgba(182, 112, 255, 0.45);
      font-weight: 700;
      font-size: 0.9rem;
      font-family: inherit;
      cursor: pointer;
      color: #5b3d8a;
      background: rgba(255, 255, 255, 0.75);
      transition: background 0.12s ease, border-color 0.12s ease;
    }

    .tajah-btn-clear-filter:hover {
      background: rgba(255, 255, 255, 0.95);
      border-color: rgba(182, 112, 255, 0.75);
    }

    .tajah-drawer-overlay {
      backdrop-filter: blur(3px);
    }

    @media (max-width: 640px) {
      .tajah-drawer-panel {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }
    }

    @keyframes tajah-drawer-in {
      from {
        transform: translateX(12px);
        opacity: 0.92;
      }

      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    /* ── Suggestions ── */
    .tajah-suggest-list {
      position: absolute;
      top: calc(100% + 6px);
      right: 0;
      left: 0;
      z-index: 30;
      max-height: 260px;
      overflow: auto;
      border-radius: 1rem;
      border: 1px solid #e4e4e7;
      background: #fff;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .tajah-suggest-item {
      width: 100%;
      text-align: right;
      padding: 0.65rem 1rem;
      font-size: 0.9rem;
      color: var(--tajah-ink);
      background: transparent;
      border: 0;
      cursor: pointer;
      transition: background 0.12s ease;
      font-family: inherit;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .tajah-suggest-item:hover,
    .tajah-suggest-item:focus {
      background: #f4f4f5;
      outline: none;
    }

    .tajah-suggest-item mark {
      background: #ede9fe;
      color: var(--tajah-primary);
      font-weight: 700;
      padding: 0 0.15em;
      border-radius: 4px;
    }

    .tajah-suggest-icon {
      color: #b670ff;
      flex-shrink: 0;
    }

    .tajah-suggest-section {
      padding: 0.35rem 1rem 0.2rem;
      font-size: 0.72rem;
      font-weight: 700;
      color: #a7a7a3;
      text-align: right;
    }

    /* ── Filter chips ── */
    .tajah-filter-chip-off {
      border: 2px solid #b670ff !important;
      background: #ffffff !important;
      color: #35214d !important;
      font-weight: 600 !important;
    }

    .tajah-filter-chip-off:hover {
      background: #f5edff !important;
      border-color: #a055f5 !important;
    }

    .tajah-filter-chip-on {
      border: 2px solid #b670ff !important;
      background: #b670ff !important;
      color: #ffffff !important;
      font-weight: 700 !important;
      box-shadow: 0 2px 8px rgba(182, 112, 255, 0.35) !important;
    }

    .tajah-filter-chip-on:hover {
      background: #a055f5 !important;
      border-color: #a055f5 !important;
    }

    /* ── Dropdown ── */
    .tajah-dropdown-wrap {
      position: static;
    }

    .tajah-dropdown-trigger {
      width: 100%;
      min-height: 40px;
      border-radius: 0.75rem;
      border: 2px solid #b670ff;
      background: #fff;
      color: #35214d;
      font-family: inherit;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      padding: 0 0.75rem;
      gap: 0.5rem;
      transition: background 0.12s;
    }

    .tajah-dropdown-trigger:hover {
      background: #f5edff;
    }

    .tajah-dropdown-trigger span {
      flex: 1;
      text-align: right;
    }

    .tajah-dropdown-trigger svg {
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .tajah-dropdown-trigger.open svg {
      transform: rotate(180deg);
    }

    .tajah-dropdown-panel {
      border-radius: 1rem;
      border: 1px solid rgba(182, 112, 255, 0.3);
      background: #fff;
      box-shadow: 0 8px 24px rgba(99, 42, 156, 0.13);
      overflow: hidden;
      margin-top: 6px;
    }

    .tajah-dropdown-search {
      width: 100%;
      border: none;
      border-bottom: 1px solid rgba(182, 112, 255, 0.2);
      padding: 0.6rem 0.85rem;
      font-family: inherit;
      font-size: 0.85rem;
      color: #1f2a37;
      background: #faf7ff;
      outline: none;
      text-align: right;
      box-sizing: border-box;
    }

    .tajah-dropdown-search::placeholder {
      color: #a7a7a3;
    }

    .tajah-dropdown-list {
      max-height: 200px;
      overflow-y: auto;
      padding: 0.4rem;
    }

    .tajah-dropdown-item {
      width: 100%;
      text-align: right;
      padding: 0.5rem 0.75rem;
      font-size: 0.85rem;
      color: #35214d;
      background: transparent;
      border: 0;
      cursor: pointer;
      border-radius: 0.5rem;
      transition: background 0.1s;
      font-family: inherit;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      box-sizing: border-box;
    }

    .tajah-dropdown-item:hover {
      background: #f5edff;
    }

    .tajah-dropdown-item.selected {
      background: #ede0ff;
      font-weight: 700;
    }

    .tajah-dropdown-item .check {
      color: #b670ff;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    .tajah-dropdown-selected-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-top: 0.5rem;
    }

    .tajah-selected-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      border-radius: 999px;
      border: 1.5px solid #b670ff;
      background: #ede0ff;
      color: #5b3d8a;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.15rem 0.5rem;
      font-family: inherit;
    }

    .tajah-selected-tag button {
      background: none;
      border: none;
      cursor: pointer;
      color: #b670ff;
      font-size: 0.85rem;
      line-height: 1;
      padding: 0;
      display: flex;
      align-items: center;
    }

    .tajah-section-clear {
      background: none;
      border: 1.5px solid rgba(182, 112, 255, 0.35);
      cursor: pointer;
      color: #8b5cf6;
      font-size: 0.72rem;
      font-weight: 700;
      font-family: inherit;
      padding: 0.15rem 0.55rem;
      border-radius: 0.4rem;
      transition: background 0.1s, border-color 0.1s;
      white-space: nowrap;
    }

    .tajah-section-clear:hover {
      background: #f5edff;
      border-color: #b670ff;
    }

    .tajah-section-clear:disabled {
      opacity: 0.35;
      cursor: default;
    }

    /* ── تاق "منذ" ── */
    .tajah-time-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.28rem;
      background: #f0f0ec;
      border: 1px solid #e2e2dc;
      color: #6b6b65;
      border-radius: 999px;
      padding: 0.22rem 0.65rem;
      font-size: 0.7rem;
      font-weight: 600;
      white-space: nowrap;
      font-family: inherit;
    }

    .tajah-opp-type-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: #fffd70;
      color: #1f2a37;
      border-radius: 999px;
      padding: 0.28rem 0.7rem;
      font-size: 0.75rem;
      font-weight: 700;
      font-family: inherit;
    }

    /* sport tag next to yellow tag */
    .tajah-sport-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.28rem;
      background: #f0e6ff;
      border: 1.5px solid #c89eff;
      color: #5b3d8a;
      border-radius: 999px;
      padding: 0.28rem 0.7rem;
      font-size: 0.75rem;
      font-weight: 700;
      font-family: inherit;
    }

    /* ── بانر النتائج ── */
    .tajah-results-banner {
      animation: tajah-banner-in 0.3s ease-out;
    }

    @keyframes tajah-banner-in {
      from {
        opacity: 0;
        transform: translateY(-6px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .tajah-banner-close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: none;
      background: rgba(6, 118, 71, 0.12);
      color: #067647;
      cursor: pointer;
      transition: background 0.15s, transform 0.1s;
      flex-shrink: 0;
      font-family: inherit;
    }

    .tajah-banner-close:hover {
      background: rgba(6, 118, 71, 0.22);
    }

    .tajah-banner-close:active {
      transform: scale(0.93);
    }

    /* ── token chips in search bar ── */
    .tajah-token-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      background: #ede0ff;
      border: 1.5px solid #c89eff;
      color: #5b3d8a;
      border-radius: 999px;
      padding: 0.1rem 0.45rem;
      font-size: 0.75rem;
      font-weight: 700;
      white-space: nowrap;
      font-family: inherit;
      flex-shrink: 0;
    }

    /* ── line-clamp fix ── */
    .line-clamp-2 {
      overflow: hidden;
      display: -webkit-box ;
      -webkit-box-orient: vertical;
    }

    /* ── verified badge ── */
    .tajah-verified {
      display: inline-flex;
      align-items: center;
      gap: 0.2rem;
      color: #1d4ed8;
      flex-shrink: 0;
    }

    /* Navbar styles */
    .nav-link {
      transition: color 0.15s, background 0.15s;
    }

    .nav-link-active::after {
      content: '';
      position: absolute;
      bottom: -1px;
      right: 12px;
      left: 12px;
      height: 2px;
      background: #b670ff;
      border-radius: 2px 2px 0 0;
    }

    .hover-purple:hover {
      color: #b670ff !important;
      background: #f6ebff !important;
    }

    .dropdown {
      transform-origin: top right;
    }

    .dropdown.open {
      animation: dropIn 0.18s ease both;
    }

    @keyframes dropIn {
      from {
        opacity: 0;
        transform: scale(0.95) translateY(-6px);
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .drawer {
      transform: translateX(100%);
      transition: transform 0.3s ease;
    }

    .drawer.open {
      transform: translateX(0);
    }

    /* Hide duplicate layout placeholders */
    .navbar-placeholder,
    .footer-placeholder {
      display: none !important;
    }


/* ── Scout Search Specific Styles ── */
.pg {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.grid-results {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .grid-results {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid-results {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dd-wrap {
  position: relative;
}
/* Elevates the active container layer above all sibling filter cards */
.dd-wrap:has(.dd-menu.open) {
  z-index: 101;
  position: relative;
}

.dd-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px;
  background: #fff;
  border: 1px solid rgba(182, 112, 255, 0.4);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
  color: #35214d;
}

.dd-btn:hover,
.dd-btn.on {
  border-color: #b670ff;
}

.dd-btn.on {
  background: #f6ebff;
  color: #b670ff;
}
.dd-menu {
  display: none;
  position: absolute;
  top: 100%;       
  right: 0;
  left: 0;
  z-index: 100; /* Increased from 99 */
  background: #fff;
  border: 1px solid #e6e6dc;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(99, 42, 156, 0.12);
  max-height: 240px;
  overflow-y: auto;
}


.dd-menu.open {
  display: block;
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background 0.12s;
}

.dd-item:hover {
  background: rgba(182, 112, 255, 0.12);
}

.dd-item input {
  accent-color: #b670ff;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.dd-item.selected {
  background: rgba(182, 112, 255, 0.12);
  color: #35214d;
  font-weight: 600;
}

.fl-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #35214d;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clr-btn {
  font-size: 0.75rem;
  color: #b670ff;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: underline;
  padding: 0;
}

/* ── Scout Filter Drawer ── */
.scout-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(3px);
  display: none;
}

.scout-drawer-overlay.open {
  display: block;
}

.scout-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(100%, 520px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #efe6ff 0%, #f9f5ff 28%, #f3f0fa 55%, #faf8fc 100%);
  border-inline-start: 1px solid rgba(182, 112, 255, 0.28);
  box-shadow: -16px 0 48px rgba(76, 29, 120, 0.14);
  animation: scout-drawer-in 0.22s ease-out;
}

/* Forces parent components to show the floating absolute layers */
.scout-filter-card {
  position: relative;
  overflow: visible !important;
}

@keyframes scout-drawer-in {
  from {
    transform: translateX(12px);
    opacity: 0.92;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .scout-drawer-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

.scout-drawer-header {
  background: linear-gradient(120deg, rgba(182, 112, 255, 0.22) 0%, rgba(182, 112, 255, 0.06) 55%, transparent 100%);
  border-bottom: 1px solid rgba(182, 112, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  flex-shrink: 0;
}

.scout-drawer-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #35214d;
  margin: 0;
}

.scout-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background: none;
  cursor: pointer;
  color: #5b3d8a;
  font-size: 1.5rem;
  line-height: 1;
  transition: background 0.12s;
  font-family: inherit;
}

.scout-drawer-close:hover {
  background: rgba(255, 255, 255, 0.6);
}

.scout-drawer-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(180deg, transparent, rgba(182, 112, 255, 0.04));
}

.scout-drawer-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.1rem 1.25rem;
  border-top: 1px solid rgba(182, 112, 255, 0.22);
  background: linear-gradient(0deg, rgba(237, 224, 255, 0.85) 0%, rgba(250, 248, 252, 0.4) 100%);
  flex-shrink: 0;
}


.scout-filter-card {
  border-radius: 1rem;
  border: 1px solid rgba(182, 112, 255, 0.26);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 6px 22px rgba(99, 42, 156, 0.07);
  backdrop-filter: blur(8px);
  padding: 1rem;
  
  position: relative;
  overflow: visible !important;
  z-index: 1; 
}

.scout-filter-card:has(.dd-menu.open) {
  z-index: 10;
}

.scout-filter-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.scout-filter-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #35214d;
  margin: 0;
}

.scout-section-clear {
  background: none;
  border: 1.5px solid rgba(182, 112, 255, 0.35);
  cursor: pointer;
  color: #8b5cf6;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: inherit;
  padding: 0.15rem 0.55rem;
  border-radius: 0.4rem;
  transition: background 0.1s, border-color 0.1s;
  white-space: nowrap;
}

.scout-section-clear:hover {
  background: #f5edff;
  border-color: #b670ff;
}

.scout-section-clear:disabled {
  opacity: 0.35;
  cursor: default;
}

.scout-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.scout-chip {
  min-height: 40px;
  border-radius: 0.75rem;
  border: 2px solid #b670ff;
  background: #fff;
  color: #35214d;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.15s;
  padding: 0 0.5rem;
}

.scout-chip:hover {
  background: #f5edff;
}

.scout-chip.on {
  background: #b670ff;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(182, 112, 255, 0.35);
}

.scout-chip.on:hover {
  background: #a055f5;
}

.scout-btn-apply {
  flex: 1;
  min-height: 48px;
  border-radius: 1rem;
  border: 0;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  color: #fff;
  background: #b670ff;
  box-shadow: 0 4px 16px rgba(182, 112, 255, 0.35);
  transition: background 0.15s;
}

.scout-btn-apply:hover {
  background: #a055f5;
}

.scout-btn-clear {
  flex: 1;
  min-height: 48px;
  border-radius: 1rem;
  border: 2px solid rgba(182, 112, 255, 0.45);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  color: #5b3d8a;
  background: rgba(255, 255, 255, 0.75);
  transition: background 0.12s, border-color 0.12s;
}

.scout-btn-clear:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(182, 112, 255, 0.75);
}

.suggest-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 40;
  max-height: 200px;
  overflow: auto;
  border-radius: 12px;
  border: 1px solid #e6e6dc;
  background: #fcfcfa;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.1);
}

.suggest-item {
  width: 100%;
  text-align: right;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: #141412;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  display: block;
}

.suggest-item:hover {
  background: #f6ebff;
}

.suggest-item mark {
  background: #f6ebff;
  color: #b670ff;
  font-weight: 600;
  padding: 0 0.15em;
  border-radius: 3px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fffd70;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1f2a37;
}

.nav-dd {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 208px;
  background: #fcfcfa;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #e6e6dc;
  z-index: 99;
  overflow: hidden;
}

.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: #5e5e59;
  text-decoration: none;
  transition: background 0.12s;
}

.nav-dd-item:hover {
  background: #f6ebff;
  color: #b670ff;
}
