/* ─── COUNTRY PROFILE ────────────────────────────────────────────────────────
 * Единый шаблон страниц стран: /napravleniya/{slug}/
 * ─────────────────────────────────────────────────────────────────────────── */

.country-profile {
    padding: clamp(34px, 4.5vw, 72px) 0 clamp(72px, 9vw, 138px);
    color: var(--color-sapphire-deep);
    background: var(--color-white);
}

.country-profile__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 clamp(46px, 7vw, 108px);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: var(--fw-medium);
    letter-spacing: 0.045em;
    line-height: 1.4;
    text-transform: uppercase;
}

.country-profile__breadcrumbs a {
    color: var(--color-sapphire-deep);
    text-decoration: none;
    transition: color 0.2s ease;
}

.country-profile__breadcrumbs a:hover,
.country-profile__breadcrumbs a:focus-visible {
    color: var(--color-solar-gold);
}

/* Hero */
.country-profile__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(350px, 390px);
    gap: clamp(32px, 4.8vw, 76px);
    align-items: end;
    min-height: clamp(510px, 54vw, 650px);
    padding-bottom: clamp(54px, 6vw, 92px);
    border-bottom: 1px solid rgba(10, 27, 45, 0.16);
}

.country-profile__eyebrow {
    margin: 0;
    color: var(--color-solar-gold);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.09em;
    line-height: 1.25;
    text-transform: uppercase;
}

.country-profile__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 22px 0 clamp(34px, 5vw, 58px);
}

.country-profile__badges span {
    display: inline-flex;
    min-height: 31px;
    align-items: center;
    padding: 0 10px;
    color: var(--color-sapphire-deep);
    background: var(--color-bg-badge);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.055em;
    line-height: 1;
    text-transform: uppercase;
}

.country-profile__title {
    max-width: 915px;
    margin: 0;
    color: var(--color-sapphire-deep);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8.25vw, 8.55rem);
    font-weight: var(--fw-regular);
    letter-spacing: -0.018em;
    line-height: 0.84;
}

.country-profile__title > span,
.country-profile__title > em {
    display: block;
}

.country-profile__title > em {
    max-width: 890px;
    margin: 0.17em 0 0;
    color: var(--color-solar-gold);
    font-weight: var(--fw-regular);
    line-height: 0.84;
}

.country-profile__lead {
    max-width: 665px;
    margin: clamp(34px, 4vw, 58px) 0 0;
    color: var(--color-sapphire-deep);
    font-family: var(--font-body);
    font-size: clamp(15px, 1.33vw, 19px);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-body-2);
    line-height: 1.62;
}

.country-profile__hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: clamp(28px, 3vw, 46px);
    color: var(--color-sapphire-deep);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.055em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.country-profile__cta-icon {
    display: grid;
    width: 33px;
    height: 33px;
    color: var(--color-sapphire-deep);
    border: 1px solid currentColor;
    place-items: center;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.country-profile__cta-icon svg {
    display: block;
    width: 14px;
    height: 14px;
}

.country-profile__hero-cta:hover,
.country-profile__hero-cta:focus-visible {
    color: var(--color-solar-gold);
}

.country-profile__hero-cta:hover .country-profile__cta-icon,
.country-profile__hero-cta:focus-visible .country-profile__cta-icon {
    color: var(--color-white);
    background: var(--color-solar-gold);
    border-color: var(--color-solar-gold);
    transform: rotate(45deg);
}

.country-profile__hero-aside {
    align-self: stretch;
    display: flex;
    width: 100%;
    max-width: 390px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 4px clamp(22px, 2.5vw, 34px);
    border-left: 1px solid var(--color-solar-gold);
}

.country-profile__aside-label {
    margin: 0 0 20px;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.075em;
    line-height: 1.3;
    text-transform: uppercase;
}

.country-profile__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.country-profile__fact {
    display: flex;
    min-width: 0;
    min-height: 156px;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 16px 16px;
    background: rgba(246, 243, 238, 0.72);
    border: 1px solid rgba(10, 27, 45, 0.16);
}

.country-profile__fact dt {
    order: 2;
    margin: 13px 0 0;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.07em;
    line-height: 1.25;
    text-transform: uppercase;
}

.country-profile__fact dd {
    order: 1;
    min-width: 0;
    margin: 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    color: var(--color-sapphire-deep);
    font-family: var(--font-heading);
    font-size: clamp(1.82rem, 2.35vw, 2.7rem);
    font-weight: var(--fw-regular);
    letter-spacing: -0.018em;
    line-height: 0.98;
}

.country-profile__aside-note {
    margin: 18px 0 0;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-body-2);
    line-height: 1.52;
}

/* Section headings */
.country-profile__basis,
.country-profile__process,
.country-profile__faq {
    padding: clamp(76px, 10vw, 160px) 0 0;
}

.country-profile__section-heading {
    display: grid;
    grid-template-columns: minmax(190px, 0.48fr) minmax(0, 1.55fr);
    gap: 30px;
    align-items: start;
}

.country-profile__section-heading h2 {
    max-width: 840px;
    margin: 0;
    color: var(--color-sapphire-deep);
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 3.85vw, 4rem);
    font-weight: var(--fw-regular);
    letter-spacing: -0.008em;
    line-height: 0.98;
}

.country-profile__section-heading h2 em {
    color: var(--color-solar-gold);
    font-weight: var(--fw-regular);
    letter-spacing: 0.006em;
}

.country-profile__section-heading--basis {
    margin-bottom: clamp(34px, 4vw, 56px);
}

.country-profile__section-heading--basis h2 {
    grid-column: 2;
}

/* Single block: «Основание и условия программы» */
.country-profile__program-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
    gap: clamp(42px, 6vw, 96px);
    align-items: stretch;
    padding: clamp(38px, 5vw, 76px);
    color: var(--color-white);
    background: var(--color-sapphire-deep);
}

.country-profile__program-copy {
    max-width: 720px;
}

.country-profile__program-copy h3 {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 3.8vw, 4rem);
    font-weight: var(--fw-regular);
    letter-spacing: -0.01em;
    line-height: 0.98;
}

.country-profile__program-copy > p:last-child {
    max-width: 700px;
    margin: clamp(22px, 2.6vw, 32px) 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--font-body);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-body-2);
    line-height: 1.58;
}

.country-profile__program-notes {
    align-self: stretch;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    min-width: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.24);
}

.country-profile__program-notes > div {
    display: flex;
    min-width: 0;
    min-height: 144px;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 16px 16px;
    background: rgba(10, 27, 45, 0.96);
}

.country-profile__program-notes dt {
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.07em;
    line-height: 1.28;
    text-transform: uppercase;
}

.country-profile__program-notes dd {
    min-width: 0;
    margin: 16px 0 0;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.15vw, 2.35rem);
    font-weight: var(--fw-regular);
    letter-spacing: -0.012em;
    line-height: 0.99;
}

/* Optional scenario cards: kept for future country pages. */
.country-profile__scenarios {
    padding: clamp(76px, 10vw, 160px) 0 0;
}

.country-profile__scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: clamp(46px, 6vw, 88px);
}

.country-profile__scenario {
    display: flex;
    min-height: 286px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid rgba(10, 27, 45, 0.18);
}

.country-profile__scenario-index {
    margin: 0;
    color: var(--color-solar-gold);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: var(--fw-medium);
    line-height: 1;
}

.country-profile__scenario h3 {
    margin: auto 0 20px;
    color: var(--color-sapphire-deep);
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 2.55vw, 2.75rem);
    font-weight: var(--fw-regular);
    letter-spacing: -0.008em;
    line-height: 0.98;
}

.country-profile__scenario > p:last-child {
    margin: 0;
    color: var(--color-sapphire-deep);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-body-2);
    line-height: 1.52;
}

/* Process */
.country-profile__process-list {
    margin: clamp(48px, 6vw, 92px) 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(10, 27, 45, 0.18);
}

.country-profile__process-list li {
    display: grid;
    grid-template-columns: minmax(58px, 0.22fr) minmax(220px, 0.76fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
    padding: clamp(25px, 3vw, 42px) 0;
    border-bottom: 1px solid rgba(10, 27, 45, 0.18);
}

.country-profile__process-number {
    color: var(--color-solar-gold);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: var(--fw-medium);
    letter-spacing: -0.05em;
    line-height: 1.3;
}

.country-profile__process-list h3 {
    margin: 0;
    color: var(--color-sapphire-deep);
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.3vw, 2.55rem);
    font-weight: var(--fw-regular);
    letter-spacing: -0.008em;
    line-height: 1;
}

.country-profile__process-list p {
    max-width: 550px;
    margin: 0;
    color: var(--color-sapphire-deep);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-body-2);
    line-height: 1.55;
}

/* FAQ */
.country-profile__faq-list {
    max-width: 980px;
    margin: clamp(46px, 6vw, 88px) 0 0 auto;
    border-top: 1px solid rgba(10, 27, 45, 0.18);
}

.country-profile__faq-item {
    border-bottom: 1px solid rgba(10, 27, 45, 0.18);
}

.country-profile__faq-item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 26px;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    color: var(--color-sapphire-deep);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: var(--fw-bold);
    letter-spacing: var(--ls-body-2);
    line-height: 1.4;
    list-style: none;
}

.country-profile__faq-item summary::-webkit-details-marker {
    display: none;
}

.country-profile__faq-item summary span {
    position: relative;
    display: block;
    width: 26px;
    height: 26px;
    border: 1px solid var(--color-sapphire-deep);
}

.country-profile__faq-item summary span::before,
.country-profile__faq-item summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: currentColor;
    content: '';
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease;
}

.country-profile__faq-item summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.country-profile__faq-item[open] summary {
    color: var(--color-solar-gold);
}

.country-profile__faq-item[open] summary span {
    border-color: currentColor;
}

.country-profile__faq-item[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.country-profile__faq-item > div {
    max-width: 790px;
    padding: 0 45px 24px 0;
    color: var(--color-sapphire-deep);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-body-2);
    line-height: 1.57;
}

.country-profile__faq-item > div p {
    margin: 0;
}

/* CTA */
.country-profile__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: end;
    margin-top: clamp(76px, 11vw, 168px);
    padding: clamp(42px, 5vw, 80px);
    color: var(--color-white);
    background: var(--color-sapphire-deep);
}

.country-profile__eyebrow--light {
    color: var(--color-sun-gold);
}

.country-profile__cta h2 {
    max-width: 920px;
    margin: 21px 0 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(2.45rem, 4.15vw, 4.65rem);
    font-weight: var(--fw-regular);
    letter-spacing: -0.01em;
    line-height: 0.98;
}

.country-profile__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-sapphire-deep);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.04em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.country-profile__cta-button > span:first-child {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    padding: 0 20px;
    background: var(--color-white);
}

.country-profile__cta-button-icon {
    display: grid;
    width: 45px;
    height: 45px;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.8);
    place-items: center;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.country-profile__cta-button-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.country-profile__cta-button:hover .country-profile__cta-button-icon,
.country-profile__cta-button:focus-visible .country-profile__cta-button-icon {
    color: var(--color-sapphire-deep);
    background: var(--color-solar-gold);
    border-color: var(--color-solar-gold);
    transform: rotate(45deg);
}

.country-profile__disclaimer {
    max-width: 840px;
    margin: 28px 0 0;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-body-2);
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 1180px) and (min-width: 1061px) {
    .country-profile__hero {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 370px);
        gap: 30px;
    }

    .country-profile__hero-aside {
        max-width: 370px;
        padding-left: 24px;
    }

    .country-profile__fact {
        min-height: 148px;
        padding: 16px 14px 14px;
    }

    .country-profile__fact dd {
        font-size: clamp(1.7rem, 2.2vw, 2.35rem);
    }

    .country-profile__program-panel {
        gap: 38px;
    }
}

@media (max-width: 1060px) {
    .country-profile__hero,
    .country-profile__program-panel {
        grid-template-columns: 1fr;
    }

    .country-profile__hero {
        gap: 54px;
    }

    .country-profile__hero-aside {
        max-width: 680px;
        padding: 28px 0 0;
        border-top: 1px solid var(--color-solar-gold);
        border-left: 0;
    }

    .country-profile__fact {
        min-height: 132px;
    }

    .country-profile__program-panel {
        gap: 38px;
    }

    .country-profile__scenario-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .country-profile__scenario:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 780px) {
    .country-profile__section-heading {
        grid-template-columns: 1fr;
        gap: 19px;
    }

    .country-profile__section-heading--basis h2 {
        grid-column: auto;
    }

    .country-profile__process-list li {
        grid-template-columns: 50px 1fr;
        gap: 13px 20px;
    }

    .country-profile__process-list p {
        grid-column: 2;
    }

    .country-profile__cta {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 560px) {
    .country-profile {
        padding-top: 27px;
    }

    .country-profile__breadcrumbs {
        margin-bottom: 43px;
        font-size: 10px;
    }

    .country-profile__hero {
        min-height: auto;
        padding-bottom: 58px;
    }

    .country-profile__title {
        font-size: clamp(3.6rem, 17vw, 5rem);
        letter-spacing: -0.014em;
        line-height: 0.88;
    }

    .country-profile__lead {
        font-size: 15px;
        line-height: 1.56;
    }

    .country-profile__facts {
        gap: 8px;
    }

    .country-profile__fact {
        min-height: 118px;
        padding: 15px 13px 13px;
    }

    .country-profile__fact dd {
        font-size: clamp(1.62rem, 8vw, 2.1rem);
        line-height: 0.98;
    }

    .country-profile__fact dt {
        margin-top: 10px;
        font-size: 9px;
    }

    .country-profile__program-panel,
    .country-profile__cta {
        margin-right: -16px;
        margin-left: -16px;
        padding: 34px 16px;
    }

    .country-profile__program-notes > div {
        min-height: 116px;
        padding: 14px 12px 12px;
    }

    .country-profile__program-notes dd {
        margin-top: 12px;
        font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    }

    .country-profile__scenario-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .country-profile__scenario,
    .country-profile__scenario:last-child {
        grid-column: auto;
        min-height: 244px;
    }

    .country-profile__faq-item > div {
        padding-right: 0;
    }
}


/* ── Country profile: key advantages cards ──────────────────────────────────
 * Преимущества — отдельный визуальный блок: крупные значения, короткие подписи.
 * Основной текст страницы не затрагиваем.
 */
.country-profile__fact-main,
.country-profile__fact-unit {
    display: block;
}

.country-profile__fact-unit {
    margin-top: 0.18em;
    color: var(--color-sapphire-deep);
    font-family: var(--font-body);
    font-size: clamp(14px, 1.15vw, 17px);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-body-2);
    line-height: 1.18;
}

.country-profile__hero-aside .country-profile__aside-note {
    display: none;
}

@media (min-width: 1061px) {
    .country-profile__hero {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
        align-items: center;
    }

    .country-profile__hero-aside {
        align-self: end;
        max-width: 520px;
        justify-content: flex-start;
        padding: clamp(24px, 2.7vw, 34px);
        background: rgba(246, 243, 238, 0.78);
        border: 1px solid rgba(10, 27, 45, 0.14);
        border-left: 3px solid var(--color-solar-gold);
    }

    .country-profile__aside-label {
        margin-bottom: clamp(18px, 2vw, 24px);
        color: var(--color-solar-gold);
        font-size: 12px;
        letter-spacing: 0.09em;
    }

    .country-profile__facts {
        gap: 10px;
    }

    .country-profile__fact {
        position: relative;
        min-height: clamp(148px, 12vw, 178px);
        padding: clamp(18px, 1.7vw, 24px);
        overflow: hidden;
        background: var(--color-white);
        border: 1px solid rgba(10, 27, 45, 0.13);
    }

    .country-profile__fact::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--color-solar-gold);
        content: '';
    }

    .country-profile__fact dd {
        font-size: 1rem;
        line-height: 1;
    }

    .country-profile__fact-main {
        color: var(--color-sapphire-deep);
        font-family: var(--font-heading);
        font-size: clamp(2.15rem, 3.2vw, 3.85rem);
        font-weight: var(--fw-regular);
        letter-spacing: -0.025em;
        line-height: 0.92;
    }

    .country-profile__fact dt {
        margin-top: 18px;
        font-size: 11px;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 1060px) {
    .country-profile__hero-aside {
        max-width: none;
        padding-top: 30px;
    }

    .country-profile__aside-label {
        margin-bottom: 16px;
        color: var(--color-solar-gold);
    }

    .country-profile__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .country-profile__fact {
        position: relative;
        min-height: 132px;
        padding: 16px 14px 14px;
        overflow: hidden;
        background: rgba(246, 243, 238, 0.78);
    }

    .country-profile__fact::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--color-solar-gold);
        content: '';
    }

    .country-profile__fact dd {
        font-size: 1rem;
        line-height: 1;
    }

    .country-profile__fact-main {
        color: var(--color-sapphire-deep);
        font-family: var(--font-heading);
        font-size: clamp(2rem, 8vw, 3rem);
        font-weight: var(--fw-regular);
        letter-spacing: -0.024em;
        line-height: 0.94;
    }
}

@media (max-width: 560px) {
    .country-profile__facts {
        gap: 9px;
    }

    .country-profile__fact {
        min-height: 124px;
        padding: 15px 12px 12px;
    }

    .country-profile__fact-main {
        font-size: clamp(1.85rem, 9.2vw, 2.65rem);
    }

    .country-profile__fact-unit {
        font-size: 13px;
    }

    .country-profile__fact dt {
        margin-top: 12px;
        font-size: 9px;
        line-height: 1.22;
    }
}


/* ── Country profile hero polish: premium + conversion ───────────────────── */
@media (min-width: 1061px) {
    .country-profile {
        padding-top: clamp(28px, 3.2vw, 54px);
    }

    .country-profile__breadcrumbs {
        margin-bottom: clamp(34px, 4.8vw, 72px);
    }

    .country-profile__hero {
        grid-template-columns: minmax(0, 0.61fr) minmax(430px, 0.39fr);
        gap: clamp(42px, 5.6vw, 88px);
        align-items: center;
        min-height: clamp(500px, 48vw, 620px);
        padding-bottom: clamp(46px, 5.4vw, 76px);
    }

    .country-profile__title {
        font-size: clamp(3.8rem, 7.25vw, 7.65rem);
        line-height: 0.88;
    }

    .country-profile__title > em {
        margin-top: 0.14em;
        line-height: 0.88;
    }

    .country-profile__lead {
        max-width: 720px;
        margin-top: clamp(28px, 3.2vw, 44px);
        font-size: clamp(17px, 1.32vw, 20px);
        line-height: 1.58;
    }

    .country-profile__hero-cta {
        gap: 0;
        margin-top: clamp(28px, 3vw, 44px);
        color: var(--color-white);
    }

    .country-profile__hero-cta > span:first-child {
        display: inline-flex;
        min-height: 46px;
        align-items: center;
        padding: 0 20px;
        color: var(--color-white);
        background: var(--color-sapphire-deep);
    }

    .country-profile__hero-cta .country-profile__cta-icon {
        width: 46px;
        height: 46px;
        color: var(--color-sapphire-deep);
        background: var(--color-white);
        border-color: rgba(10, 27, 45, 0.28);
    }

    .country-profile__hero-cta:hover > span:first-child,
    .country-profile__hero-cta:focus-visible > span:first-child {
        color: var(--color-sapphire-deep);
        background: var(--color-solar-gold);
    }

    .country-profile__hero-cta:hover .country-profile__cta-icon,
    .country-profile__hero-cta:focus-visible .country-profile__cta-icon {
        color: var(--color-white);
        background: var(--color-sapphire-deep);
        border-color: var(--color-sapphire-deep);
    }

    .country-profile__hero-aside {
        max-width: 560px;
        padding: clamp(30px, 3vw, 42px);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 243, 238, 0.88));
        border: 1px solid rgba(10, 27, 45, 0.12);
        border-left: 3px solid var(--color-solar-gold);
        box-shadow: 0 28px 90px rgba(10, 27, 45, 0.07);
    }

    .country-profile__aside-label {
        margin-bottom: clamp(20px, 2vw, 28px);
        color: var(--color-solar-gold);
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .country-profile__facts {
        gap: 12px;
    }

    .country-profile__fact {
        min-height: clamp(158px, 11vw, 188px);
        padding: clamp(22px, 2vw, 28px);
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(10, 27, 45, 0.11);
    }

    .country-profile__fact::before {
        height: 2px;
    }

    .country-profile__fact-main {
        font-size: clamp(2.25rem, 3.35vw, 4.05rem);
        line-height: 0.9;
    }

    .country-profile__fact-unit {
        margin-top: 0.22em;
        font-size: clamp(14px, 1.05vw, 17px);
        line-height: 1.14;
    }

    .country-profile__fact dt {
        margin-top: 20px;
        color: rgba(10, 27, 45, 0.62);
        font-size: 11px;
        letter-spacing: 0.08em;
        line-height: 1.26;
    }
}

@media (max-width: 1060px) {
    .country-profile__hero {
        gap: 42px;
    }

    .country-profile__hero-aside {
        padding: 24px;
        background: rgba(246, 243, 238, 0.72);
        border: 1px solid rgba(10, 27, 45, 0.12);
        border-left: 3px solid var(--color-solar-gold);
    }

    .country-profile__hero-cta {
        gap: 0;
    }

    .country-profile__hero-cta > span:first-child {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        padding: 0 18px;
        color: var(--color-white);
        background: var(--color-sapphire-deep);
    }

    .country-profile__hero-cta .country-profile__cta-icon {
        width: 44px;
        height: 44px;
        background: var(--color-white);
    }
}

@media (max-width: 560px) {
    .country-profile__hero {
        gap: 34px;
    }

    .country-profile__title {
        font-size: clamp(3.25rem, 15.4vw, 4.65rem);
        line-height: 0.9;
    }

    .country-profile__lead {
        margin-top: 24px;
        font-size: 16px;
        line-height: 1.55;
    }

    .country-profile__hero-aside {
        margin-right: -4px;
        margin-left: -4px;
        padding: 20px 16px;
    }

    .country-profile__aside-label {
        margin-bottom: 14px;
    }

    .country-profile__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .country-profile__fact {
        min-height: 122px;
        padding: 15px 12px 12px;
    }

    .country-profile__fact-main {
        font-size: clamp(1.72rem, 8.2vw, 2.45rem);
    }

    .country-profile__fact-unit {
        font-size: 12px;
    }

    .country-profile__fact dt {
        margin-top: 12px;
        font-size: 8.8px;
        letter-spacing: 0.055em;
    }
}

@media (max-width: 380px) {
    .country-profile__facts {
        grid-template-columns: 1fr;
    }

    .country-profile__fact {
        min-height: 104px;
    }
}


/* ── Country profile hero layout polish v1.0.32 ─────────────────────────────
 * Senior layout pass: tighter hero, premium advantages block, less empty gap.
 * Data stays 100% ACF-driven.
 */
@media (min-width: 1061px) {
    .country-profile {
        padding-top: clamp(24px, 2.5vw, 44px);
    }

    .country-profile__breadcrumbs {
        margin-bottom: clamp(28px, 3.8vw, 56px);
    }

    .country-profile__hero {
        grid-template-columns: minmax(0, 0.58fr) minmax(420px, 0.42fr);
        gap: clamp(54px, 6vw, 96px);
        align-items: center;
        min-height: clamp(430px, 39vw, 540px);
        padding-bottom: clamp(34px, 4.2vw, 58px);
    }

    .country-profile__hero-copy {
        align-self: center;
    }

    .country-profile__badges {
        margin: 20px 0 clamp(24px, 3vw, 38px);
    }

    .country-profile__title {
        max-width: 720px;
        font-size: clamp(3.55rem, 6.25vw, 6.65rem);
        letter-spacing: -0.018em;
        line-height: 0.92;
    }

    .country-profile__title > em {
        max-width: 700px;
        margin-top: 0.12em;
        line-height: 0.92;
    }

    .country-profile__lead {
        max-width: 700px;
        margin-top: clamp(24px, 2.6vw, 36px);
        font-size: clamp(17px, 1.25vw, 19px);
        line-height: 1.56;
    }

    .country-profile__hero-cta {
        margin-top: clamp(24px, 2.6vw, 36px);
    }

    .country-profile__hero-aside {
        align-self: center;
        max-width: 570px;
        padding: clamp(28px, 2.8vw, 40px);
        background:
            radial-gradient(circle at 100% 0%, rgba(236, 161, 40, 0.08), transparent 42%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 243, 238, 0.78));
        border: 1px solid rgba(10, 27, 45, 0.1);
        border-left: 3px solid var(--color-solar-gold);
        box-shadow: 0 22px 72px rgba(10, 27, 45, 0.055);
    }

    .country-profile__aside-label {
        margin-bottom: clamp(18px, 1.8vw, 24px);
        color: var(--color-solar-gold);
        font-size: 12px;
        letter-spacing: 0.105em;
    }

    .country-profile__facts {
        gap: 12px;
    }

    .country-profile__fact {
        min-height: clamp(134px, 9.3vw, 160px);
        padding: clamp(20px, 1.8vw, 26px);
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(10, 27, 45, 0.1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .country-profile__fact::before {
        height: 2px;
        opacity: 0.95;
    }

    .country-profile__fact-main {
        font-size: clamp(2.08rem, 3.05vw, 3.55rem);
        line-height: 0.94;
    }

    .country-profile__fact-unit {
        margin-top: 0.23em;
        font-size: clamp(13px, 0.95vw, 16px);
        line-height: 1.15;
    }

    .country-profile__fact dt {
        margin-top: 18px;
        color: rgba(10, 27, 45, 0.66);
        font-size: 10.5px;
        letter-spacing: 0.075em;
        line-height: 1.24;
    }

    .country-profile__basis {
        padding-top: clamp(54px, 6.4vw, 96px);
    }

    .country-profile__section-heading--basis {
        margin-bottom: clamp(28px, 3.2vw, 44px);
    }

    .country-profile__program-panel {
        padding: clamp(34px, 4.1vw, 62px);
    }
}

@media (min-width: 1181px) and (max-width: 1440px) {
    .country-profile__hero {
        grid-template-columns: minmax(0, 0.57fr) minmax(410px, 0.43fr);
        gap: clamp(42px, 4.5vw, 68px);
        min-height: clamp(420px, 38vw, 515px);
    }

    .country-profile__title {
        font-size: clamp(3.45rem, 5.9vw, 6.15rem);
    }

    .country-profile__hero-aside {
        padding: clamp(24px, 2.35vw, 34px);
    }

    .country-profile__fact {
        min-height: clamp(128px, 8.9vw, 150px);
    }
}

@media (max-width: 1060px) {
    .country-profile__hero {
        gap: 34px;
        padding-bottom: 46px;
    }

    .country-profile__hero-aside {
        padding: 22px;
        background:
            radial-gradient(circle at 100% 0%, rgba(236, 161, 40, 0.08), transparent 42%),
            rgba(246, 243, 238, 0.72);
        border: 1px solid rgba(10, 27, 45, 0.12);
        border-left: 3px solid var(--color-solar-gold);
    }

    .country-profile__basis {
        padding-top: 58px;
    }

    .country-profile__fact {
        min-height: 120px;
    }
}

@media (max-width: 780px) {
    .country-profile__hero {
        gap: 30px;
    }

    .country-profile__title {
        font-size: clamp(3.05rem, 13.6vw, 4.45rem);
        line-height: 0.93;
    }

    .country-profile__lead {
        margin-top: 22px;
        font-size: 16px;
    }

    .country-profile__hero-cta {
        margin-top: 24px;
    }

    .country-profile__hero-aside {
        margin-top: 4px;
    }
}

@media (max-width: 560px) {
    .country-profile {
        padding-top: 22px;
    }

    .country-profile__breadcrumbs {
        margin-bottom: 32px;
    }

    .country-profile__badges {
        margin-bottom: 24px;
    }

    .country-profile__hero {
        padding-bottom: 40px;
    }

    .country-profile__title {
        font-size: clamp(2.95rem, 13.8vw, 4.25rem);
        line-height: 0.94;
    }

    .country-profile__hero-aside {
        margin-right: 0;
        margin-left: 0;
        padding: 18px 14px;
    }

    .country-profile__facts {
        gap: 8px;
    }

    .country-profile__fact {
        min-height: 112px;
        padding: 14px 11px 11px;
    }

    .country-profile__fact-main {
        font-size: clamp(1.65rem, 7.8vw, 2.3rem);
    }

    .country-profile__fact-unit {
        font-size: 12px;
        line-height: 1.12;
    }

    .country-profile__fact dt {
        margin-top: 10px;
        font-size: 8.6px;
        letter-spacing: 0.052em;
    }

    .country-profile__basis {
        padding-top: 46px;
    }
}


/* ── Country profile hero advantages: no cheap outer frame v1.0.33 ──────────
 * Убираем внешний "коробочный" блок вокруг преимуществ.
 * Оставляем открытый premium-dashboard: воздух, тонкая золотая ось, отдельные карточки.
 */
@media (min-width: 1061px) {
    .country-profile__hero-aside {
        max-width: 560px;
        padding: 0 0 0 clamp(26px, 2.7vw, 40px);
        background: transparent;
        border: 0;
        border-left: 2px solid var(--color-solar-gold);
        box-shadow: none;
    }

    .country-profile__aside-label {
        margin-bottom: clamp(18px, 1.8vw, 24px);
        padding-left: 0;
    }

    .country-profile__facts {
        gap: 14px;
    }

    .country-profile__fact {
        min-height: clamp(136px, 9.4vw, 158px);
        padding: clamp(22px, 2vw, 28px);
        background:
            linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,248,244,0.82));
        border: 0;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.9),
            0 1px 0 rgba(10,27,45,0.08);
    }

    .country-profile__fact::before {
        height: 2px;
        opacity: 0.8;
    }
}

@media (max-width: 1060px) {
    .country-profile__hero-aside {
        padding: 0 0 0 18px;
        background: transparent;
        border: 0;
        border-left: 2px solid var(--color-solar-gold);
        box-shadow: none;
    }

    .country-profile__facts {
        gap: 10px;
    }

    .country-profile__fact {
        background:
            linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,248,244,0.84));
        border: 0;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.9),
            0 1px 0 rgba(10,27,45,0.08);
    }
}

@media (max-width: 560px) {
    .country-profile__hero-aside {
        padding-left: 14px;
    }

    .country-profile__facts {
        gap: 8px;
    }
}


/* ── Country profile hero: compact H1 + bento advantages v1.0.34 ────────────
 * Меняем только верстку. Значения остаются из ACF.
 */
@media (min-width: 1061px) {
    .country-profile__hero {
        grid-template-columns: minmax(0, 0.54fr) minmax(460px, 0.46fr);
        gap: clamp(46px, 5.2vw, 82px);
        align-items: start;
        min-height: clamp(410px, 37vw, 520px);
        padding-bottom: clamp(30px, 3.6vw, 50px);
    }

    .country-profile__title {
        max-width: 660px;
        font-size: clamp(3.15rem, 5.45vw, 5.85rem);
        line-height: 0.94;
    }

    .country-profile__title > em {
        max-width: 560px;
        margin-top: 0.18em;
        font-size: 0.68em;
        line-height: 0.98;
    }

    .country-profile__lead {
        max-width: 690px;
        margin-top: clamp(22px, 2.3vw, 32px);
    }

    .country-profile__hero-cta {
        margin-top: clamp(22px, 2.4vw, 34px);
    }

    .country-profile__hero-aside {
        align-self: start;
        max-width: 610px;
        margin-top: clamp(86px, 8.2vw, 126px);
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .country-profile__aside-label {
        margin: 0 0 clamp(16px, 1.6vw, 22px);
        color: var(--color-solar-gold);
        font-size: 12px;
        letter-spacing: 0.105em;
    }

    .country-profile__facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-flow: dense;
        gap: 14px;
        margin: 0;
    }

    .country-profile__fact {
        position: relative;
        min-height: clamp(130px, 8.7vw, 154px);
        justify-content: space-between;
        padding: clamp(22px, 2vw, 30px);
        overflow: hidden;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 241, 0.88));
        border: 0;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 54px rgba(10, 27, 45, 0.055);
    }

    .country-profile__fact::before {
        height: 2px;
        opacity: 0.82;
    }

    .country-profile__fact:nth-child(2) {
        order: 1;
        grid-column: 1 / -1;
        min-height: clamp(164px, 11vw, 204px);
        padding: clamp(28px, 2.8vw, 42px);
        background: radial-gradient(circle at 90% 0%, rgba(236, 161, 40, 0.12), transparent 40%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 239, 0.9));
    }

    .country-profile__fact:nth-child(1) { order: 2; }
    .country-profile__fact:nth-child(4) { order: 3; }

    .country-profile__fact:nth-child(3) {
        order: 4;
        grid-column: 1 / -1;
        min-height: clamp(112px, 7.4vw, 132px);
    }

    .country-profile__fact:nth-child(2) .country-profile__fact-main {
        font-size: clamp(3.1rem, 4.8vw, 5.4rem);
    }

    .country-profile__fact:nth-child(3) .country-profile__fact-main {
        font-size: clamp(2.55rem, 3.8vw, 4.25rem);
    }

    .country-profile__fact-main {
        font-size: clamp(2.05rem, 2.85vw, 3.25rem);
        line-height: 0.94;
    }

    .country-profile__fact-unit {
        margin-top: 0.2em;
        font-size: clamp(13px, 0.9vw, 16px);
        line-height: 1.16;
    }

    .country-profile__fact dt {
        margin-top: 18px;
        color: rgba(10, 27, 45, 0.64);
        font-size: 10px;
        letter-spacing: 0.075em;
        line-height: 1.25;
    }

    .country-profile__basis {
        padding-top: clamp(48px, 5.8vw, 86px);
    }
}

@media (min-width: 1181px) and (max-width: 1440px) {
    .country-profile__hero {
        grid-template-columns: minmax(0, 0.53fr) minmax(440px, 0.47fr);
        gap: clamp(38px, 4.2vw, 62px);
    }

    .country-profile__title {
        font-size: clamp(3rem, 5.08vw, 5.35rem);
    }

    .country-profile__hero-aside {
        margin-top: clamp(76px, 7.6vw, 108px);
    }

    .country-profile__fact:nth-child(2) {
        min-height: clamp(152px, 10.2vw, 184px);
    }
}

@media (max-width: 1060px) {
    .country-profile__hero { gap: 32px; }

    .country-profile__title > em {
        font-size: 0.72em;
        line-height: 1;
    }

    .country-profile__hero-aside {
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .country-profile__facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-flow: dense;
        gap: 10px;
    }

    .country-profile__fact {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 241, 0.9));
        border: 0;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 32px rgba(10, 27, 45, 0.045);
    }

    .country-profile__fact:nth-child(2) {
        order: 1;
        grid-column: 1 / -1;
        min-height: 148px;
    }
    .country-profile__fact:nth-child(1) { order: 2; }
    .country-profile__fact:nth-child(4) { order: 3; }
    .country-profile__fact:nth-child(3) {
        order: 4;
        grid-column: 1 / -1;
        min-height: 108px;
    }

    .country-profile__fact:nth-child(2) .country-profile__fact-main {
        font-size: clamp(2.6rem, 9vw, 4.2rem);
    }
}

@media (max-width: 560px) {
    .country-profile__title { font-size: clamp(2.7rem, 12.4vw, 3.95rem); }
    .country-profile__title > em { font-size: 0.78em; }
    .country-profile__facts { gap: 8px; }
    .country-profile__fact {
        min-height: 104px;
        padding: 14px 12px 12px;
    }
    .country-profile__fact:nth-child(2) { min-height: 126px; }
    .country-profile__fact:nth-child(3) { min-height: 96px; }
    .country-profile__fact-main { font-size: clamp(1.58rem, 7.5vw, 2.2rem); }
    .country-profile__fact:nth-child(2) .country-profile__fact-main {
        font-size: clamp(2.1rem, 11vw, 3.25rem);
    }
}

@media (max-width: 380px) {
    .country-profile__facts { grid-template-columns: 1fr; }
    .country-profile__fact,
    .country-profile__fact:nth-child(2),
    .country-profile__fact:nth-child(3) {
        grid-column: auto;
        min-height: 96px;
    }
}


/* ── Country profile hero: flat premium bento cards v1.0.35 ────────────────
 * Убираем дешёвые градиенты из карточек. Оставляем чистые плоскости,
 * тонкие разделители и спокойный premium dashboard.
 */
@media (min-width: 1061px) {
    .country-profile__fact,
    .country-profile__fact:nth-child(2) {
        background: #ffffff;
        box-shadow:
            inset 0 0 0 1px rgba(10, 27, 45, 0.08),
            0 14px 36px rgba(10, 27, 45, 0.035);
    }

    .country-profile__fact:nth-child(2) {
        background: #f8f5ef;
    }

    .country-profile__fact::before {
        height: 1px;
        opacity: 1;
        background: rgba(10, 27, 45, 0.14);
    }

    .country-profile__fact:nth-child(2)::before {
        height: 2px;
        background: var(--color-solar-gold);
    }
}

@media (max-width: 1060px) {
    .country-profile__fact,
    .country-profile__fact:nth-child(2) {
        background: #ffffff;
        box-shadow:
            inset 0 0 0 1px rgba(10, 27, 45, 0.08),
            0 10px 24px rgba(10, 27, 45, 0.03);
    }

    .country-profile__fact:nth-child(2) {
        background: #f8f5ef;
    }

    .country-profile__fact::before {
        height: 1px;
        opacity: 1;
        background: rgba(10, 27, 45, 0.14);
    }

    .country-profile__fact:nth-child(2)::before {
        height: 2px;
        background: var(--color-solar-gold);
    }
}


/* ── Country page compact publishing layout v1.0.36 ─────────────────────────
 * Страница страны из данных «Для раздаток»: компактно, премиально, без простынь.
 * Только верстка; данные остаются в ACF.
 */

/* Hero bento by semantic classes, not by hardcoded row order */
@media (min-width: 1061px) {
    .country-profile__hero {
        grid-template-columns: minmax(0, 0.54fr) minmax(440px, 0.46fr);
        gap: clamp(42px, 5vw, 78px);
        align-items: start;
        min-height: clamp(400px, 36vw, 510px);
        padding-bottom: clamp(30px, 3.6vw, 48px);
    }

    .country-profile__title {
        max-width: 640px;
        font-size: clamp(3.1rem, 5.25vw, 5.55rem);
        line-height: 0.95;
    }

    .country-profile__title > em {
        max-width: 600px;
        margin-top: 0.12em;
        font-size: 0.82em;
        line-height: 0.98;
    }

    .country-profile__hero-aside {
        align-self: start;
        max-width: 600px;
        margin-top: clamp(64px, 6.4vw, 96px);
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .country-profile__facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-flow: dense;
        gap: 12px;
        margin: 0;
    }

    .country-profile__fact {
        order: 2;
        grid-column: auto;
        min-height: clamp(118px, 7.8vw, 140px);
        padding: clamp(20px, 1.8vw, 26px);
        background: #ffffff;
        border: 0;
        box-shadow:
            inset 0 0 0 1px rgba(10, 27, 45, 0.08),
            0 12px 30px rgba(10, 27, 45, 0.032);
    }

    .country-profile__fact::before {
        height: 1px;
        background: rgba(10, 27, 45, 0.14);
        opacity: 1;
    }

    .country-profile__fact--primary {
        order: 1;
        grid-column: 1 / -1;
        min-height: clamp(148px, 9.8vw, 186px);
        padding: clamp(26px, 2.4vw, 38px);
        background: #f8f5ef;
    }

    .country-profile__fact--primary::before {
        height: 2px;
        background: var(--color-solar-gold);
    }

    .country-profile__fact--wide {
        order: 4;
        grid-column: 1 / -1;
        min-height: clamp(96px, 6.8vw, 118px);
    }

    .country-profile__fact--primary .country-profile__fact-main {
        font-size: clamp(2.8rem, 4.35vw, 5rem);
    }

    .country-profile__fact-main {
        font-size: clamp(1.95rem, 2.7vw, 3rem);
        line-height: 0.94;
    }

    .country-profile__fact-unit {
        margin-top: 0.2em;
        font-size: clamp(13px, 0.9vw, 15px);
        line-height: 1.16;
    }

    .country-profile__fact dt {
        margin-top: 16px;
        color: rgba(10, 27, 45, 0.66);
        font-size: 10px;
        letter-spacing: 0.07em;
        line-height: 1.24;
    }
}

/* Program summary: replace heavy dark panel with light executive summary */
.country-profile__program-panel {
    color: var(--color-sapphire-deep);
    background: #fbf8f2;
    border: 1px solid rgba(10, 27, 45, 0.09);
}

.country-profile__program-copy > p:last-child {
    color: var(--color-sapphire-deep);
}

.country-profile__program-notes {
    background: rgba(10, 27, 45, 0.1);
}

.country-profile__program-notes > div {
    background: #ffffff;
    border: 0;
}

.country-profile__program-notes dt {
    color: rgba(10, 27, 45, 0.58);
}

.country-profile__program-notes dd {
    color: var(--color-sapphire-deep);
}

/* Status route: compact premium mini timeline */
.country-profile__status-route {
    padding: clamp(58px, 7vw, 112px) 0 0;
}

.country-profile__section-heading--route {
    margin-bottom: clamp(28px, 3.4vw, 48px);
}

.country-profile__status-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: rgba(10, 27, 45, 0.14);
}

.country-profile__status-list li {
    min-height: 176px;
    padding: clamp(22px, 2.4vw, 34px);
    background: #ffffff;
}

.country-profile__status-index {
    display: inline-block;
    margin-bottom: clamp(32px, 4vw, 58px);
    color: var(--color-solar-gold);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.country-profile__status-list h3 {
    margin: 0;
    color: var(--color-sapphire-deep);
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 2.45vw, 2.7rem);
    font-weight: var(--fw-regular);
    line-height: 0.98;
}

.country-profile__status-list p {
    margin: 14px 0 0;
    color: var(--color-sapphire-deep);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-body-2);
    line-height: 1.5;
}

/* Process: compact 11-step route */
.country-profile__process-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(10, 27, 45, 0.14);
}

.country-profile__process-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px 18px;
    min-height: 132px;
    padding: clamp(20px, 2.2vw, 30px);
    border-right: 1px solid rgba(10, 27, 45, 0.12);
}

.country-profile__process-list li:nth-child(2n) {
    border-right: 0;
}

.country-profile__process-list p {
    grid-column: 2;
    max-width: none;
    font-size: 13px;
}

/* Details accordions */
.country-profile__faq-list {
    max-width: none;
}

.country-profile__faq-item summary {
    min-height: 54px;
    padding: 18px 0;
}

.country-profile__faq-item > div {
    max-width: 980px;
}

/* Mobile */
@media (max-width: 1060px) {
    .country-profile__hero-aside {
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .country-profile__facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-flow: dense;
        gap: 10px;
    }

    .country-profile__fact {
        order: 2;
        grid-column: auto;
        background: #ffffff;
        border: 0;
        box-shadow:
            inset 0 0 0 1px rgba(10, 27, 45, 0.08),
            0 8px 20px rgba(10, 27, 45, 0.03);
    }

    .country-profile__fact--primary {
        order: 1;
        grid-column: 1 / -1;
        min-height: 132px;
        background: #f8f5ef;
    }

    .country-profile__fact--wide {
        order: 4;
        grid-column: 1 / -1;
    }

    .country-profile__program-panel {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .country-profile__status-list,
    .country-profile__process-list {
        grid-template-columns: 1fr;
    }

    .country-profile__process-list li,
    .country-profile__process-list li:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 560px) {
    .country-profile__facts {
        grid-template-columns: 1fr;
    }

    .country-profile__fact,
    .country-profile__fact--primary,
    .country-profile__fact--wide {
        grid-column: auto;
        min-height: 96px;
    }

    .country-profile__program-panel {
        margin-right: 0;
        margin-left: 0;
        padding: 28px 16px;
    }

    .country-profile__program-notes {
        grid-template-columns: 1fr;
    }

    .country-profile__status-list li {
        min-height: auto;
        padding: 22px 16px;
    }

    .country-profile__status-index {
        margin-bottom: 22px;
    }

    .country-profile__process-list li {
        min-height: auto;
        padding: 20px 0;
    }
}


/* ── Country page dynamic premium layout v1.0.37 ────────────────────────────
 * Убираем бежевую монотонность. Больше контраста, динамики и инфографики.
 * Данные остаются из ACF.
 */

/* Hero: contrast bento, not beige */
@media (min-width: 1061px) {
    .country-profile__hero {
        grid-template-columns: minmax(0, 0.52fr) minmax(460px, 0.48fr);
        gap: clamp(46px, 5.2vw, 86px);
    }

    .country-profile__title {
        font-size: clamp(3rem, 5vw, 5.25rem);
        line-height: 0.96;
    }

    .country-profile__title > em {
        font-size: 0.74em;
        line-height: 1;
    }

    .country-profile__hero-aside {
        margin-top: clamp(48px, 5.4vw, 82px);
    }

    .country-profile__fact {
        background: #ffffff;
        box-shadow:
            inset 0 0 0 1px rgba(10, 27, 45, 0.1),
            0 10px 28px rgba(10, 27, 45, 0.026);
    }

    .country-profile__fact::before {
        background: rgba(10, 27, 45, 0.12);
    }

    .country-profile__fact--primary {
        color: #ffffff;
        background: var(--color-sapphire-deep);
        box-shadow: 0 22px 54px rgba(10, 27, 45, 0.14);
    }

    .country-profile__fact--primary::before {
        background: var(--color-solar-gold);
    }

    .country-profile__fact--primary .country-profile__fact-main,
    .country-profile__fact--primary .country-profile__fact-unit,
    .country-profile__fact--primary dt {
        color: #ffffff;
    }

    .country-profile__fact--primary dt {
        opacity: 0.72;
    }

    .country-profile__fact--wide {
        background: #ffffff;
        border-left: 3px solid var(--color-solar-gold);
    }

    .country-profile__fact--wide::before {
        display: none;
    }

    .country-profile__fact--wide .country-profile__fact-main {
        font-size: clamp(2.2rem, 3.05vw, 3.45rem);
    }
}

/* Section rhythm: less beige, more alternation */
.country-profile__basis,
.country-profile__status-route,
.country-profile__process,
.country-profile__faq {
    position: relative;
}

.country-profile__basis {
    padding-top: clamp(64px, 7vw, 108px);
}

.country-profile__section-heading {
    max-width: 760px;
}

.country-profile__section-heading h2 {
    line-height: 0.98;
}

/* Program: editorial split panel, not beige box */
.country-profile__program-panel {
    position: relative;
    grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
    gap: clamp(34px, 4vw, 64px);
    padding: 0;
    overflow: hidden;
    color: var(--color-sapphire-deep);
    background: #ffffff;
    border: 1px solid rgba(10, 27, 45, 0.11);
}

.country-profile__program-copy {
    padding: clamp(34px, 4.2vw, 64px);
    background: var(--color-sapphire-deep);
}

.country-profile__program-copy > p {
    max-width: 660px;
    color: #ffffff;
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.58;
}

.country-profile__program-copy > p:last-child {
    color: #ffffff;
}

.country-profile__program-notes {
    align-self: stretch;
    padding: clamp(24px, 3vw, 44px);
    background: #ffffff;
}

.country-profile__program-notes > div {
    min-height: 128px;
    padding: clamp(18px, 2vw, 26px);
    background: #f7f8fa;
    border: 0;
}

.country-profile__program-notes > div:nth-child(1) {
    grid-column: 1 / -1;
    color: #ffffff;
    background: var(--color-sapphire-deep);
}

.country-profile__program-notes > div:nth-child(1) dt,
.country-profile__program-notes > div:nth-child(1) dd {
    color: #ffffff;
}

.country-profile__program-notes dt {
    color: rgba(10, 27, 45, 0.56);
}

.country-profile__program-notes dd {
    color: var(--color-sapphire-deep);
}

/* Status route: premium connected timeline */
.country-profile__status-route {
    padding-top: clamp(62px, 7vw, 110px);
}

.country-profile__status-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.6vw, 22px);
    background: transparent;
}

.country-profile__status-list::before {
    position: absolute;
    top: 42px;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(10, 27, 45, 0.16);
    content: '';
}

.country-profile__status-list li {
    position: relative;
    min-height: 168px;
    padding: 74px clamp(18px, 2vw, 28px) clamp(20px, 2.2vw, 30px);
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(10, 27, 45, 0.09);
}

.country-profile__status-list li::before {
    position: absolute;
    top: 32px;
    left: clamp(18px, 2vw, 28px);
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 2px solid var(--color-solar-gold);
    border-radius: 50%;
    content: '';
}

.country-profile__status-index {
    margin-bottom: 18px;
    color: var(--color-solar-gold);
}

.country-profile__status-list h3 {
    font-size: clamp(1.7rem, 2.1vw, 2.35rem);
}

/* Process: more dynamic 11-step route */
.country-profile__process {
    padding-top: clamp(62px, 7vw, 112px);
}

.country-profile__process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 1vw, 14px);
    border-top: 0;
}

.country-profile__process-list li {
    min-height: 118px;
    padding: clamp(18px, 2vw, 28px);
    background: #ffffff;
    border: 0;
    box-shadow: inset 0 0 0 1px rgba(10, 27, 45, 0.09);
}

.country-profile__process-list li:nth-child(4n + 1),
.country-profile__process-list li:nth-child(4n) {
    background: #f7f8fa;
}

.country-profile__process-number {
    color: var(--color-solar-gold);
}

.country-profile__process-list h3 {
    font-size: clamp(1.15rem, 1.6vw, 1.55rem);
}

.country-profile__process-list p {
    color: rgba(10, 27, 45, 0.76);
}

/* Details accordions: stronger, more usable */
.country-profile__faq {
    padding-top: clamp(60px, 7vw, 106px);
}

.country-profile__faq-list {
    display: grid;
    gap: 10px;
}

.country-profile__faq-item {
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(10, 27, 45, 0.1);
}

.country-profile__faq-item summary {
    min-height: 62px;
    padding: 20px 22px;
}

.country-profile__faq-item > div {
    padding: 0 22px 22px;
}

/* CTA: make it a confident close */
.country-profile__cta {
    margin-top: clamp(66px, 7vw, 112px);
    border: 0;
    box-shadow: 0 24px 70px rgba(10, 27, 45, 0.12);
}

/* Mobile */
@media (max-width: 1060px) {
    .country-profile__fact--primary {
        color: #ffffff;
        background: var(--color-sapphire-deep);
    }

    .country-profile__fact--primary .country-profile__fact-main,
    .country-profile__fact--primary .country-profile__fact-unit,
    .country-profile__fact--primary dt {
        color: #ffffff;
    }

    .country-profile__program-panel {
        grid-template-columns: 1fr;
    }

    .country-profile__program-copy {
        padding: 30px 24px;
    }

    .country-profile__program-notes {
        padding: 20px;
    }

    .country-profile__status-list {
        grid-template-columns: 1fr;
    }

    .country-profile__status-list::before {
        top: 0;
        bottom: 0;
        left: 10px;
        width: 1px;
        height: auto;
    }

    .country-profile__status-list li {
        padding: 24px 18px 24px 42px;
    }

    .country-profile__status-list li::before {
        top: 28px;
        left: 1px;
    }

    .country-profile__process-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .country-profile__title {
        font-size: clamp(2.65rem, 12vw, 3.8rem);
    }

    .country-profile__title > em {
        font-size: 0.78em;
    }

    .country-profile__program-copy {
        padding: 26px 16px;
    }

    .country-profile__program-notes {
        padding: 16px;
    }

    .country-profile__process-list li {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 18px 14px;
    }

    .country-profile__faq-item summary {
        padding: 18px 16px;
    }

    .country-profile__faq-item > div {
        padding: 0 16px 18px;
    }
}

/* ── Country page readability and alignment v1.0.42 ─────────────────────────
 * Белый фон, более широкие заголовки, единая сетка и контрастный блок
 * «Ключевые преимущества». Правила размещены последними намеренно.
 */
body.single-gr_destination,
body.single-gr_destination .site-main,
body.single-gr_destination .country-profile {
    background: #ffffff !important;
}

body.single-gr_destination .footer__contact {
    background: #ffffff;
}

body.single-gr_destination .country-profile {
    padding-top: clamp(34px, 3.6vw, 58px);
    padding-bottom: clamp(76px, 8vw, 118px);
}

body.single-gr_destination .country-profile > .container {
    max-width: 1360px;
}

body.single-gr_destination .country-profile__breadcrumbs {
    margin-bottom: clamp(42px, 4.8vw, 70px);
}

/* Hero */
body.single-gr_destination .country-profile__hero {
    min-height: 0;
    padding-bottom: clamp(68px, 7vw, 104px);
}

body.single-gr_destination .country-profile__title {
    max-width: 760px;
    font-size: clamp(3.55rem, 5.1vw, 5.35rem);
    letter-spacing: -0.022em;
    line-height: 0.98;
}

body.single-gr_destination .country-profile__title > em {
    max-width: 760px;
    margin-top: 0.14em;
    font-size: 0.58em;
    letter-spacing: -0.005em;
    line-height: 1.05;
}

body.single-gr_destination .country-profile__lead {
    max-width: 690px;
    margin-top: clamp(28px, 3vw, 42px);
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.62;
}

body.single-gr_destination .country-profile__hero-cta {
    margin-top: clamp(26px, 2.8vw, 40px);
}

/* Key advantages */
body.single-gr_destination .country-profile__hero-aside {
    align-self: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
}

body.single-gr_destination .country-profile__aside-label {
    margin: 0 0 18px;
    padding-bottom: 14px;
    color: var(--color-solar-gold);
    border-bottom: 1px solid var(--color-solar-gold);
    font-size: 11px;
    letter-spacing: 0.1em;
}

body.single-gr_destination .country-profile__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

body.single-gr_destination .country-profile__fact {
    min-height: 132px;
    padding: 22px 20px 18px;
    color: var(--color-sapphire-deep);
    background: #ffffff;
    border: 1px solid rgba(10, 27, 45, 0.13);
    box-shadow: none;
}

body.single-gr_destination .country-profile__fact::before {
    display: none;
}

body.single-gr_destination .country-profile__fact:first-child,
body.single-gr_destination .country-profile__fact--primary {
    grid-column: 1 / -1;
    min-height: 166px;
    color: #ffffff;
    background: var(--color-sapphire-deep) !important;
    border-color: var(--color-sapphire-deep);
}

body.single-gr_destination .country-profile__fact--wide {
    grid-column: 1 / -1;
    min-height: 118px;
    background: #ffffff;
    border-left: 3px solid var(--color-solar-gold);
}

body.single-gr_destination .country-profile__fact dd {
    margin: 0;
    color: inherit;
    font-size: 1rem;
    line-height: 1;
}

body.single-gr_destination .country-profile__fact-main {
    color: inherit;
    font-size: clamp(2.35rem, 3.3vw, 3.65rem);
    line-height: 0.95;
}

body.single-gr_destination .country-profile__fact-unit {
    margin-top: 8px;
    color: inherit;
    font-size: 14px;
    font-weight: var(--fw-semibold);
    line-height: 1.28;
}

body.single-gr_destination .country-profile__fact dt {
    margin-top: 20px;
    color: rgba(10, 27, 45, 0.62);
    font-size: 10px;
    line-height: 1.35;
}

body.single-gr_destination .country-profile__fact:first-child dt,
body.single-gr_destination .country-profile__fact:first-child .country-profile__fact-main,
body.single-gr_destination .country-profile__fact:first-child .country-profile__fact-unit,
body.single-gr_destination .country-profile__fact--primary dt,
body.single-gr_destination .country-profile__fact--primary .country-profile__fact-main,
body.single-gr_destination .country-profile__fact--primary .country-profile__fact-unit {
    color: #ffffff;
}

body.single-gr_destination .country-profile__fact:first-child dt,
body.single-gr_destination .country-profile__fact--primary dt {
    opacity: 0.72;
}

body.single-gr_destination .country-profile__fact--wide .country-profile__fact-main {
    font-size: clamp(2rem, 2.8vw, 3rem);
}

/* Section rhythm and headings */
body.single-gr_destination .country-profile__basis,
body.single-gr_destination .country-profile__status-route,
body.single-gr_destination .country-profile__process,
body.single-gr_destination .country-profile__faq {
    padding-top: clamp(82px, 8vw, 122px);
}

body.single-gr_destination .country-profile__section-heading {
    display: grid;
    grid-template-columns: 150px minmax(0, 850px);
    gap: clamp(32px, 4vw, 62px);
    max-width: 1080px;
    align-items: start;
}

body.single-gr_destination .country-profile__section-heading h2 {
    max-width: 850px;
    font-size: clamp(2.65rem, 4vw, 4.15rem);
    letter-spacing: -0.014em;
    line-height: 1.02;
}

body.single-gr_destination .country-profile__section-heading--basis h2 {
    grid-column: 2;
}

body.single-gr_destination .country-profile__section-heading--basis,
body.single-gr_destination .country-profile__section-heading--route,
body.single-gr_destination .country-profile__section-heading--process,
body.single-gr_destination .country-profile__section-heading--faq {
    margin-bottom: clamp(42px, 5vw, 70px);
}

/* Program */
body.single-gr_destination .country-profile__program-panel {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 0;
    min-height: 360px;
    background: #ffffff;
    border: 1px solid rgba(10, 27, 45, 0.12);
}

body.single-gr_destination .country-profile__program-copy {
    display: flex;
    align-items: center;
    max-width: none;
    padding: clamp(42px, 5vw, 72px);
    background: var(--color-sapphire-deep);
}

body.single-gr_destination .country-profile__program-copy > p,
body.single-gr_destination .country-profile__program-copy > p:last-child {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 1.18vw, 18px);
    line-height: 1.66;
}

body.single-gr_destination .country-profile__program-notes {
    align-content: stretch;
    padding: clamp(28px, 3.2vw, 46px);
    background: #ffffff;
}

body.single-gr_destination .country-profile__program-notes > div {
    min-height: 132px;
    padding: 22px 20px;
    background: #f7f8fa;
}

body.single-gr_destination .country-profile__program-notes > div:first-child {
    background: var(--color-sapphire-deep);
}

body.single-gr_destination .country-profile__program-notes dd {
    font-size: clamp(1.55rem, 2vw, 2.25rem);
    line-height: 1.04;
}

/* Advantages / routes cards */
body.single-gr_destination .country-profile__status-list {
    gap: 16px;
}

body.single-gr_destination .country-profile__status-list::before {
    display: none;
}

body.single-gr_destination .country-profile__status-list li {
    min-height: 230px;
    padding: 32px 28px 28px;
    background: #ffffff;
    border-top: 2px solid var(--color-solar-gold);
    box-shadow: inset 0 0 0 1px rgba(10, 27, 45, 0.1);
}

body.single-gr_destination .country-profile__status-list li::before {
    display: none;
}

body.single-gr_destination .country-profile__status-index {
    margin-bottom: 48px;
    font-size: 11px;
}

body.single-gr_destination .country-profile__status-list h3 {
    margin: 0 0 18px;
    font-size: clamp(1.75rem, 2.2vw, 2.45rem);
    line-height: 1.02;
}

body.single-gr_destination .country-profile__status-list p {
    margin: 0;
    color: rgba(10, 27, 45, 0.75);
    font-size: 14px;
    line-height: 1.55;
}

/* Process */
body.single-gr_destination .country-profile__process-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
    border: 0;
}

body.single-gr_destination .country-profile__process-list li {
    display: grid;
    grid-template-columns: 42px minmax(170px, 0.75fr) minmax(0, 1.25fr);
    gap: 16px 22px;
    min-height: 144px;
    align-items: start;
    padding: 28px 26px;
    background: #ffffff;
    border: 1px solid rgba(10, 27, 45, 0.1);
    box-shadow: none;
}

body.single-gr_destination .country-profile__process-list li:nth-child(4n + 1),
body.single-gr_destination .country-profile__process-list li:nth-child(4n) {
    background: #f7f8fa;
}

body.single-gr_destination .country-profile__process-number {
    padding-top: 3px;
    font-size: 11px;
}

body.single-gr_destination .country-profile__process-list h3 {
    font-size: clamp(1.35rem, 1.65vw, 1.72rem);
    line-height: 1.08;
}

body.single-gr_destination .country-profile__process-list p {
    max-width: 500px;
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ and CTA */
body.single-gr_destination .country-profile__faq-list {
    width: min(100%, 1080px);
    max-width: none;
    margin: 0 0 0 auto;
    gap: 10px;
    border-top: 0;
}

body.single-gr_destination .country-profile__faq-item summary {
    min-height: 70px;
    padding: 22px 24px;
    font-size: 15px;
}

body.single-gr_destination .country-profile__faq-item > div {
    max-width: 860px;
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.62;
}

body.single-gr_destination .country-profile__cta {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: center;
    margin-top: clamp(76px, 8vw, 120px);
    padding: clamp(48px, 5vw, 74px);
}

body.single-gr_destination .country-profile__cta h2 {
    max-width: 860px;
    font-size: clamp(2.55rem, 4vw, 4.2rem);
    line-height: 1.01;
}

/* Tablet */
@media (min-width: 1061px) {
    body.single-gr_destination .country-profile__hero {
        grid-template-columns: minmax(0, 1.18fr) minmax(430px, 0.82fr);
        gap: clamp(52px, 5.4vw, 82px);
        align-items: center;
    }
}

@media (max-width: 1060px) {
    body.single-gr_destination .country-profile__hero {
        gap: 46px;
    }

    body.single-gr_destination .country-profile__hero-aside {
        max-width: 760px;
        padding-top: 0;
        border-top: 0;
    }

    body.single-gr_destination .country-profile__program-panel {
        grid-template-columns: 1fr;
    }

    body.single-gr_destination .country-profile__process-list li {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    body.single-gr_destination .country-profile__process-list p {
        grid-column: 2;
    }
}

@media (max-width: 780px) {
    body.single-gr_destination .country-profile__section-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    body.single-gr_destination .country-profile__section-heading--basis h2 {
        grid-column: auto;
    }

    body.single-gr_destination .country-profile__status-list,
    body.single-gr_destination .country-profile__process-list {
        grid-template-columns: 1fr;
    }

    body.single-gr_destination .country-profile__cta {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 560px) {
    body.single-gr_destination .country-profile {
        padding-top: 26px;
    }

    body.single-gr_destination .country-profile__title {
        font-size: clamp(2.75rem, 12.8vw, 3.8rem);
        line-height: 0.98;
    }

    body.single-gr_destination .country-profile__title > em {
        font-size: 0.72em;
        line-height: 1.08;
    }

    body.single-gr_destination .country-profile__facts {
        grid-template-columns: 1fr;
    }

    body.single-gr_destination .country-profile__fact,
    body.single-gr_destination .country-profile__fact:first-child,
    body.single-gr_destination .country-profile__fact--primary,
    body.single-gr_destination .country-profile__fact--wide {
        grid-column: auto;
        min-height: 112px;
        padding: 18px 16px 16px;
    }

    body.single-gr_destination .country-profile__fact-main {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    body.single-gr_destination .country-profile__program-panel {
        margin-right: 0;
        margin-left: 0;
    }

    body.single-gr_destination .country-profile__program-copy,
    body.single-gr_destination .country-profile__program-notes {
        padding: 26px 16px;
    }

    body.single-gr_destination .country-profile__program-notes {
        grid-template-columns: 1fr;
    }

    body.single-gr_destination .country-profile__status-list li {
        min-height: 0;
        padding: 24px 18px;
    }

    body.single-gr_destination .country-profile__status-index {
        margin-bottom: 28px;
    }

    body.single-gr_destination .country-profile__process-list li {
        grid-template-columns: 34px minmax(0, 1fr);
        min-height: 0;
        padding: 20px 16px;
    }

    body.single-gr_destination .country-profile__faq-item summary {
        padding: 19px 16px;
    }

    body.single-gr_destination .country-profile__faq-item > div {
        padding: 0 16px 20px;
    }
}

/* ── Hero advantages dashboard v1.0.43 ──────────────────────────────────────
 * Компактная премиальная сетка: одна ключевая карточка, два коротких
 * параметра и отдельная горизонтальная строка для семейного маршрута.
 * Правила размещены последними, чтобы исключить конфликты старых bento-версий.
 */
@media (min-width: 1061px) {
    body.single-gr_destination .country-profile__hero {
        grid-template-columns: minmax(0, 1.16fr) minmax(470px, 0.84fr);
        gap: clamp(52px, 5.2vw, 82px);
        align-items: center;
    }

    body.single-gr_destination .country-profile__hero-aside {
        align-self: center;
        width: 100%;
        max-width: 560px;
        margin: 0 0 0 auto;
        padding: 0;
    }

    body.single-gr_destination .country-profile__aside-label {
        display: flex;
        gap: 14px;
        align-items: center;
        margin: 0 0 14px;
        padding: 0;
        border: 0;
        white-space: nowrap;
    }

    body.single-gr_destination .country-profile__aside-label::after {
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(10, 27, 45, 0.16);
        content: '';
    }

    body.single-gr_destination .country-profile__facts {
        display: grid;
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
        grid-template-rows: repeat(2, minmax(106px, 1fr)) auto;
        grid-auto-flow: row;
        gap: 10px;
        align-items: stretch;
        margin: 0;
    }

    body.single-gr_destination .country-profile__fact,
    body.single-gr_destination .country-profile__fact:nth-child(1),
    body.single-gr_destination .country-profile__fact:nth-child(2),
    body.single-gr_destination .country-profile__fact:nth-child(3),
    body.single-gr_destination .country-profile__fact:nth-child(4),
    body.single-gr_destination .country-profile__fact--primary,
    body.single-gr_destination .country-profile__fact--wide {
        order: initial !important;
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 0;
        padding: 18px 18px 16px;
        color: var(--color-sapphire-deep);
        background: #ffffff !important;
        border: 1px solid rgba(10, 27, 45, 0.13);
        box-shadow: none;
    }

    body.single-gr_destination .country-profile__fact:first-child,
    body.single-gr_destination .country-profile__fact--primary {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        min-height: 222px;
        padding: 26px 28px 24px;
        color: #ffffff;
        background: var(--color-sapphire-deep) !important;
        border-color: var(--color-sapphire-deep);
    }

    body.single-gr_destination .country-profile__fact:nth-child(2):not(.country-profile__fact--primary):not(.country-profile__fact--wide) {
        grid-column: 2 !important;
        grid-row: 1 !important;
        background: #f7f8fa !important;
    }

    body.single-gr_destination .country-profile__fact:nth-child(3):not(.country-profile__fact--primary):not(.country-profile__fact--wide) {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    body.single-gr_destination .country-profile__fact--wide {
        display: flex;
        grid-column: 1 / -1 !important;
        grid-row: 3 !important;
        min-height: 82px;
        flex-direction: row;
        gap: 24px;
        align-items: center;
        padding: 18px 20px;
        border-left: 2px solid var(--color-solar-gold);
    }

    body.single-gr_destination .country-profile__fact dd {
        min-width: 0;
    }

    body.single-gr_destination .country-profile__fact-main {
        font-size: clamp(2.15rem, 2.6vw, 3rem);
        line-height: 0.94;
    }

    body.single-gr_destination .country-profile__fact:first-child .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--primary .country-profile__fact-main {
        font-size: clamp(3.6rem, 4.25vw, 4.75rem);
    }

    body.single-gr_destination .country-profile__fact-unit {
        margin-top: 6px;
        font-size: 13px;
        line-height: 1.2;
    }

    body.single-gr_destination .country-profile__fact dt {
        margin-top: 12px;
        font-size: 9.5px;
        letter-spacing: 0.075em;
        line-height: 1.28;
    }

    body.single-gr_destination .country-profile__fact--wide dd {
        flex: 1 1 auto;
    }

    body.single-gr_destination .country-profile__fact--wide dt {
        flex: 0 0 auto;
        max-width: 190px;
        margin: 0;
        text-align: right;
    }

    body.single-gr_destination .country-profile__fact--wide .country-profile__fact-main {
        font-size: clamp(2rem, 2.35vw, 2.75rem);
    }
}

@media (min-width: 1061px) and (max-width: 1240px) {
    body.single-gr_destination .country-profile__hero {
        grid-template-columns: minmax(0, 1fr) minmax(430px, 0.88fr);
        gap: 42px;
    }

    body.single-gr_destination .country-profile__hero-aside {
        max-width: 500px;
    }

    body.single-gr_destination .country-profile__facts {
        grid-template-rows: repeat(2, minmax(98px, 1fr)) auto;
    }

    body.single-gr_destination .country-profile__fact:first-child,
    body.single-gr_destination .country-profile__fact--primary {
        min-height: 206px;
        padding: 24px;
    }
}

@media (max-width: 1060px) {
    body.single-gr_destination .country-profile__aside-label {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-bottom: 14px;
        padding: 0;
        border: 0;
    }

    body.single-gr_destination .country-profile__aside-label::after {
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(10, 27, 45, 0.16);
        content: '';
    }

    body.single-gr_destination .country-profile__facts {
        gap: 9px;
    }

    body.single-gr_destination .country-profile__fact,
    body.single-gr_destination .country-profile__fact:nth-child(2),
    body.single-gr_destination .country-profile__fact:nth-child(3) {
        order: initial !important;
        grid-column: auto !important;
        min-height: 108px;
        padding: 17px 15px 14px;
        background: #ffffff !important;
    }

    body.single-gr_destination .country-profile__fact:first-child,
    body.single-gr_destination .country-profile__fact--primary {
        grid-column: 1 / -1 !important;
        min-height: 128px;
        color: #ffffff;
        background: var(--color-sapphire-deep) !important;
    }

    body.single-gr_destination .country-profile__fact--wide {
        display: flex;
        grid-column: 1 / -1 !important;
        min-height: 76px;
        flex-direction: row;
        gap: 18px;
        align-items: center;
        padding: 16px;
        background: #ffffff !important;
        border-left: 2px solid var(--color-solar-gold);
    }

    body.single-gr_destination .country-profile__fact--wide dt {
        margin: 0;
        text-align: right;
    }
}

@media (max-width: 560px) {
    body.single-gr_destination .country-profile__aside-label {
        white-space: normal;
    }

    body.single-gr_destination .country-profile__fact,
    body.single-gr_destination .country-profile__fact:first-child,
    body.single-gr_destination .country-profile__fact--primary,
    body.single-gr_destination .country-profile__fact--wide {
        grid-column: auto !important;
        min-height: 96px;
    }

    body.single-gr_destination .country-profile__fact--wide {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    body.single-gr_destination .country-profile__fact--wide dt {
        margin-top: 8px;
        text-align: left;
    }
}

/* ── Hero advantages: stable semantic 2×2 grid v1.0.44 ──────────────────────
 * Карточки размещаются по смысловым классам, а не по порядку полей в ACF.
 * Это исключает наложения и сохраняет ровную компактную композицию.
 */
body.single-gr_destination .country-profile__hero-aside {
    border-left: 0;
}

body.single-gr_destination .country-profile__facts {
    isolation: isolate;
}

body.single-gr_destination .country-profile__fact,
body.single-gr_destination .country-profile__fact:nth-child(1),
body.single-gr_destination .country-profile__fact:nth-child(2),
body.single-gr_destination .country-profile__fact:nth-child(3),
body.single-gr_destination .country-profile__fact:nth-child(4),
body.single-gr_destination .country-profile__fact--primary,
body.single-gr_destination .country-profile__fact--processing,
body.single-gr_destination .country-profile__fact--visits,
body.single-gr_destination .country-profile__fact--family,
body.single-gr_destination .country-profile__fact--wide,
body.single-gr_destination .country-profile__fact--secondary {
    position: relative;
    order: initial !important;
    grid-column: auto !important;
    grid-row: auto !important;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    color: var(--color-sapphire-deep);
    background: #ffffff !important;
    border: 1px solid rgba(10, 27, 45, 0.14);
    box-shadow: none;
}

body.single-gr_destination .country-profile__fact::before,
body.single-gr_destination .country-profile__fact:nth-child(1)::before,
body.single-gr_destination .country-profile__fact:nth-child(2)::before,
body.single-gr_destination .country-profile__fact:nth-child(3)::before,
body.single-gr_destination .country-profile__fact:nth-child(4)::before {
    display: none !important;
    content: none !important;
}

body.single-gr_destination .country-profile__fact dt,
body.single-gr_destination .country-profile__fact dd {
    position: relative;
    z-index: 1;
}

body.single-gr_destination .country-profile__fact dd {
    display: block;
    margin: 0;
}

body.single-gr_destination .country-profile__fact dt {
    display: block;
    margin: 14px 0 0;
    color: #697582;
    font-size: 9px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.085em;
    line-height: 1.3;
    text-align: left;
    text-transform: uppercase;
}

body.single-gr_destination .country-profile__fact-main {
    display: block;
    color: inherit;
    font-family: var(--font-heading);
    font-weight: var(--fw-regular);
    letter-spacing: -0.025em;
    line-height: 0.94;
}

body.single-gr_destination .country-profile__fact-unit {
    display: block;
    margin-top: 6px;
    color: inherit;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: var(--fw-semibold);
    letter-spacing: 0;
    line-height: 1.2;
}

body.single-gr_destination .country-profile__fact--primary {
    color: #ffffff;
    background: var(--color-sapphire-deep) !important;
    border-color: var(--color-sapphire-deep);
}

body.single-gr_destination .country-profile__fact--primary dt {
    color: rgba(255, 255, 255, 0.62);
}

body.single-gr_destination .country-profile__fact--processing {
    background: #f7f6f3 !important;
}

body.single-gr_destination .country-profile__fact--family {
    border-left: 2px solid var(--color-solar-gold);
}

@media (min-width: 1061px) {
    body.single-gr_destination .country-profile__hero-aside {
        align-self: center;
        width: 100%;
        max-width: 540px;
        margin-left: auto;
        padding: 0;
        background: transparent;
        border: 0;
    }

    body.single-gr_destination .country-profile__aside-label {
        display: flex;
        gap: 14px;
        align-items: center;
        margin: 0 0 14px;
        padding: 0;
        color: var(--color-solar-gold);
        border: 0;
        white-space: nowrap;
    }

    body.single-gr_destination .country-profile__aside-label::after {
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(10, 27, 45, 0.18);
        content: '';
    }

    body.single-gr_destination .country-profile__facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, 148px);
        grid-auto-flow: row;
        gap: 10px;
        align-items: stretch;
        margin: 0;
    }

    body.single-gr_destination .country-profile__fact,
    body.single-gr_destination .country-profile__fact:nth-child(1),
    body.single-gr_destination .country-profile__fact:nth-child(2),
    body.single-gr_destination .country-profile__fact:nth-child(3),
    body.single-gr_destination .country-profile__fact:nth-child(4),
    body.single-gr_destination .country-profile__fact--primary,
    body.single-gr_destination .country-profile__fact--processing,
    body.single-gr_destination .country-profile__fact--visits,
    body.single-gr_destination .country-profile__fact--family,
    body.single-gr_destination .country-profile__fact--wide,
    body.single-gr_destination .country-profile__fact--secondary {
        display: flex;
        min-height: 148px;
        flex-direction: column;
        justify-content: space-between;
        padding: 21px 22px 18px;
    }

    body.single-gr_destination .country-profile__fact--primary {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    body.single-gr_destination .country-profile__fact--processing {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }

    body.single-gr_destination .country-profile__fact--visits {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    body.single-gr_destination .country-profile__fact--family,
    body.single-gr_destination .country-profile__fact--wide {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    body.single-gr_destination .country-profile__fact-main {
        font-size: clamp(2.35rem, 2.7vw, 3.15rem);
    }

    body.single-gr_destination .country-profile__fact--primary .country-profile__fact-main {
        font-size: clamp(2.8rem, 3.35vw, 3.85rem);
    }

    body.single-gr_destination .country-profile__fact--family .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--wide .country-profile__fact-main {
        font-size: clamp(2rem, 2.35vw, 2.65rem);
    }
}

@media (min-width: 1061px) and (max-width: 1240px) {
    body.single-gr_destination .country-profile__hero-aside {
        max-width: 500px;
    }

    body.single-gr_destination .country-profile__facts {
        grid-template-rows: repeat(2, 138px);
    }

    body.single-gr_destination .country-profile__fact,
    body.single-gr_destination .country-profile__fact:nth-child(1),
    body.single-gr_destination .country-profile__fact:nth-child(2),
    body.single-gr_destination .country-profile__fact:nth-child(3),
    body.single-gr_destination .country-profile__fact:nth-child(4),
    body.single-gr_destination .country-profile__fact--primary,
    body.single-gr_destination .country-profile__fact--processing,
    body.single-gr_destination .country-profile__fact--visits,
    body.single-gr_destination .country-profile__fact--family,
    body.single-gr_destination .country-profile__fact--wide {
        min-height: 138px;
        padding: 19px 20px 16px;
    }
}

@media (max-width: 1060px) {
    body.single-gr_destination .country-profile__hero-aside {
        max-width: none;
        padding: 28px 0 0;
        background: transparent;
        border: 0;
    }

    body.single-gr_destination .country-profile__facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin: 0;
    }

    body.single-gr_destination .country-profile__fact,
    body.single-gr_destination .country-profile__fact:nth-child(1),
    body.single-gr_destination .country-profile__fact:nth-child(2),
    body.single-gr_destination .country-profile__fact:nth-child(3),
    body.single-gr_destination .country-profile__fact:nth-child(4),
    body.single-gr_destination .country-profile__fact--primary,
    body.single-gr_destination .country-profile__fact--processing,
    body.single-gr_destination .country-profile__fact--visits,
    body.single-gr_destination .country-profile__fact--family,
    body.single-gr_destination .country-profile__fact--wide {
        display: flex;
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 124px;
        flex-direction: column;
        justify-content: space-between;
        padding: 17px 16px 15px;
    }

    body.single-gr_destination .country-profile__fact-main {
        font-size: clamp(2rem, 7.5vw, 2.8rem);
    }

    body.single-gr_destination .country-profile__fact--family .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--wide .country-profile__fact-main {
        font-size: clamp(1.75rem, 6.8vw, 2.35rem);
    }
}

@media (max-width: 420px) {
    body.single-gr_destination .country-profile__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    body.single-gr_destination .country-profile__fact,
    body.single-gr_destination .country-profile__fact:nth-child(1),
    body.single-gr_destination .country-profile__fact:nth-child(2),
    body.single-gr_destination .country-profile__fact:nth-child(3),
    body.single-gr_destination .country-profile__fact:nth-child(4),
    body.single-gr_destination .country-profile__fact--primary,
    body.single-gr_destination .country-profile__fact--processing,
    body.single-gr_destination .country-profile__fact--visits,
    body.single-gr_destination .country-profile__fact--family,
    body.single-gr_destination .country-profile__fact--wide {
        min-height: 112px;
        padding: 14px 12px 12px;
    }

    body.single-gr_destination .country-profile__fact-main {
        font-size: clamp(1.65rem, 9vw, 2.25rem);
    }

    body.single-gr_destination .country-profile__fact-unit {
        font-size: 11px;
    }

    body.single-gr_destination .country-profile__fact dt {
        margin-top: 10px;
        font-size: 8px;
        letter-spacing: 0.065em;
    }
}

/* ─── v1.0.45 • Hero facts: all cards dark blue, white text, larger labels ─── */
body.single-gr_destination .country-profile__facts {
    gap: 12px;
}

body.single-gr_destination .country-profile__fact,
body.single-gr_destination .country-profile__fact:nth-child(1),
body.single-gr_destination .country-profile__fact:nth-child(2),
body.single-gr_destination .country-profile__fact:nth-child(3),
body.single-gr_destination .country-profile__fact:nth-child(4),
body.single-gr_destination .country-profile__fact--primary,
body.single-gr_destination .country-profile__fact--processing,
body.single-gr_destination .country-profile__fact--visits,
body.single-gr_destination .country-profile__fact--family,
body.single-gr_destination .country-profile__fact--wide,
body.single-gr_destination .country-profile__fact--secondary {
    background: var(--color-sapphire-deep) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    box-shadow: none !important;
}

body.single-gr_destination .country-profile__fact,
body.single-gr_destination .country-profile__fact--primary,
body.single-gr_destination .country-profile__fact--processing,
body.single-gr_destination .country-profile__fact--visits,
body.single-gr_destination .country-profile__fact--family,
body.single-gr_destination .country-profile__fact--wide,
body.single-gr_destination .country-profile__fact--secondary {
    color: var(--color-white) !important;
}

body.single-gr_destination .country-profile__fact dt,
body.single-gr_destination .country-profile__fact dd,
body.single-gr_destination .country-profile__fact-main,
body.single-gr_destination .country-profile__fact-unit,
body.single-gr_destination .country-profile__fact--primary dt,
body.single-gr_destination .country-profile__fact--primary .country-profile__fact-main,
body.single-gr_destination .country-profile__fact--primary .country-profile__fact-unit {
    color: var(--color-white) !important;
}

body.single-gr_destination .country-profile__fact dt {
    margin-top: 14px !important;
    font-size: clamp(16px, 1.2vw, 20px) !important;
    font-weight: var(--fw-bold) !important;
    letter-spacing: 0.02em !important;
    line-height: 1.18 !important;
    opacity: 0.96;
}

body.single-gr_destination .country-profile__fact-main {
    font-size: clamp(2.65rem, 3vw, 3.8rem) !important;
    line-height: 0.92 !important;
}

body.single-gr_destination .country-profile__fact-unit {
    margin-top: 8px;
    font-size: clamp(1rem, 1.05vw, 1.18rem) !important;
    font-weight: var(--fw-bold);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

body.single-gr_destination .country-profile__fact--primary {
    order: 1;
}

body.single-gr_destination .country-profile__fact--processing {
    order: 2;
}

body.single-gr_destination .country-profile__fact--visits {
    order: 3;
}

body.single-gr_destination .country-profile__fact--family,
body.single-gr_destination .country-profile__fact--wide {
    order: 4;
}

body.single-gr_destination .country-profile__fact--secondary {
    order: 5;
}

body.single-gr_destination .country-profile__fact--family .country-profile__fact-main,
body.single-gr_destination .country-profile__fact--wide .country-profile__fact-main {
    font-size: clamp(2.15rem, 2.2vw, 2.8rem) !important;
    line-height: 0.95 !important;
}

@media (max-width: 1060px) {
    body.single-gr_destination .country-profile__facts {
        gap: 10px;
    }

    body.single-gr_destination .country-profile__fact dt {
        margin-top: 12px !important;
        font-size: clamp(14px, 3vw, 17px) !important;
    }

    body.single-gr_destination .country-profile__fact-main {
        font-size: clamp(2rem, 7.2vw, 2.7rem) !important;
    }

    body.single-gr_destination .country-profile__fact-unit {
        font-size: 14px !important;
    }

    body.single-gr_destination .country-profile__fact--family .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--wide .country-profile__fact-main {
        font-size: clamp(1.8rem, 6vw, 2.25rem) !important;
    }
}

@media (max-width: 420px) {
    body.single-gr_destination .country-profile__fact dt {
        margin-top: 10px !important;
        font-size: 12px !important;
        letter-spacing: 0.02em !important;
    }

    body.single-gr_destination .country-profile__fact-main {
        font-size: clamp(1.7rem, 8vw, 2.2rem) !important;
    }

    body.single-gr_destination .country-profile__fact-unit {
        font-size: 12px !important;
    }
}

/* ─── v1.0.46 • Center alignment inside hero fact cards ─── */
body.single-gr_destination .country-profile__fact,
body.single-gr_destination .country-profile__fact:nth-child(1),
body.single-gr_destination .country-profile__fact:nth-child(2),
body.single-gr_destination .country-profile__fact:nth-child(3),
body.single-gr_destination .country-profile__fact:nth-child(4),
body.single-gr_destination .country-profile__fact--primary,
body.single-gr_destination .country-profile__fact--processing,
body.single-gr_destination .country-profile__fact--visits,
body.single-gr_destination .country-profile__fact--family,
body.single-gr_destination .country-profile__fact--wide,
body.single-gr_destination .country-profile__fact--secondary {
    align-items: center !important;
    text-align: center !important;
}

body.single-gr_destination .country-profile__fact dd {
    width: 100%;
    text-align: center !important;
}

body.single-gr_destination .country-profile__fact dt,
body.single-gr_destination .country-profile__fact-main,
body.single-gr_destination .country-profile__fact-unit {
    display: block;
    width: 100%;
    text-align: center !important;
}

body.single-gr_destination .country-profile__fact dt {
    margin-top: 16px !important;
}

body.single-gr_destination .country-profile__fact--family .country-profile__fact-main,
body.single-gr_destination .country-profile__fact--wide .country-profile__fact-main {
    text-align: center !important;
}

/* ─── v1.0.47 • Unified fact-card system for every destination page ──────── */
body.single-gr_destination .country-profile__facts {
    grid-auto-rows: minmax(160px, 1fr) !important;
    gap: 12px !important;
}

body.single-gr_destination .country-profile__fact,
body.single-gr_destination .country-profile__fact:nth-child(1),
body.single-gr_destination .country-profile__fact:nth-child(2),
body.single-gr_destination .country-profile__fact:nth-child(3),
body.single-gr_destination .country-profile__fact:nth-child(4),
body.single-gr_destination .country-profile__fact--primary,
body.single-gr_destination .country-profile__fact--processing,
body.single-gr_destination .country-profile__fact--visits,
body.single-gr_destination .country-profile__fact--family,
body.single-gr_destination .country-profile__fact--wide,
body.single-gr_destination .country-profile__fact--secondary {
    display: flex !important;
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 160px !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 22px 20px !important;
    color: var(--color-white) !important;
    background: var(--color-sapphire-deep) !important;
    border: 0 !important;
    box-shadow: none !important;
    text-align: center !important;
}

body.single-gr_destination .country-profile__fact::before,
body.single-gr_destination .country-profile__fact::after {
    display: none !important;
}

body.single-gr_destination .country-profile__fact dd {
    display: flex !important;
    width: 100% !important;
    min-height: 72px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    color: var(--color-white) !important;
    text-align: center !important;
}

body.single-gr_destination .country-profile__fact-main,
body.single-gr_destination .country-profile__fact--primary .country-profile__fact-main,
body.single-gr_destination .country-profile__fact--family .country-profile__fact-main,
body.single-gr_destination .country-profile__fact--wide .country-profile__fact-main {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    color: var(--color-white) !important;
    font-family: var(--font-heading) !important;
    font-size: clamp(2.45rem, 2.75vw, 3.35rem) !important;
    font-weight: var(--fw-regular) !important;
    letter-spacing: -0.02em !important;
    line-height: 0.96 !important;
    text-align: center !important;
    text-wrap: balance;
}

body.single-gr_destination .country-profile__fact-unit,
body.single-gr_destination .country-profile__fact--primary .country-profile__fact-unit {
    display: block !important;
    width: 100% !important;
    margin: 8px 0 0 !important;
    color: var(--color-white) !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: var(--fw-bold) !important;
    letter-spacing: 0.015em !important;
    line-height: 1.15 !important;
    text-align: center !important;
}

body.single-gr_destination .country-profile__fact dt,
body.single-gr_destination .country-profile__fact--primary dt,
body.single-gr_destination .country-profile__fact--family dt,
body.single-gr_destination .country-profile__fact--wide dt {
    display: block !important;
    order: 2 !important;
    width: 100% !important;
    min-height: 42px;
    margin: 16px 0 0 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-family: var(--font-body) !important;
    font-size: 18px !important;
    font-weight: var(--fw-bold) !important;
    letter-spacing: 0.015em !important;
    line-height: 1.15 !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

@media (min-width: 1061px) and (max-width: 1240px) {
    body.single-gr_destination .country-profile__facts {
        grid-auto-rows: minmax(146px, 1fr) !important;
    }

    body.single-gr_destination .country-profile__fact,
    body.single-gr_destination .country-profile__fact:nth-child(1),
    body.single-gr_destination .country-profile__fact:nth-child(2),
    body.single-gr_destination .country-profile__fact:nth-child(3),
    body.single-gr_destination .country-profile__fact:nth-child(4),
    body.single-gr_destination .country-profile__fact--primary,
    body.single-gr_destination .country-profile__fact--processing,
    body.single-gr_destination .country-profile__fact--visits,
    body.single-gr_destination .country-profile__fact--family,
    body.single-gr_destination .country-profile__fact--wide,
    body.single-gr_destination .country-profile__fact--secondary {
        min-height: 146px !important;
        padding: 19px 18px !important;
    }

    body.single-gr_destination .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--primary .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--family .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--wide .country-profile__fact-main {
        font-size: clamp(2.15rem, 2.65vw, 2.9rem) !important;
    }

    body.single-gr_destination .country-profile__fact dt {
        font-size: 16px !important;
    }
}

@media (max-width: 1060px) {
    body.single-gr_destination .country-profile__facts {
        grid-auto-rows: minmax(132px, 1fr) !important;
        gap: 9px !important;
    }

    body.single-gr_destination .country-profile__fact,
    body.single-gr_destination .country-profile__fact:nth-child(1),
    body.single-gr_destination .country-profile__fact:nth-child(2),
    body.single-gr_destination .country-profile__fact:nth-child(3),
    body.single-gr_destination .country-profile__fact:nth-child(4),
    body.single-gr_destination .country-profile__fact--primary,
    body.single-gr_destination .country-profile__fact--processing,
    body.single-gr_destination .country-profile__fact--visits,
    body.single-gr_destination .country-profile__fact--family,
    body.single-gr_destination .country-profile__fact--wide,
    body.single-gr_destination .country-profile__fact--secondary {
        min-height: 132px !important;
        padding: 16px 14px !important;
    }

    body.single-gr_destination .country-profile__fact dd {
        min-height: 60px;
    }

    body.single-gr_destination .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--primary .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--family .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--wide .country-profile__fact-main {
        font-size: clamp(1.9rem, 6vw, 2.55rem) !important;
    }

    body.single-gr_destination .country-profile__fact-unit {
        font-size: 13px !important;
    }

    body.single-gr_destination .country-profile__fact dt,
    body.single-gr_destination .country-profile__fact--primary dt,
    body.single-gr_destination .country-profile__fact--family dt,
    body.single-gr_destination .country-profile__fact--wide dt {
        min-height: 34px;
        margin-top: 11px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 420px) {
    body.single-gr_destination .country-profile__facts {
        grid-auto-rows: minmax(116px, 1fr) !important;
        gap: 7px !important;
    }

    body.single-gr_destination .country-profile__fact,
    body.single-gr_destination .country-profile__fact:nth-child(1),
    body.single-gr_destination .country-profile__fact:nth-child(2),
    body.single-gr_destination .country-profile__fact:nth-child(3),
    body.single-gr_destination .country-profile__fact:nth-child(4),
    body.single-gr_destination .country-profile__fact--primary,
    body.single-gr_destination .country-profile__fact--processing,
    body.single-gr_destination .country-profile__fact--visits,
    body.single-gr_destination .country-profile__fact--family,
    body.single-gr_destination .country-profile__fact--wide,
    body.single-gr_destination .country-profile__fact--secondary {
        min-height: 116px !important;
        padding: 13px 10px !important;
    }

    body.single-gr_destination .country-profile__fact dd {
        min-height: 52px;
    }

    body.single-gr_destination .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--primary .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--family .country-profile__fact-main,
    body.single-gr_destination .country-profile__fact--wide .country-profile__fact-main {
        font-size: clamp(1.55rem, 7.8vw, 2.05rem) !important;
    }

    body.single-gr_destination .country-profile__fact-unit {
        margin-top: 5px !important;
        font-size: 11px !important;
    }

    body.single-gr_destination .country-profile__fact dt,
    body.single-gr_destination .country-profile__fact--primary dt,
    body.single-gr_destination .country-profile__fact--family dt,
    body.single-gr_destination .country-profile__fact--wide dt {
        min-height: 30px;
        margin-top: 8px !important;
        font-size: 11px !important;
    }
}

/* ─── v1.0.48 • Regular weight in all hero benefit cards ──────────────── */
body.single-gr_destination .country-profile__fact-unit,
body.single-gr_destination .country-profile__fact--primary .country-profile__fact-unit,
body.single-gr_destination .country-profile__fact dt,
body.single-gr_destination .country-profile__fact--primary dt,
body.single-gr_destination .country-profile__fact--processing dt,
body.single-gr_destination .country-profile__fact--visits dt,
body.single-gr_destination .country-profile__fact--family dt,
body.single-gr_destination .country-profile__fact--wide dt,
body.single-gr_destination .country-profile__fact--secondary dt {
    font-weight: var(--fw-regular) !important;
}
