    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream: #F6F0E5;
      --parchment: #EDE3CF;
      --amber: #93591C;
      --amber-lt: #E2A84E;
      --brown: #6B4928;
      --dark: #1E1109;
      --ink: #3A250E;
      --muted: #8A6A4A;
      --warm-white: #FBF7F0;
      --green: #3A7A4A;
      --purple: #7B4FA6;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--ink);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    body::after {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.032'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999;
    }

    nav {
      position: fixed; top: 0; left: 0; right: 0;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.1rem 3.5rem;
      background: rgba(246,240,229,.93);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(147,89,28,.13);
      z-index: 500;
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem; font-weight: 600;
      color: var(--brown); letter-spacing: .03em; text-decoration: none;
    }
    .nav-logo span { color: var(--amber); }
    .nav-right {
      display: flex; align-items: center; gap: 1.5rem;
    }
    .nav-links {
      display: flex; align-items: center; gap: 1.75rem;
    }
    .nav-link {
      font-size: .76rem; font-weight: 400;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--muted); text-decoration: none; transition: color .2s;
    }
    .nav-link:hover { color: var(--brown); }
    .nav-link.active { color: var(--brown); font-weight: 500; }

    .lang-toggle {
      display: flex;
      background: rgba(147,89,28,.1);
      border: 1px solid rgba(147,89,28,.22);
      border-radius: 3px;
      overflow: hidden;
    }
    .lang-btn {
      padding: .35rem .75rem;
      border: none;
      cursor: pointer;
      font-family: 'Jost', sans-serif;
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .1em;
      background: transparent;
      color: var(--muted);
      transition: all .15s;
    }
    .lang-btn.active { background: var(--amber); color: white; }
    .lang-btn:not(.active):hover { background: rgba(147,89,28,.15); color: var(--brown); }

    .nav-signup-pill {
      display: inline-block;
      background: #93591C;
      color: #F6F0E5;
      padding: 6px 16px;
      border-radius: 999px;
      font-family: 'Jost', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: normal;
      text-transform: none;
      transition: background .2s;
    }
    .nav-signup-pill:hover {
      background: #E2A84E;
      color: #F6F0E5;
    }
    .nav-signup-pill.hidden { display: none !important; }

    .nav-profile-wrap {
      position: relative;
    }
    .nav-profile-wrap.hidden { display: none !important; }
    .nav-profile-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1.5px solid rgba(147,89,28,.45);
      padding: 0;
      cursor: pointer;
      overflow: hidden;
      background: var(--parchment);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: border-color .2s, box-shadow .2s;
    }
    .nav-profile-btn:hover,
    .nav-profile-btn[aria-expanded="true"] {
      border-color: var(--amber);
      box-shadow: 0 0 0 2px rgba(147,89,28,.15);
    }
    .nav-profile-btn img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .nav-profile-initials {
      font-family: 'Jost', sans-serif;
      font-size: .72rem;
      font-weight: 600;
      color: var(--amber);
      line-height: 1;
    }
    .nav-profile-dropdown {
      position: absolute;
      top: calc(100% + .5rem);
      right: 0;
      min-width: 220px;
      background: var(--warm-white);
      border: 1.5px solid rgba(147,89,28,.28);
      border-radius: 2px;
      box-shadow: 0 12px 36px rgba(30,17,9,.12);
      padding: .85rem .95rem;
      z-index: 600;
    }
    .nav-profile-dropdown.hidden { display: none !important; }
    .nav-profile-dropdown__name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--brown);
      line-height: 1.25;
      margin-bottom: .15rem;
    }
    .nav-profile-dropdown__parish {
      font-size: .78rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.4;
      margin-bottom: .55rem;
    }
    .nav-profile-verified {
      display: inline-block;
      font-size: .62rem;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--green);
      background: rgba(58,122,74,.12);
      padding: .2rem .45rem;
      border-radius: 2px;
      margin-bottom: .55rem;
    }
    .nav-profile-verified.hidden { display: none !important; }
    .nav-profile-dropdown a {
      display: block;
      font-size: .76rem;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      padding: .45rem 0;
      border-top: 1px solid rgba(147,89,28,.15);
      transition: color .15s;
    }
    .nav-profile-dropdown a:first-of-type { border-top: none; padding-top: 0; }
    .nav-profile-dropdown a:hover { color: var(--amber); }

    main {
      flex: 1;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 5.5rem 2rem 3.5rem;
      position: relative;
      z-index: 1;
    }

    .library-hero {
      text-align: center;
      margin-bottom: 1.75rem;
    }
    .library-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.65rem, 4vw, 2.35rem);
      font-weight: 400;
      color: var(--dark);
      line-height: 1.15;
    }
    .library-hero p {
      margin-top: .55rem;
      font-size: .95rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.65;
    }

    .sticky-toolbar {
      position: sticky;
      top: 4.75rem;
      z-index: 400;
      background: rgba(246,240,229,.92);
      backdrop-filter: blur(10px);
      padding-bottom: .75rem;
      margin-bottom: .25rem;
      margin-left: -2rem;
      margin-right: -2rem;
      padding-left: 2rem;
      padding-right: 2rem;
      border-bottom: 1px solid transparent;
    }
    .library-toolbar {
      margin-bottom: 0;
    }
    .library-search {
      width: 100%;
      padding: .95rem 1.15rem;
      border: 1.5px solid rgba(147,89,28,.35);
      border-radius: 2px;
      background: rgba(255,255,255,.85);
      font-family: 'Jost', sans-serif;
      font-size: .95rem;
      color: var(--ink);
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .library-search:focus {
      border-color: var(--amber);
      box-shadow: 0 0 0 3px rgba(147,89,28,.1);
    }
    .library-search::placeholder { color: var(--muted); opacity: .75; }

    .filters-mobile-btn {
      display: none;
      margin-top: .75rem;
      width: 100%;
      justify-content: center;
      align-items: center;
      gap: .4rem;
      padding: .65rem 1rem;
      background: transparent;
      border: 1.5px solid var(--amber);
      color: var(--amber);
      font-family: 'Jost', sans-serif;
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .06em;
      border-radius: 2px;
      cursor: pointer;
      transition: background .2s, color .2s;
    }
    .filters-mobile-btn:hover {
      background: rgba(147,89,28,.1);
    }

    .hf-banner-bleed {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      margin-bottom: 2rem;
    }
    .hf-banner-strip {
      background: #EDE3CF;
      border-top: 0.5px solid #93591C;
      border-bottom: 0.5px solid #93591C;
      padding: 14px 24px;
    }
    .hf-banner-strip.hidden { display: none !important; }
    .hf-banner-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 1rem 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .hf-banner-col--left {
      width: 200px;
      flex-shrink: 0;
    }
    .hf-banner-label {
      font-family: 'Jost', sans-serif;
      font-size: .72rem;
      font-weight: 600;
      color: var(--brown);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: .55rem;
      line-height: 1.3;
    }
    .hf-banner-nav {
      display: flex;
      align-items: center;
      gap: .45rem;
      flex-wrap: wrap;
    }
    .hf-banner-nav button {
      border: 1px solid rgba(147,89,28,.45);
      background: rgba(255,255,255,.5);
      color: var(--brown);
      width: 28px;
      height: 28px;
      border-radius: 2px;
      cursor: pointer;
      font-size: .72rem;
      line-height: 1;
      padding: 0;
      transition: background .15s, border-color .15s;
    }
    .hf-banner-nav button:hover:not(:disabled) {
      background: rgba(147,89,28,.15);
      border-color: var(--amber);
    }
    .hf-banner-nav button:disabled {
      opacity: .45;
      cursor: not-allowed;
    }
    .hf-banner-counter {
      font-family: 'Jost', sans-serif;
      font-size: .78rem;
      color: var(--muted);
      min-width: 3.2rem;
      text-align: center;
    }
    .hf-banner-col--center {
      flex: 1;
      min-width: 180px;
    }
    .hf-banner-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      font-style: italic;
      font-weight: 400;
      color: #1E1109;
      line-height: 1.35;
      margin-bottom: .35rem;
    }
    .hf-banner-desc {
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      font-weight: 300;
      color: #3A250E;
      line-height: 1.4;
      margin-bottom: .35rem;
    }
    .hf-banner-meta {
      font-family: 'Jost', sans-serif;
      font-size: 10px;
      font-weight: 300;
      color: #8A6A4A;
      margin-bottom: .35rem;
      line-height: 1.35;
    }
    .hf-banner-listen {
      display: inline-block;
      font-family: 'Jost', sans-serif;
      font-size: .82rem;
      font-weight: 500;
      color: #93591C;
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }
    .hf-banner-listen:hover {
      color: var(--brown);
      text-decoration: underline;
    }
    .hf-banner-col--right {
      flex: 0 0 auto;
      align-self: center;
    }
    .hf-banner-viewall {
      display: inline-block;
      border: 1px solid #93591C;
      background: #EDE3CF;
      color: #6B4928;
      padding: 8px 16px;
      border-radius: 6px;
      font-family: 'Jost', sans-serif;
      font-size: .78rem;
      font-weight: 500;
      text-decoration: none;
      transition: background .2s, color .2s;
      white-space: nowrap;
    }
    .hf-banner-viewall:hover {
      background: #93591C;
      color: #F6F0E5;
    }

    .drawer-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(30,17,9,.45);
      z-index: 600;
    }
    .drawer-backdrop.visible { display: block; }

    .library-layout {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
    }

    .filter-sidebar {
      width: 260px;
      flex-shrink: 0;
      background: rgba(255,255,255,.72);
      border: 1.5px solid rgba(147,89,28,.22);
      border-radius: 2px;
      padding: 1.25rem 1.1rem;
      position: sticky;
      top: 5.25rem;
      max-height: calc(100vh - 6rem);
      overflow-y: auto;
    }
    .filter-sidebar__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }
    .filter-sidebar__title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      color: var(--dark);
    }
    .drawer-close {
      display: none;
      border: none;
      background: transparent;
      font-size: 1.35rem;
      line-height: 1;
      cursor: pointer;
      color: var(--muted);
      padding: .2rem;
    }
    .drawer-close:hover { color: var(--brown); }

    .filter-group {
      margin-bottom: 1.1rem;
    }
    .filter-group label,
    .filter-group .filter-label {
      display: block;
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--brown);
      margin-bottom: .4rem;
    }
    .filter-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: .35rem;
    }
    .filter-pill-row .pill { font-size: .72rem; padding: .32rem .65rem; }

    .pill {
      border: 1px solid var(--amber);
      border-radius: 999px;
      padding: .32rem .65rem;
      font-family: 'Jost', sans-serif;
      font-size: .72rem;
      font-weight: 500;
      cursor: pointer;
      transition: background .2s, color .2s, border-color .2s;
      background: var(--parchment);
      color: var(--brown);
    }
    .pill.active {
      background: var(--amber);
      color: white;
      border-color: var(--amber);
    }

    .filter-check {
      display: flex;
      align-items: center;
      gap: .45rem;
      margin-bottom: .35rem;
      font-size: .82rem;
      color: var(--ink);
      cursor: pointer;
    }
    .filter-check input { accent-color: var(--amber); width: 15px; height: 15px; }

    .filter-input {
      width: 100%;
      padding: .55rem .65rem;
      border: 1px solid rgba(147,89,28,.28);
      border-radius: 2px;
      background: rgba(255,255,255,.9);
      font-family: 'Jost', sans-serif;
      font-size: .84rem;
      color: var(--ink);
    }
    .filter-input:focus {
      outline: none;
      border-color: var(--amber);
    }

    .topic-dropdown {
      position: relative;
      width: 100%;
    }
    .topic-dropdown__btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .5rem;
      padding: .55rem .65rem;
      border: 1px solid rgba(147,89,28,.35);
      border-radius: 2px;
      background: var(--parchment);
      font-family: 'Jost', sans-serif;
      font-size: .84rem;
      color: var(--ink);
      cursor: pointer;
      text-align: left;
      transition: border-color .2s;
    }
    .topic-dropdown__btn:hover {
      border-color: var(--amber);
    }
    .topic-dropdown__btn.is-open {
      border-color: var(--amber);
    }
    .topic-dropdown__chevron {
      font-size: .65rem;
      color: var(--muted);
      flex-shrink: 0;
    }
    .topic-dropdown__panel {
      display: none;
      position: fixed;
      z-index: 800;
      max-height: min(320px, 50vh);
      overflow: hidden;
      flex-direction: column;
      border: 1px solid rgba(147,89,28,.35);
      border-radius: 2px;
      background: rgba(255,255,255,.95);
      box-shadow: 0 12px 36px rgba(30,17,9,.15);
    }
    .topic-dropdown__panel.is-open {
      display: flex;
    }
    .topic-dropdown-search {
      width: calc(100% - .9rem);
      margin: .45rem;
      padding: .45rem .55rem;
      border: 1px solid rgba(147,89,28,.35);
      border-radius: 2px;
      background: var(--parchment);
      font-family: 'Jost', sans-serif;
      font-size: .78rem;
      color: var(--ink);
      flex-shrink: 0;
      align-self: stretch;
      box-sizing: border-box;
    }
    .topic-dropdown-search:focus {
      outline: none;
      box-shadow: inset 0 0 0 1px var(--amber);
    }
    .topic-dropdown-search::placeholder {
      color: var(--muted);
      opacity: .8;
    }
    .topic-dropdown-list {
      overflow-y: auto;
      flex: 1;
      min-height: 0;
    }
    .topic-dropdown-row {
      display: flex;
      align-items: center;
      gap: .55rem;
      min-height: 36px;
      padding: 0 .55rem;
      border-bottom: 1px solid var(--parchment);
      cursor: pointer;
      font-size: .82rem;
      color: var(--ink);
    }
    .topic-dropdown-row:last-child {
      border-bottom: none;
    }
    .topic-dropdown-row input[type="checkbox"] {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
      accent-color: var(--amber);
      cursor: pointer;
    }
    .topic-dropdown-row label {
      flex: 1;
      cursor: pointer;
      line-height: 1.25;
      padding: .35rem 0;
    }

    .filter-date-row {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
    }
    .filter-date-row .filter-input { flex: 1; min-width: 0; }

    .date-toggle-link {
      display: inline-block;
      margin-top: .35rem;
      font-size: .74rem;
      color: var(--amber);
      cursor: pointer;
      text-decoration: none;
      font-weight: 500;
      background: none;
      border: none;
      font-family: 'Jost', sans-serif;
      padding: 0;
    }
    .date-toggle-link:hover { text-decoration: underline; }

    .clear-filters {
      display: inline-block;
      margin-top: .25rem;
      font-size: .8rem;
      color: var(--amber);
      text-decoration: none;
      cursor: pointer;
      font-weight: 500;
    }
    .clear-filters:hover { text-decoration: underline; }

    .library-main-col {
      flex: 1;
      min-width: 0;
    }
    .grid-section-head {
      display: flex;
      align-items: baseline;
      gap: .55rem;
      margin-bottom: .8rem;
    }
    .grid-section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      color: var(--dark);
      line-height: 1.2;
    }
    .grid-section-count {
      font-size: .74rem;
      color: #8A6A4A;
      line-height: 1.2;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    .homily-card {
      position: relative;
      background: #F6F0E5;
      border: 0.5px solid #93591C;
      border-radius: 10px;
      padding: 1rem;
      box-shadow: 0 8px 28px rgba(30,17,9,.08);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      display: block;
      transition: transform .2s, border-color .2s, box-shadow .2s;
    }
    .homily-card:hover {
      transform: translateY(-2px);
      border-color: rgba(107,73,40,.85);
      box-shadow: 0 12px 36px rgba(30,17,9,.12);
    }

    .season-pill {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: .28rem .5rem;
      border-radius: 999px;
      line-height: 1;
    }
    .season-pill.season-advent { background: #7B4FA6; color: white; }
    .season-pill.season-christmas { background: #E2A84E; color: #3A250E; }
    .season-pill.season-lent { background: #7B4FA6; color: white; }
    .season-pill.season-holy-week { background: #8B1A1A; color: white; }
    .season-pill.season-easter { background: #93591C; color: white; }
    .season-pill.season-ordinary { background: #3A7A4A; color: white; }

    .homily-card__title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 600;
      color: #3A250E;
      line-height: 1.25;
      margin-top: 18px;
      padding-right: 4.5rem;
    }
    .homily-card__priest {
      font-size: 13px;
      color: #6B4928;
      margin-top: .45rem;
      line-height: 1.4;
    }

    .verified-badge {
      display: inline-flex;
      align-items: center;
      background: #93591C;
      color: #F6F0E5;
      font-family: 'Jost', sans-serif;
      font-size: 0.65rem;
      font-weight: 600;
      padding: 1px 5px;
      border-radius: 999px;
      margin-left: 6px;
      line-height: 1;
      vertical-align: middle;
      position: relative;
      top: -1px;
    }
    .homily-card__parish {
      font-size: 13px;
      color: #8A6A4A;
      margin-top: .15rem;
    }
    .homily-card__meta {
      font-size: 12px;
      color: #8A6A4A;
      margin-top: .4rem;
      line-height: 1.45;
    }

    .homily-card__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: .85rem;
      padding-top: .65rem;
      border-top: 1px solid rgba(147,89,28,.15);
    }
    .lang-badge {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .08em;
      padding: .22rem .5rem;
      border-radius: 999px;
      background: var(--parchment);
      color: var(--brown);
    }
    .listen-cta {
      font-size: .78rem;
      font-weight: 500;
      color: var(--amber);
    }

    .pagination-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      margin-top: 1.75rem;
    }
    .pagination-nav.hidden { display: none !important; }
    .pagination-btn {
      padding: .72rem 1.6rem;
      background: var(--amber);
      color: var(--warm-white);
      border: none;
      border-radius: 2px;
      font-family: 'Jost', sans-serif;
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }
    .pagination-btn:hover:not(:disabled) {
      background: var(--brown);
      transform: translateY(-1px);
    }
    .pagination-btn:disabled {
      opacity: .55;
      cursor: not-allowed;
      transform: none;
    }
    .pagination-btn.hidden { display: none !important; }
    .grid-end-note {
      margin-top: .9rem;
      text-align: center;
      font-size: .74rem;
      color: #8A6A4A;
      line-height: 1.4;
    }
    .grid-end-note.hidden { display: none !important; }
    .no-results {
      text-align: center;
      padding: 2.5rem 1rem;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.1rem;
      color: var(--muted);
    }
    .no-results.hidden { display: none !important; }

    .loading-msg {
      text-align: center;
      padding: 2rem;
      color: var(--muted);
      font-style: italic;
    }
    .loading-msg.hidden { display: none !important; }

    .fetch-error-msg {
      text-align: center;
      padding: 2.5rem 1rem;
      font-family: 'Jost', sans-serif;
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.6;
      max-width: 420px;
      margin: 0 auto;
    }
    .fetch-error-msg.hidden { display: none !important; }

    .hidden { display: none !important; }

    footer {
      border-top: 1px solid rgba(147,89,28,.13);
      text-align: center;
      color: var(--muted);
      font-size: .82rem;
      padding: 1.2rem;
      position: relative;
      z-index: 1;
    }

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

    @media (max-width: 900px) {
      nav { padding: 1rem 1.25rem; }
      .nav-links { gap: 1rem; }
      main { padding: 5rem 1.25rem 2.5rem; }
      .sticky-toolbar {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
      }
      .filters-mobile-btn { display: inline-flex; }
      .library-layout { display: block; }
      .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: min(320px, 90vw);
        height: 100%;
        max-height: none;
        z-index: 700;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform .28s ease;
        box-shadow: 4px 0 24px rgba(30,17,9,.12);
      }
      .filter-sidebar.is-open {
        transform: translateX(0);
      }
      .drawer-close { display: block; }
      .card-grid { grid-template-columns: 1fr; }
      .hf-banner-desc { display: none !important; }
      .hf-banner-inner {
        flex-direction: column;
        align-items: stretch;
      }
      .hf-banner-col--left {
        width: 100%;
      }
      .hf-banner-col--center {
        width: 100%;
        order: 2;
      }
      .hf-banner-col--right {
        width: 100%;
        order: 3;
        align-self: stretch;
      }
      .hf-banner-viewall {
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
      }
    }

.nav-dashboard-wrap { position: relative; }
.nav-dashboard-wrap.hidden { display: none !important; }
.nav-dashboard-btn { font-size: .76rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: none; border: none; cursor: pointer; font-family: 'Jost', sans-serif; padding: 0; display: inline-flex; align-items: center; gap: .3rem; transition: color .2s; }
.nav-dashboard-btn:hover { color: var(--brown); }
.nav-dashboard-btn.active { color: var(--brown); font-weight: 500; }
.nav-dashboard-chevron { font-size: .6rem; display: inline-block; transition: transform .15s; }
.nav-dashboard-btn[aria-expanded="true"] .nav-dashboard-chevron { transform: rotate(180deg); }
.nav-dashboard-dropdown { position: absolute; top: calc(100% + .65rem); left: 0; min-width: 160px; background: var(--warm-white); border: 1.5px solid rgba(147,89,28,.28); border-radius: 2px; box-shadow: 0 12px 36px rgba(30,17,9,.12); z-index: 600; padding: .35rem 0; }
.nav-dashboard-dropdown.hidden { display: none !important; }
.nav-dashboard-dropdown a { display: block; padding: .5rem .85rem; font-size: .76rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .15s, background .15s; }
.nav-dashboard-dropdown a:hover { color: var(--amber); background: rgba(147,89,28,.06); }
.nav-dashboard-dropdown a.active-item { color: var(--brown); font-weight: 600; }
  