/* =========================================================
   Business Finder Directories - Edition page CSS (prefix: be-)
   Shared template used by all 5 edition pages.
   Each page sets --edn and --edn-to via body class + inline
   style to drive the colouring throughout.
   ========================================================= */


/* =========================================================
   SECTION 1 - Edition-specific button variants
   Use --edn / --edn-to on any edition page to auto-brand
   ========================================================= */

.be-btn--edn {
    background: var(--deep);
    color: var(--white);
    border-color: var(--deep);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);
}
.be-btn--edn:hover,
.be-btn--edn:focus-visible {
    background: color-mix(in srgb, var(--deep) 92%, white);
    border-color: color-mix(in srgb, var(--deep) 92%, white);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
}
.be-btn--edn-outline {
    background: transparent;
    color: var(--edn, var(--primary));
    border-color: var(--edn, var(--primary));
}
.be-btn--edn-outline:hover,
.be-btn--edn-outline:focus-visible {
    background: var(--edn, var(--primary));
    color: var(--white);
}
.be-btn--white {
    background: var(--white);
    color: var(--deep);
    border-color: var(--white);
}
.be-btn--white:hover,
.be-btn--white:focus-visible {
    background: var(--deep);
    color: var(--white);
    border-color: var(--deep);
    transform: translateY(-1px);
}
.be-btn--outline-white {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.be-btn--outline-white:hover,
.be-btn--outline-white:focus-visible {
    background: var(--white);
    color: var(--deep);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   SECTION 2 - Hero (gold-to-green gradient etc.)
   Angled linear gradient from --edn to --edn-to
   ========================================================= */

.be-hero {
    position: relative;
    background:
        linear-gradient(135deg, var(--edn, var(--primary)) 0%, var(--edn-to, var(--accent)) 100%);
    color: var(--white);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem);
    overflow: hidden;
    isolation: isolate;
}
.be-hero__deco {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.be-hero__deco--1 {
    top: -160px;
    right: -160px;
    width: 480px;
    height: 480px;
    background: rgba(255, 255, 255, 0.10);
}
.be-hero__deco--2 {
    bottom: -120px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.06);
}
.be-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-areas: "col cover";
    column-gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}
.be-hero__col {
    grid-area: col;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.be-hero__meta { display: contents; }
.be-hero__body { display: contents; }
.be-hero__cover { grid-area: cover; align-self: center; }
.be-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color var(--dur-fast) var(--ease), gap var(--dur-fast) var(--ease);
}
.be-hero__back:hover {
    color: var(--white);
    gap: 0.75rem;
}
.be-hero__eyebrow {
    display: block;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 1rem;
}
.be-hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    color: var(--white);
    font-weight: 800;
}
.be-hero__area {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: fit-content;
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    padding: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1;
    margin: 0.25rem 0 0;
}
.be-hero__area i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    color: var(--white);
    font-size: 0.78rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.be-hero__lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 52ch;
    margin: 1.25rem 0 2rem;
}
.be-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* Hero cover - tilted with drop shadow for magazine feel */
.be-hero__cover {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.be-hero__cover img {
    display: block;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 210 / 297;
    object-fit: cover;
    border-radius: 6px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 12px 24px rgba(0, 0, 0, 0.18);
    transform: rotate(-3deg);
    transition: transform var(--dur-slow) var(--ease);
}
.be-hero__cover img:hover {
    transform: rotate(0deg) scale(1.02);
}


/* =========================================================
   SECTION 3 - About this edition
   ========================================================= */

.be-about {
    position: relative;
    background:
        radial-gradient(ellipse at 15% 30%, color-mix(in srgb, var(--edn, var(--primary)) 12%, transparent) 0%, transparent 45%),
        radial-gradient(ellipse at 88% 75%, color-mix(in srgb, var(--edn-to, var(--accent)) 12%, transparent) 0%, transparent 45%),
        linear-gradient(180deg, #FEFCF6 0%, #F9FDF7 100%);
    overflow: hidden;
}
.be-about__deco {
    position: absolute;
    top: -140px;
    right: -140px;
    width: 380px;
    height: 380px;
    background: var(--edn, var(--primary));
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}
.be-about__deco--2 {
    top: auto;
    right: auto;
    bottom: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: var(--edn-to, var(--accent));
    opacity: 0.09;
}

.be-about__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.be-about__head h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin: 0.65rem 0 0;
    letter-spacing: -0.02em;
    display: inline-block;
    line-height: 1.15;
}
.be-about__head h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background: var(--edn, var(--accent));
    margin-top: 1rem;
    border-radius: 2px;
}

/* Facts pill list on left column */
.be-about__facts {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.be-about__facts li {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 4px 14px rgba(27, 38, 53, 0.06);
    border: 1px solid transparent;
    transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
    position: relative;
    overflow: hidden;
}
.be-about__facts li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--edn, var(--primary));
}
.be-about__facts li:hover {
    transform: translateX(4px);
    border-color: var(--edn, var(--primary));
}
.be-about__facts-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--edn, var(--primary));
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 14px color-mix(in srgb, var(--edn, var(--primary)) 30%, transparent);
}
.be-about__facts-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.be-about__facts-body strong {
    font-size: 1rem;
    color: var(--deep);
    font-weight: 700;
    line-height: 1.2;
}
.be-about__facts-body span {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.3;
}

.be-about__body p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 1.15rem;
    font-size: 1.02rem;
}
.be-about__body p strong {
    color: var(--deep);
}
.be-about__body p mark {
    background: color-mix(in srgb, var(--edn, var(--primary)) 22%, transparent);
    color: var(--deep);
    padding: 0.1em 0.3em;
    border-radius: 4px;
    font-weight: 600;
}
.be-about__lead {
    font-size: 1.15rem !important;
    color: var(--deep) !important;
    line-height: 1.65 !important;
    font-weight: 500;
    padding: 1rem 0 1rem 1.5rem;
    border-left: 4px solid var(--edn, var(--accent));
    margin: 0 0 1.5rem !important;
}


/* =========================================================
   SECTION 4 - Read online (PDF embed)
   ========================================================= */

.be-read__head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
}
.be-read__head .eyebrow {
    color: var(--edn, var(--accent));
    margin-bottom: 0.85rem;
    display: block;
}
.be-read__head h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin: 0.5rem 0 0;
    letter-spacing: -0.02em;
    display: inline-block;
}
.be-read__head h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background: var(--edn, var(--accent));
    margin: 1rem auto 0;
    border-radius: 2px;
}
.be-read__lead {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1.25rem;
}

.be-read__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}
.be-read__actions--top {
    margin-bottom: 2rem;
}


/* ---------- Flipbook viewer (PDF.js + StPageFlip) ---------- */

.be-flipbook {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    outline: 0;
}

/* Interaction hint above the viewer */
.be-flipbook__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0 0 1rem;
    text-align: center;
}
.be-flipbook__hint i {
    color: var(--edn, var(--primary));
    font-size: 0.9rem;
}
.be-flipbook__hint-desktop { display: inline; }
.be-flipbook__hint-mobile { display: none; }

@media (hover: none) and (pointer: coarse) {
    .be-flipbook__hint-desktop { display: none; }
    .be-flipbook__hint-mobile { display: inline; }
}

/* Loading state */
.be-flipbook__loading {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
    text-align: center;
    box-shadow: 0 12px 32px rgba(27, 38, 53, 0.10);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.be-flipbook__spinner {
    width: 56px;
    height: 56px;
    border: 4px solid var(--neutral-line);
    border-top-color: var(--edn, var(--primary));
    border-radius: 50%;
    animation: be-flipbook-spin 0.9s linear infinite;
    margin-bottom: 1.25rem;
}
@keyframes be-flipbook-spin {
    to { transform: rotate(360deg); }
}
.be-flipbook__loading-text {
    color: var(--deep);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}
.be-flipbook__loading-progress {
    color: var(--edn, var(--primary));
    font-size: 1.35rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    margin: 0.35rem 0 0.65rem;
}
.be-flipbook__loading small {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 0.35rem;
}
.be-flipbook__error {
    text-align: center;
    color: var(--muted);
}
.be-flipbook__error i {
    color: var(--edn, var(--primary));
    font-size: 2rem;
    margin-bottom: 1rem;
}
.be-flipbook__error p {
    margin: 0.5rem 0;
}
.be-flipbook__error a {
    color: var(--edn, var(--primary));
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Viewer container */
.be-flipbook__viewer {
    display: none;
    filter: drop-shadow(0 20px 40px rgba(27, 38, 53, 0.20));
    margin: 0 auto;
    touch-action: pan-y;  /* let vertical scroll pass through, capture horizontal for page flip */
}
.be-flipbook.is-ready .be-flipbook__viewer {
    display: block;
}

/* StPageFlip injects .stf__parent and .stf__block - style page shadows crisp */
.be-flipbook__viewer .stf__parent {
    margin: 0 auto;
}

/* Mobile vertical-scroll fix.
   The finger lands on the StPageFlip-injected canvas/wrapper, NOT the outer
   .be-flipbook__viewer - and touch-action does not inherit to children. Without
   this, the pan-y on the viewer never reaches the element actually touched, so
   vertical drags get stuck on the book. Putting pan-y on the injected elements
   hands vertical panning back to the browser (native scroll) while horizontal
   still reaches the library to flip the page. */
.be-flipbook__viewer .stf__parent,
.be-flipbook__viewer .stf__wrapper,
.be-flipbook__viewer .stf__block,
.be-flipbook__viewer canvas {
    touch-action: pan-y !important;
}

/* Controls */
.be-flipbook__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.be-flipbook__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    color: var(--edn, var(--primary));
    border: 1.5px solid var(--edn, var(--primary));
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease);
    box-shadow: 0 4px 12px rgba(27, 38, 53, 0.08);
}
.be-flipbook__btn:hover,
.be-flipbook__btn:focus-visible {
    background: var(--edn, var(--primary));
    color: var(--white);
    transform: translateY(-2px);
    outline: 0;
}
.be-flipbook__btn:active {
    transform: translateY(0);
}
.be-flipbook__page {
    color: var(--deep);
    font-size: 0.95rem;
    font-weight: 500;
}
.be-flipbook__page strong {
    color: var(--edn, var(--primary));
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}


/* =========================================================
   SECTION 5 - What's inside icon grid
   ========================================================= */

.be-inside {
    background: var(--white);
}
.be-inside__head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.be-inside__head .eyebrow {
    color: var(--edn, var(--accent));
    margin-bottom: 0.85rem;
    display: block;
}
.be-inside__head h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin: 0.5rem 0 0;
    letter-spacing: -0.02em;
    display: inline-block;
}
.be-inside__head h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background: var(--edn, var(--accent));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.be-inside__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.be-inside__item {
    background: var(--white);
    border: 1px solid var(--neutral-line);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 14px rgba(27, 38, 53, 0.04);
    transition: all var(--dur-base) var(--ease);
}
.be-inside__item:hover {
    transform: translateY(-4px);
    border-color: var(--edn, var(--primary));
    box-shadow: 0 10px 24px rgba(27, 38, 53, 0.08);
}
.be-inside__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--edn, var(--primary));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 14px color-mix(in srgb, var(--edn, var(--primary)) 24%, transparent);
}
.be-inside__item h3 {
    font-size: 1.1rem;
    margin: 0 0 0.4rem;
    color: var(--deep);
    letter-spacing: -0.01em;
}
.be-inside__item p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}


/* =========================================================
   SECTION 6 - Advertise CTA (branded gradient card)
   ========================================================= */

.be-advertise {
    background: var(--neutral);
}
.be-advertise__card {
    background:
        linear-gradient(135deg, var(--edn, var(--primary)) 0%, var(--edn-to, var(--accent)) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(27, 38, 53, 0.12);
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: center;
}
.be-advertise__deco {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    z-index: 0;
}
.be-advertise__body {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

/* Cover on the right - tilted with layered shadows */
.be-advertise__cover {
    position: relative;
    z-index: 1;
    justify-self: center;
}
.be-advertise__cover img {
    display: block;
    width: 100%;
    max-width: 290px;
    aspect-ratio: 210 / 297;
    object-fit: cover;
    border-radius: 6px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.30),
        0 12px 24px rgba(0, 0, 0, 0.18);
    transform: rotate(4deg);
    transition: transform var(--dur-slow) var(--ease);
}
.be-advertise__card:hover .be-advertise__cover img {
    transform: rotate(0deg) scale(1.03);
}
.be-advertise__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.90);
    font-weight: 700;
    margin-bottom: 0.85rem;
}
.be-advertise__body h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: var(--white);
}
.be-advertise__body > p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    max-width: 52ch;
}
.be-advertise__list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.be-advertise__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.98rem;
    line-height: 1.5;
}
.be-advertise__list li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.be-advertise__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.75rem;
}
.be-advertise__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: color var(--dur-fast) var(--ease);
}
.be-advertise__phone:hover {
    color: var(--white);
}
.be-advertise__phone i {
    color: var(--white);
}


/* =========================================================
   SECTION 7 - Other editions cross-link row
   ========================================================= */

.be-other {
    background: var(--white);
}
.be-other__head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.be-other__head .eyebrow {
    color: var(--edn, var(--accent));
    margin-bottom: 0.85rem;
    display: block;
}
.be-other__head h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 0.5rem 0 0;
    letter-spacing: -0.02em;
    display: inline-block;
}
.be-other__head h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--edn, var(--accent));
    margin: 1rem auto 0;
    border-radius: 2px;
}
.be-other__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.be-other__card {
    background: var(--white);
    border: 1px solid var(--neutral-line);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: all var(--dur-base) var(--ease);
    position: relative;
    overflow: hidden;
}
.be-other__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--o-clr, var(--primary));
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform var(--dur-base) var(--ease);
}
.be-other__card:hover {
    transform: translateY(-4px);
    border-color: var(--o-clr, var(--primary));
    box-shadow: 0 10px 24px rgba(27, 38, 53, 0.08);
}
.be-other__card:hover::before {
    transform: scaleX(1);
}
.be-other__card img {
    aspect-ratio: 210 / 297;
    object-fit: cover;
    border-radius: var(--radius);
    max-height: 180px;
    width: auto;
    align-self: center;
    box-shadow: 0 4px 12px rgba(27, 38, 53, 0.12);
}
.be-other__card-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
    margin-top: auto;
}
.be-other__card-body span {
    color: var(--deep);
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.2;
}
.be-other__card-body em {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
    font-style: normal;
}


/* =========================================================
   SECTION 8 - Responsive
   ========================================================= */

@media (max-width: 900px) {
    .be-hero {
        padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
    }
    .be-hero__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "cover"
            "col";
        row-gap: 1.5rem;
    }
    .be-about__inner {
        grid-template-columns: 1fr;
    }
    .be-hero__back {
        margin-bottom: 1.25rem;
    }
    .be-hero__eyebrow {
        margin-bottom: 1rem;
    }
    .be-hero__title {
        font-size: clamp(2rem, 8vw, 2.75rem);
        margin: 0 0 1.5rem;
    }
    .be-hero__area {
        font-size: 0.98rem;
    }
    .be-hero__area i {
        width: 26px;
        height: 26px;
        font-size: 0.72rem;
    }
    .be-hero__lead {
        font-size: 1rem;
        line-height: 1.65;
        margin: 1rem 0 1.75rem;
    }
    .be-hero__cover {
        justify-self: center;
        margin-top: 0;
    }
    .be-hero__cover img {
        max-width: 200px;
    }
    .be-inside__grid {
        grid-template-columns: 1fr 1fr;
    }
    .be-other__grid {
        grid-template-columns: 1fr 1fr;
    }
    .be-flipbook__loading {
        min-height: 300px;
    }
    .be-advertise__card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .be-advertise__cover {
        order: -1;
    }
    .be-advertise__cover img {
        max-width: 200px;
    }
}

@media (max-width: 640px) {
    .be-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .be-hero__actions .btn {
        width: 100%;
    }
    .be-read__actions {
        flex-direction: column;
    }
    .be-read__actions .btn {
        width: 100%;
    }
    .be-inside__grid {
        grid-template-columns: 1fr;
    }
    .be-other__grid {
        grid-template-columns: 1fr 1fr;
    }
    .be-advertise__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .be-advertise__actions .btn {
        width: 100%;
        justify-content: center;
    }
    .be-advertise__phone {
        justify-content: center;
    }
    .be-flipbook__controls {
        gap: 1rem;
    }
    .be-flipbook__btn {
        width: 42px;
        height: 42px;
    }
}
