
    /* Capital One Inspired Light Tokens + Tri-Service Palette */
    :root {
      --bg-body: #f8fafc;
      --bg-surface: #ffffff;
      --bg-surface-elevated: #f1f5f9;
      
      /* Tri-Service Palette */
      --flag-army-red: #e11d48;       
      --flag-navy-dark: #0b192c;      
      --flag-airforce-blue: #0284c7;  
      
      --brand-navy: var(--flag-navy-dark);
      --text-main: #0f172a;
      --text-muted: #475569; /* Polished for contrast AA standard */
      --border-subtle: #e2e8f0;
      --border-highlight: #cbd5e1;
      --glass-bg: rgba(255, 255, 255, 0.94);
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-sm: 8px;
      --shadow-subtle: 0 4px 20px -2px rgba(11, 25, 44, 0.05);
      --shadow-elevated: 0 20px 40px -12px rgba(11, 25, 44, 0.1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'Plus Jakarta Sans', 'Noto Sans Malayalam', -apple-system, sans-serif;
      background-color: var(--bg-body);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }

    /* Tri-Service Top Accent Bar */
    .tri-color-bar {
      height: 6px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      width: 100%;
    }
    .tri-color-bar .red { background-color: var(--flag-army-red); }
    .tri-color-bar .dark-blue { background-color: var(--flag-navy-dark); }
    .tri-color-bar .sky-blue { background-color: var(--flag-airforce-blue); }

    /* Announcement Strip */
    .top-notice {
      background: var(--brand-navy);
      color: #ffffff;
      padding: 8px 5%;
      font-size: 0.82rem;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      overflow: hidden;
    }
    .top-notice span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .top-notice span:first-child { min-width: 0; flex: 1 1 auto; }
    .top-notice span:last-child { flex: 0 0 auto; }
    @media (max-width: 760px) { .top-notice span:last-child { display: none; } }

    /* Sticky Navigation */
    .header-wrapper {
      position: sticky;
      top: 15px;
      z-index: 1000;
      padding: 0 5%;
      margin-bottom: 10px;
    }
    .main-header {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      border: 1px solid var(--border-subtle);
      padding: 12px 28px;
      border-radius: 100px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      box-shadow: var(--shadow-subtle);
    }
    .brand-logo { display: flex; align-items: center; gap: 12px; }
    .brand-logo .logo-badge {
      width: 48px;
      height: 48px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .brand-title h1 { font-size: 0.95rem; font-weight: 800; color: var(--brand-navy); }
    .brand-title span { font-size: 0.72rem; color: var(--text-muted); display: block; font-weight: 500; }

    .nav-links { display: flex; gap: 24px; align-items: center; font-size: 0.88rem; font-weight: 600; }
    .nav-links a { color: var(--text-muted); transition: color 0.2s; position: relative; padding-bottom: 4px; }
    .nav-links a:hover { color: var(--brand-navy); }
    .nav-links a.active { color: var(--brand-navy); font-weight: 700; }
    .nav-links a.active::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
      height: 2px; background: var(--flag-army-red); border-radius: 2px;
    }

    /* Language Switcher */
    .lang-switcher {
      display: flex;
      background: var(--bg-surface-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: 100px;
      padding: 3px;
      cursor: pointer;
    }
    .lang-btn {
      padding: 5px 12px;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-muted);
      transition: all 0.2s ease;
      user-select: none;
    }
    .lang-btn.active {
      background: var(--flag-navy-dark);
      color: #ffffff;
    }

    /* Buttons */
    .btn {
      padding: 12px 24px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 0.88rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: none;
      transition: all 0.25s ease;
    }
    .btn-accent { background: var(--flag-army-red); color: #ffffff; }
    .btn-accent:hover { background: #be123c; transform: translateY(-2px); }
    .btn-primary { background: var(--flag-navy-dark); color: #ffffff; }
    .btn-primary:hover { background: #1e293b; transform: translateY(-2px); }
    .btn-light { background: var(--bg-surface-elevated); color: var(--brand-navy); border: 1px solid var(--border-subtle); }

    /* Hero Layout */
    .hero {
      padding: 8px 5% 60px;
      max-width: 1280px;
      margin: 0 auto;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 50px;
      align-items: center;
    }
    .hero-title { font-size: 3.1rem; font-weight: 800; line-height: 1.15; color: var(--brand-navy); margin-bottom: 18px; }
    .hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 28px; }

    /* Hero Slider */
    .hero-slider { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
    .hero-track { display: flex; transition: transform 0.6s cubic-bezier(0.65,0,0.35,1); }
    .hero-slide { flex: 0 0 100%; min-width: 100%; }
    .hero-slide .hero-grid { padding: 4px 44px 56px; }
    .hero-dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
    .hero-dot {
      width: 8px; height: 8px; border-radius: 50%; background: var(--border-highlight);
      cursor: pointer; transition: all 0.25s ease; border: none; padding: 0;
    }
    .hero-dot.active { background: var(--flag-airforce-blue); width: 26px; border-radius: 100px; }

    .villa-hero-card {
      background: linear-gradient(160deg, rgba(11,25,44,0.88), rgba(22,35,58,0.88));
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: var(--radius-lg); padding: 32px; color: #fff;
      box-shadow: var(--shadow-elevated); position: relative; overflow: hidden;
    }
    .villa-hero-card::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(120% 100% at 100% 0%, rgba(56,189,248,0.18), transparent 60%);
    }
    .villa-hero-card > * { position: relative; z-index: 1; }
    .villa-hero-stats { display: flex; gap: 22px; margin: 18px 0 22px; }
    .villa-hero-stats div { }
    .villa-hero-stats .n { font-size: 1.4rem; font-weight: 800; color: #38bdf8; }
    .villa-hero-stats .l { font-size: 0.72rem; color: #94a3b8; }

    .loan-hero-card .loan-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-subtle); }
    .loan-hero-card .loan-row:last-of-type { border-bottom: none; margin-bottom: 20px; }

    /* Hero slide photographic backdrops (placeholder art, pending real photography) */
    .hero { position: relative; }
    .hero-slide {
      position: relative; border-radius: var(--radius-lg); overflow: hidden;
      min-height: 640px; display: flex; align-items: flex-end;
    }
    .hero-slide .hero-grid { width: 100%; }
    .hero-photo {
      position: absolute; inset: 0;
      z-index: 0; overflow: hidden;
    }
    .hero-photo::before { content: ''; position: absolute; inset: 0; }
    .hero-photo::after {
      content: ''; position: absolute; inset: 0; opacity: 0.55; mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    }
    .hero-photo.photo-banking::before {
      background:
        radial-gradient(120% 130% at 90% 10%, rgba(56,189,248,0.65), transparent 55%),
        radial-gradient(110% 120% at 10% 100%, rgba(2,132,199,0.8), transparent 60%),
        linear-gradient(155deg, #0c3a5c, #0b192c 75%);
    }
    .hero-photo.photo-loans::before {
      background:
        radial-gradient(120% 130% at 90% 10%, rgba(251,191,36,0.55), transparent 55%),
        radial-gradient(110% 120% at 10% 100%, rgba(225,29,72,0.65), transparent 60%),
        linear-gradient(155deg, #5c1d2c, #0b192c 75%);
    }
    .hero-photo.photo-villa::before {
      background:
        radial-gradient(120% 130% at 90% 10%, rgba(163,230,53,0.45), transparent 55%),
        radial-gradient(110% 120% at 10% 100%, rgba(56,189,248,0.6), transparent 60%),
        linear-gradient(155deg, #163a2e, #0b192c 75%);
    }
    /* Scrim: fades from solid page background on the left (text zone) to fully transparent on the right (photo visible) */
    .hero-scrim {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(90deg,
        var(--bg-body) 0%, var(--bg-body) 28%,
        rgba(248,250,252,0.82) 40%, rgba(248,250,252,0.45) 54%, rgba(248,250,252,0.1) 70%, transparent 82%);
    }
    .hero-photo .cap {
      position: absolute; right: 22px; bottom: 16px; z-index: 2;
      font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase;
      color: rgba(255,255,255,0.85); background: rgba(11,25,44,0.5); padding: 4px 11px; border-radius: 100px;
      backdrop-filter: blur(2px);
    }
    .hero-slide .hero-grid { position: relative; z-index: 2; }
    @media (max-width: 900px) {
      .hero-slide { min-height: 520px; align-items: flex-end; }
      .hero-slide .hero-grid { padding: 4px 24px 32px; }
    }

    /* Cinematic no-card slide variant (uniform dark scrim, full-width text, white type) */
    .hero-scrim-dark { position: absolute; inset: 0; z-index: 1; background: rgba(11, 25, 44, 0.3); }
    .hero-cinematic { position: relative; z-index: 2; max-width: 640px; padding: 36px 44px 56px; }
    .hero-title-light { color: #ffffff; }
    .hero-subtitle-light { color: rgba(255, 255, 255, 0.85); }
    .btn-line-light { background: transparent; border: 1px solid rgba(255,255,255,0.55); color: #ffffff; }
    .btn-line-light:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); }
    @media (max-width: 900px) {
      .hero-cinematic { padding: 4px 24px 32px; }
    }

    /* Action Card */
    .rate-card {
      background: rgba(255, 255, 255, 0.86);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 20px 22px;
      max-width: 340px;
      box-shadow: var(--shadow-elevated);
      position: relative;
      font-size: 0.88rem;
    }
    .rate-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--flag-army-red) 33.3%, var(--flag-navy-dark) 33.3%, var(--flag-navy-dark) 66.6%, var(--flag-airforce-blue) 66.6%);
    }

    /* Villa Spotlight Section */
    .villa-spotlight {
      background: linear-gradient(135deg, #0b192c 0%, #1e293b 100%);
      color: #ffffff;
      border-radius: var(--radius-lg);
      padding: 44px;
      margin: 60px auto;
      max-width: 1200px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      align-items: center;
    }
    .villa-spotlight .tag {
      background: rgba(225, 29, 72, 0.2);
      border: 1px solid rgba(225, 29, 72, 0.5);
      color: #ff758f;
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 700;
      display: inline-block;
      margin-bottom: 16px;
    }

    /* Grid Sections */
    .section-container { max-width: 1200px; margin: 48px auto; padding: 0 5%; }
    .section-header { text-align: center; margin-bottom: 48px; }
    .section-header h2 { font-size: 2.2rem; font-weight: 800; color: var(--brand-navy); }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .service-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 28px 20px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-subtle);
    }
    .service-card:hover { transform: translateY(-4px); border-color: var(--border-highlight); box-shadow: var(--shadow-elevated); }
    .service-icon { font-size: 1.8rem; margin-bottom: 14px; }
    .form-card { display: block; text-decoration: none; color: inherit; cursor: pointer; }
    .form-download-tag {
      display: inline-block; margin-top: 14px; font-size: 0.76rem; font-weight: 700;
      color: var(--flag-airforce-blue);
    }
    .form-card:hover .form-download-tag { color: var(--flag-army-red); }

    /* Rate & Locker Tables */
    .rate-table-wrap {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-subtle);
    }
    .rate-table-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      padding: 12px 4px;
      border-bottom: 1px solid var(--border-subtle);
      font-size: 0.9rem;
    }
    .rate-table-row:last-child { border-bottom: none; }
    .rate-table-row span:last-child { font-weight: 700; color: var(--brand-navy); text-align: right; }
    .rate-table-head { font-weight: 800; color: var(--text-muted); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.04em; }
    .rate-table-head span:last-child { color: var(--text-muted); }
    .rate-table-4col { grid-template-columns: 0.6fr 1.4fr 1fr 1fr; }
    .rate-table-4col span { text-align: left; font-weight: 600; color: var(--text-main); }
    .rate-table-4col:not(.rate-table-head) span:first-child { font-weight: 800; color: var(--brand-navy); }

    /* Footer */
    footer {
      background: var(--bg-surface-elevated);
      border-top: 1px solid var(--border-subtle);
      padding: 56px 5% 0;
      margin-top: 90px;
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .footer-top {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 44px;
    }
    .footer-brand { display: flex; gap: 14px; align-items: flex-start; }
    .footer-logo { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; margin-top: 2px; }
    .footer-brand strong { display: block; color: var(--brand-navy); font-size: 0.92rem; line-height: 1.4; margin-bottom: 8px; }
    .footer-brand p { font-size: 0.8rem; line-height: 1.6; margin: 0; }
    .footer-col h4 {
      font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--brand-navy); font-weight: 800; margin-bottom: 14px;
    }
    .footer-col { display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { font-size: 0.85rem; color: var(--text-muted); }
    .footer-col a:hover { color: var(--flag-airforce-blue); }

    .footer-branches {
      max-width: 1200px; margin: 0 auto; padding: 28px 0 40px;
      border-top: 1px solid var(--border-subtle);
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    }
    .footer-branch {
      display: flex; flex-direction: column; gap: 5px; font-size: 0.82rem;
      background: var(--bg-surface); border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md); padding: 18px 20px;
    }
    .footer-branch-icon { font-size: 1.1rem; margin-bottom: 2px; }
    .footer-branch strong { color: var(--brand-navy); font-size: 0.9rem; }
    .footer-branch-phones { color: var(--flag-airforce-blue); font-weight: 600; }

    .footer-bottom-bar {
      max-width: 1200px; margin: 0 auto; padding: 20px 0;
      border-top: 1px solid var(--border-subtle);
      font-size: 0.78rem; text-align: center;
    }

    @media (max-width: 900px) {
      .footer-top { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 640px) {
      .footer-top { grid-template-columns: 1fr; }
      .footer-branches { grid-template-columns: 1fr; }
    }

    /* Responsive Media Queries */
    @media (max-width: 900px) {
      .hero-grid, .villa-spotlight { grid-template-columns: 1fr; }
      .hero-title { font-size: 2.2rem; }
      .nav-links { display: none; }
    }

    @media (max-width: 768px) {
      .main-header {
        border-radius: 16px;
        padding: 10px 16px;
        gap: 8px;
      }
      .brand-title span { display: none; }
      .brand-title h1 { font-size: 0.82rem; }
      .brand-logo .logo-badge { width: 34px; height: 34px; }
      .lang-switcher { font-size: 0.7rem; }
      .main-header .btn-primary { padding: 8px 14px !important; font-size: 0.76rem; white-space: nowrap; }
      .rate-card {
        padding: 20px;
      }
    }

    @media (max-width: 420px) {
      .main-header [data-key="btn_portal"] { display: none; }
    }
  
/* Loan detail accordion */
.loan-detail-list { max-width: 760px; margin: 0 auto; }
.loan-detail-item { border-bottom: 1px solid var(--border-subtle); }
.loan-detail-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 4px; cursor: pointer; font-weight: 700; color: var(--brand-navy);
}
.loan-detail-toggle { font-size: 1.2rem; color: var(--flag-airforce-blue); transition: transform 0.2s ease; }
.loan-detail-item.open .loan-detail-toggle { transform: rotate(45deg); }
.loan-detail-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 4px; }
.loan-detail-item.open .loan-detail-a { max-height: 800px; padding-bottom: 20px; }

/* Homepage pop-up */
.popup-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(11, 25, 44, 0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
  padding: 20px;
}
.popup-overlay.show { opacity: 1; pointer-events: all; }
.popup-box {
  background: var(--bg-surface); border-radius: var(--radius-lg);
  max-width: 440px; width: 100%; position: relative;
  box-shadow: var(--shadow-elevated);
  transform: translateY(12px); transition: transform 0.25s ease;
  overflow: hidden;
}
.popup-overlay.show .popup-box { transform: translateY(0); }
.popup-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(255,255,255,0.9); border: none; border-radius: 50%;
  width: 30px; height: 30px; cursor: pointer; font-size: 0.9rem; color: var(--brand-navy);
}
.popup-image { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center 30%; display: block; }
.popup-body { padding: 26px; }
.popup-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--brand-navy); margin-bottom: 10px; }
.popup-body p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }

/* Real photo slides: suppress placeholder gradient/noise, keep only the legibility scrim */
.hero-photo.has-real-photo::before,
.hero-photo.has-real-photo::after { display: none; }

/* Board Members */
.board-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; margin-bottom: 32px;
}
.board-grid-leadership { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); max-width: 960px; }
.board-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 24px 16px; text-align: center;
  box-shadow: var(--shadow-subtle); transition: all 0.2s ease;
}
.board-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-elevated); }
.board-photo {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 14px; display: block; border: 3px solid var(--bg-surface-elevated);
  box-shadow: var(--shadow-subtle);
}
.board-photo-lg { width: 128px; height: 128px; }
.board-photo-fallback {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand-navy), var(--flag-airforce-blue));
  color: #fff; font-weight: 800; font-size: 1.6rem; letter-spacing: 0.02em;
}
.board-card h3 { font-size: 1rem; color: var(--brand-navy); margin-bottom: 6px; }
.board-role {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}
.board-role-president { background: #fef3c7; color: #92400e; }
.board-role-vice_president { background: #fce7d6; color: #9a3412; }
.board-role-secretary { background: #dbeafe; color: #1e40af; }
.board-role-ceo { background: #ede9fe; color: #5b21b6; }
.board-role-director { background: #e5e7eb; color: #374151; }
.board-phone { margin-top: 8px; font-size: 0.8rem; color: var(--flag-airforce-blue); font-weight: 600; }

/* Co-op Steel brand grid */
.brand-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.brand-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 20px;
  display: flex; align-items: center; justify-content: center;
  height: 110px; box-shadow: var(--shadow-subtle);
}
.brand-card img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Villa page — site plan and gallery */
.villa-site-plan {
  max-width: 1000px; margin: 0 auto; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-elevated);
}
.villa-site-plan img { width: 100%; display: block; }

.villa-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .villa-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .villa-gallery { grid-template-columns: 1fr; } }
.villa-gallery-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-subtle);
  transition: transform 0.2s ease;
}
.villa-gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-elevated); }
.villa-gallery-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.villa-gallery-label {
  padding: 14px 16px; display: flex; justify-content: space-between; align-items: baseline;
}
.villa-gallery-label strong { color: var(--brand-navy); font-size: 0.95rem; }
.villa-gallery-label span { font-size: 0.82rem; color: var(--text-muted); }
