/* EscortHunters — genel site kabuğu (header, footer, çekmece menü, ana sayfa kahraman) */
:root {
    --pub-bg: #0f0e0d;
    --pub-bg-soft: #1c1917;
    --pub-gold: #d4a853;
    --pub-gold-dim: #a67c2a;
    --pub-cream: #faf7f2;
    --pub-muted: #a8a29e;
    --pub-line: rgba(255, 255, 255, 0.08);
    --pub-glass: rgba(28, 25, 23, 0.72);
    --pub-rose: #e11d48;
    --pub-violet: #7c3aed;
}

/* ——— Sayfa iskeleti: footer her zaman altta ——— */
html {
    height: 100%;
    /* Kaydırma çubuğu bazen görünüp bazen kaybolduğunda içerik sağa-sola oynamasın */
    scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
    html {
        overflow-y: scroll;
    }
}

body {
    margin: 0;
    min-height: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    font-family: 'Plus Jakarta Sans', 'Montserrat', system-ui, sans-serif;
}

.site-frame {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
}

.site-main {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    padding-bottom: 8px;
}

body:not(.page-home) .site-main {
    padding-top: 24px;
    padding-bottom: 48px;
}

/* Çekmece flex düzenine karışmasın */
.public-drawer {
    flex: none;
}

/* ——— Üst bar ——— */
.public-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: linear-gradient(180deg, var(--pub-bg) 0%, #171412 100%);
    border-bottom: 1px solid var(--pub-line);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.public-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    min-height: 64px;
}

.public-brand__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--pub-cream);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.public-brand__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--pub-gold) 0%, var(--pub-gold-dim) 100%);
    color: #1c1917;
    font-size: 1.15rem;
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.35);
}

.public-brand__text {
    background: linear-gradient(135deg, #fff 0%, #e7e5e4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.public-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.public-nav a {
    display: block;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--pub-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s, background 0.2s;
}

.public-nav a:hover {
    color: var(--pub-cream);
    background: rgba(255, 255, 255, 0.06);
}

.public-header__aside {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.public-header__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ——— Dil seçici (masaüstü) ——— */
.public-lang {
    position: relative;
    flex-shrink: 0;
}

.public-lang__trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--pub-line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--pub-cream);
    font: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.public-lang__trigger:hover,
.public-lang.is-open .public-lang__trigger {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 168, 83, 0.35);
}

.public-lang__flag {
    font-size: 1.15rem;
    line-height: 1;
}

.public-lang__arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--pub-muted);
    margin-left: 2px;
    transition: transform 0.2s;
}

.public-lang.is-open .public-lang__arrow {
    transform: rotate(180deg);
}

.public-lang__list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: linear-gradient(180deg, #1c1917 0%, #141210 100%);
    border: 1px solid var(--pub-line);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    z-index: 2500;
    display: none;
}

.public-lang.is-open .public-lang__list {
    display: block;
}

.public-lang__option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--pub-muted);
    font-weight: 600;
    font-size: 0.88rem;
    transition: background 0.2s, color 0.2s;
}

.public-lang__option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--pub-cream);
}

.public-lang__option.is-active {
    background: rgba(212, 168, 83, 0.12);
    color: var(--pub-cream);
}

.public-drawer__lang {
    padding: 12px 16px 8px;
    border-top: 1px solid var(--pub-line);
    flex-shrink: 0;
}

.public-drawer__lang-title {
    margin: 0 0 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pub-gold);
    font-weight: 700;
}

.public-drawer__lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.public-drawer__lang-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--pub-cream);
    font-weight: 600;
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}

.public-drawer__lang-link:hover {
    background: rgba(212, 168, 83, 0.12);
    border-color: rgba(212, 168, 83, 0.25);
}

.public-drawer__lang-link.is-active {
    border-color: rgba(212, 168, 83, 0.45);
    background: rgba(212, 168, 83, 0.15);
}

.public-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    white-space: nowrap;
}

.public-btn--outline {
    background: transparent;
    color: var(--pub-cream);
    border: 1px solid var(--pub-line);
}

.public-btn--outline:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.public-btn--primary {
    background: linear-gradient(135deg, var(--pub-gold) 0%, var(--pub-gold-dim) 100%);
    color: #1c1917;
    box-shadow: 0 4px 18px rgba(212, 168, 83, 0.35);
}

.public-btn--primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    color: #1c1917;
}

.public-btn--small {
    padding: 8px 14px;
    font-size: 0.8rem;
}

.public-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.public-burger span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--pub-cream);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

body.public-drawer-open .public-burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.public-drawer-open .public-burger span:nth-child(2) {
    opacity: 0;
}

body.public-drawer-open .public-burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
    .public-nav,
    .public-header__aside {
        display: none;
    }

    .public-burger {
        display: flex;
    }
}

/* ——— Mobil çekmece ——— */
.public-drawer {
    position: fixed;
    inset: 0;
    z-index: 3000;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.3s;
}

.public-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.public-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.3s;
}

.public-drawer.is-open .public-drawer__backdrop {
    opacity: 1;
}

.public-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, 92vw);
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(180deg, #1c1917 0%, #0c0a09 100%);
    border-left: 1px solid var(--pub-line);
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
}

.public-drawer.is-open .public-drawer__panel {
    transform: translateX(0);
}

.public-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--pub-line);
}

.public-drawer__head .public-brand__text {
    font-size: 1.1rem;
    font-weight: 700;
}

.public-drawer__close {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--pub-cream);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}

.public-drawer__nav {
    flex: 0 0 auto;
    padding: 16px;
}

.public-drawer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.public-drawer__nav a {
    display: block;
    padding: 16px 18px;
    margin-bottom: 6px;
    border-radius: 14px;
    color: var(--pub-cream);
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}

.public-drawer__nav a:hover {
    background: rgba(212, 168, 83, 0.12);
    border-color: rgba(212, 168, 83, 0.25);
}

.public-drawer__actions {
    padding: 16px 22px 24px;
    border-top: 1px solid var(--pub-line);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.public-drawer__actions .public-btn {
    width: 100%;
}

/* ——— Footer ——— */
.public-footer {
    flex-shrink: 0;
    width: 100%;
    margin-top: auto;
    background: var(--pub-bg);
    color: var(--pub-muted);
    border-top: 1px solid var(--pub-line);
}

.public-footer__top {
    padding: 56px 0 40px;
    position: relative;
    overflow: hidden;
}

.public-footer__top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pub-gold-dim), var(--pub-violet), var(--pub-rose));
    opacity: 0.85;
}

.public-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .public-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.public-footer__brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--pub-cream);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.public-footer__lead {
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 340px;
}

.public-footer__title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pub-gold);
    margin: 0 0 18px;
    font-weight: 700;
}

.public-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.public-footer__links li {
    margin-bottom: 10px;
}

.public-footer__links a {
    color: var(--pub-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.public-footer__links a:hover {
    color: var(--pub-gold);
}

.public-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.public-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--pub-cream);
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.public-footer__social a:hover {
    background: rgba(212, 168, 83, 0.2);
    color: var(--pub-gold);
    transform: translateY(-2px);
}

.public-footer__bottom {
    padding: 20px 0 28px;
    border-top: 1px solid var(--pub-line);
    text-align: center;
    font-size: 0.85rem;
    color: #78716c;
}

/* Konum sayfası breadcrumb (görünür, şema ile uyumlu) */
.public-breadcrumb-wrap {
    padding: 12px 0 8px;
}

.public-breadcrumb {
    font-size: 0.85rem;
    color: #78716c;
}

.public-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.public-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.public-breadcrumb__item:not(:last-child)::after {
    content: '/';
    color: #a8a29e;
    font-weight: 500;
    pointer-events: none;
}

.public-breadcrumb__link {
    color: #57534e;
    text-decoration: none;
    font-weight: 500;
}

.public-breadcrumb__link:hover {
    color: var(--pub-gold, #b8932a);
    text-decoration: underline;
}

.public-breadcrumb__item--current {
    color: #1c1917;
    font-weight: 600;
    max-width: 100%;
}

/* İstanbul sayfaları: ek tanıtım metni (SEO + kullanıcı) */
.home-seo-copy {
    padding: 0 0 24px;
}

.home-seo-copy__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 700;
    line-height: 1.3;
    color: #1c1917;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    max-width: 72ch;
}

.home-seo-copy__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #57534e;
    max-width: 72ch;
}

/* Ana sayfa — ilan listesi sayfalama */
.home-listing-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
    margin: 28px 0 8px;
    padding: 16px 18px;
    background: #fafafa;
    border: 1px solid rgba(120, 113, 108, 0.14);
    border-radius: 14px;
}
.home-listing-pagination__info {
    font-size: 0.92rem;
    font-weight: 700;
    color: #44403c;
    min-width: 10ch;
    text-align: center;
}
.home-listing-pagination__link {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: #7c3aed;
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.35);
    transition: background 0.15s ease, color 0.15s ease;
}
.home-listing-pagination__link:hover {
    background: rgba(124, 58, 237, 0.08);
    color: #5b21b6;
}
.home-listing-pagination__disabled {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #a8a29e;
    background: #f5f5f4;
    border: 1px dashed rgba(120, 113, 108, 0.25);
    cursor: not-allowed;
}

/* Ana sayfa liste alanı — açık zemin */
body.page-home .home-page {
    padding-top: 32px;
    padding-bottom: 48px;
}

body.page-home {
    background: #ffffff;
}

/* İlan profil sayfaları — ana sayfa gibi düz beyaz zemin (global gri gradient’i iptal) */
body.page-profile {
    background: #ffffff;
}

/* Sahte ilan bildirimi (üye) */
.profile-detail-section--report {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(28, 25, 23, 0.08);
}

.profile-fake-report__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 63, 94, 0.35);
    background: #fff1f2;
    color: #9f1239;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
}

.profile-fake-report__toggle:hover {
    background: #ffe4e6;
    border-color: rgba(225, 29, 72, 0.45);
}

.profile-fake-report__panel {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid #e7e5e4;
    background: #fafaf9;
}

.profile-fake-report__label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #44403c;
}

.profile-fake-report__textarea {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem 0.85rem;
    border: 1px solid #d6d3d1;
    border-radius: 10px;
    font: inherit;
    font-size: 0.92rem;
    resize: vertical;
    box-sizing: border-box;
}

.profile-fake-report__actions {
    margin-top: 0.75rem;
}

.profile-fake-report__submit {
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #be123c 0%, #9f1239 100%);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.profile-fake-report__hint {
    margin: 0;
    font-size: 0.92rem;
    color: #57534e;
    line-height: 1.55;
}

.profile-fake-report__hint a {
    color: #be185d;
    font-weight: 600;
}

.profile-fake-report__flash {
    margin: 0 0 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

.profile-fake-report__flash--ok {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.profile-fake-report__flash--err {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/*
 * Eski slug.php dosyalarında body_class olmasa bile: .profile-shell ile profil sayfası.
 * Gömülü stillerdeki gri kutuları tek tip beyaza çeker (özgüllük yüksek).
 */
body:has(.profile-shell) {
    background: #ffffff;
}

body:has(.profile-shell) .profile-stat {
    background: #ffffff;
    border-color: #e5e5e5;
}

body:has(.profile-shell) .profile-seo-intro {
    background: #ffffff;
    border-color: #e8e4ec;
}

body:has(.profile-shell) .profile-hero-photo {
    background: #ffffff;
}

body:has(.profile-shell) .thumb-item {
    background: #ffffff;
}

body:has(.profile-shell) .profile-photo-verify {
    background: #ffffff;
    border-color: #b2dfbc;
}

/* ——— Footer üstü SEO (konum / rehber metinleri) ——— */
.home-footer-seo {
    flex-shrink: 0;
    width: 100%;
    background: #f0ebe5;
    border-top: 1px solid rgba(28, 25, 23, 0.08);
}

.home-footer-seo--directory {
    background: #ebe4db;
    border-top-color: rgba(28, 25, 23, 0.06);
}

.home-footer-seo__inner {
    padding: clamp(28px, 4vw, 44px) 0;
    max-width: 72ch;
}

.home-footer-seo__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.25rem, 2.8vw, 1.55rem);
    font-weight: 700;
    line-height: 1.25;
    color: #1c1917;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.home-footer-seo__text {
    font-size: 0.92rem;
    line-height: 1.72;
    color: #57534e;
}

.home-footer-seo__p {
    margin: 0 0 1rem;
}

.home-footer-seo__p:last-child {
    margin-bottom: 0;
}

/* ——— Escort sözlüğü (glossary) ——— */
/* Düz beyaz: body gradient’i satırların arkasında “gri-beyaz zebra” gibi görünmesin */
body.page-glossary .site-main {
    background: #ffffff;
}

.page-glossary .glossary-page {
    padding: 2.5rem 0 4rem;
    max-width: 52rem;
    color: #1c1917;
    background: #ffffff;
}

.page-glossary .glossary-page__header {
    margin-bottom: 1.75rem;
}

.page-glossary .glossary-page__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.65rem, 4vw, 2rem);
    font-weight: 800;
    color: #1c1917;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.02em;
}

.page-glossary .glossary-page__lead {
    margin: 0;
    color: #44403c;
    line-height: 1.65;
    font-size: 1rem;
}

.page-glossary .glossary-page__toolbar {
    margin-bottom: 2rem;
    padding: 1.1rem 1.2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(28, 25, 23, 0.1);
    box-shadow: none;
}

.page-glossary .glossary-page__search-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #292524;
    margin-bottom: 0.45rem;
}

.page-glossary .glossary-page__search {
    width: 100%;
    max-width: 28rem;
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(28, 25, 23, 0.12);
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    color: #1c1917;
}

.page-glossary .glossary-page__search::placeholder {
    color: #78716c;
}

.page-glossary .glossary-page__search:focus {
    outline: none;
    border-color: rgba(212, 168, 83, 0.55);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.page-glossary .glossary-page__hint {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    color: #57534e;
}

.page-glossary .glossary-page__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
}

.page-glossary .glossary-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(28, 25, 23, 0.08);
    background: #ffffff;
}

.page-glossary .glossary-item:first-child {
    padding-top: 0;
}

.page-glossary .glossary-item__term {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1c1917;
}

.page-glossary .glossary-item__body {
    margin: 0;
    color: #44403c;
    font-size: 0.95rem;
    line-height: 1.65;
}

.page-glossary .glossary-item__body p {
    margin: 0;
}

.page-glossary .glossary-item.is-hidden {
    display: none;
}

.page-glossary .glossary-page__disclaimer {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: #57534e;
    line-height: 1.55;
}

