/* ---------- Module guide (shared layout for guide pages) ---------- */
.guide {
    max-width: 860px;
    margin: 0 auto;
    padding: 56px 32px 80px;
}

.guide__hero {
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 32px;
    margin-bottom: 48px;
}

/* Standalone hero (e.g. module preview pages) — mirrors .guide width. */
.guide__hero--page {
    max-width: 860px;
    margin: 0 auto 48px;
    padding: 56px 32px 0;
}

.guide__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #1B4F72;
    margin: 0 0 6px;
}

.guide__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #E8610A;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.guide__overview {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #5B7083;
    margin: 0;
}

.guide__section {
    margin-bottom: 48px;
}

.guide__heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1B4F72;
    margin: 0 0 12px;
}

.guide__subheading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0B1F33;
    margin: 28px 0 10px;
}

.guide__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #3D3D3D;
    margin: 0 0 14px;
}

.guide__text strong,
.guide__list strong {
    color: #0B1F33;
}

.guide__list {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #3D3D3D;
    margin: 0 0 18px;
    padding-left: 20px;
}

.guide__list li {
    margin-bottom: 6px;
}

.guide__quote {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1B4F72;
    background: #EAF1F8;
    border-left: 3px solid #1B4F72;
    padding: 10px 16px;
    margin: 0 0 18px;
}

.guide__figure {
    margin: 18px 0 24px;
}

.guide__figure img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 420px;
    margin: 0 auto;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    display: block;
    cursor: zoom-in;
}

.guide__lightbox {
    border: none;
    padding: 0;
    background: transparent;
    max-width: 92vw;
    max-height: 92vh;
    margin: auto;
}

.guide__lightbox img {
    max-width: 92vw;
    max-height: 92vh;
    width: auto;
    height: auto;
    border-radius: 6px;
    display: block;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.guide__lightbox::backdrop {
    background: rgba(0, 0, 0, 0.75);
}

.guide__caption {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6B7280;
    margin-top: 8px;
    text-align: center;
}

.guide__note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #6B4F00;
    background: #FFF8E1;
    border: 1px solid #F3D9A4;
    border-left: 4px solid #E8A33D;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 20px 0;
}

.guide__table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

.guide__table th,
.guide__table td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
}

.guide__table thead th {
    background: #F3F6FA;
    color: #1B4F72;
    font-weight: 600;
}

.guide__table td {
    color: #3D3D3D;
}

@media (max-width: 599px) {
    .guide {
        padding: 32px 20px 56px;
    }

    .guide__title {
        font-size: 34px;
    }
}
