.yo-page--pillar .yo-hero,
.yo-page--continent .yo-hero {
    background:
        linear-gradient(180deg, rgba(9, 31, 31, .32), rgba(9, 31, 31, .82)),
        var(--yo-hero-bg, linear-gradient(135deg, #123f3f 0%, #0b2d2d 100%));
}

.yo-page--pillar .yo-pillar-spoke-grid-h {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
}

@media (max-width: 900px) {
}

@media (max-width: 900px) {
}

/* ============================================================
   YO-HOTEL-CARD — Pillar sayfası otel kartları
   Motor tarafından üretilen kartların stilleri
   ============================================================ */

.yo-hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 28px 0;
}

.yo-hotel-card {
    border: 1px solid #e0e7e7;
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(18, 63, 63, .08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.yo-hotel-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A5252;
    line-height: 1.3;
}

.yo-hotel-card__note {
    font-size: .9rem;
    color: #444;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.yo-hotel-card__btn {
    display: inline-block;
    padding: 10px 18px;
    background: #1A5252;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
    text-align: center;
    transition: background .2s;
}

.yo-hotel-card__btn:hover {
    background: #C4622D;
    color: #fff;
}

.yo-affiliate-note {
    font-size: .75rem;
    color: #888;
    margin-top: 4px;
    text-align: right;
}

/* ============================================================
   YO2-TOC — İçindekiler Tablosu
   yo-toc sınıfını destekler
   ============================================================ */

.yo-toc {
    background: #f8fafa;
    border: 1px solid #d4e0e0;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0 32px;
}

.yo-toc__title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #1A5252;
    margin: 0 0 14px;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.yo-toc__title::-webkit-details-marker {
    display: none;
}

.yo-toc__title::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(18, 63, 63, .72);
    border-bottom: 2px solid rgba(18, 63, 63, .72);
    transform: rotate(225deg) translateY(-1px);
    transition: transform .2s ease;
    flex: 0 0 auto;
}

.yo-toc:not([open]) .yo-toc__title {
    margin-bottom: 0;
}

.yo-toc:not([open]) .yo-toc__title::after {
    transform: rotate(45deg) translateY(-2px);
}

.yo-toc__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.yo-toc__item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.yo-toc__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #C4622D;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.yo-toc__link {
    color: #1A5252;
    text-decoration: none;
    font-size: .88rem;
    line-height: 1.4;
}

.yo-toc__link:hover {
    color: #C4622D;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .yo-toc__list {
        grid-template-columns: 1fr;
    }

    .yo-hotel-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   YO-PILLAR-PAGE — Template page-pillar.php ana stilleri
   ============================================================ */

.yo-pillar-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.yo-pillar-header {
    margin-bottom: 32px;
}

.yo-pillar-hero-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.yo-pillar-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: #1A5252;
    line-height: 1.25;
    margin: 0;
}

.yo-pillar-content h2 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #1A5252;
    margin: 40px 0 14px;
    padding-top: 8px;
    border-top: 2px solid #e0e7e7;
}

.yo-pillar-content p {
    line-height: 1.7;
    color: #333;
    margin: 0 0 18px;
}

/* Yazar kutusu */
.yo-author-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: #f0f7f7;
    border-radius: 14px;
    margin-top: 48px;
    border-left: 4px solid #1A5252;
}

.yo-author-box__name {
    font-weight: 700;
    color: #1A5252;
}

.yo-author-box__bio {
    font-size: .9rem;
    color: #555;
    margin: 4px 0 0;
}

@media (max-width: 640px) {
    .yo-pillar-page {
        padding: 0 16px 48px;
    }

    .yo-pillar-hero-img {
        height: 200px;
        border-radius: 10px;
    }
}

/* ============================================================
   DESTINATION PILLAR CATEGORY — template-pillar-destinasyon.php
   ============================================================ */

.yo-pillar-destinasyon {
    --yo-pd-teal: #123f3f;
    --yo-pd-teal-soft: #e8f2ef;
    --yo-pd-terra: #c4622d;
    --yo-pd-ink: #17212b;
    --yo-pd-muted: #61707f;
    --yo-pd-line: rgba(18, 63, 63, .12);
    background: #fff;
    color: var(--yo-pd-ink);
}

.yo-pillar-destinasyon .yo-hero .yo-hero__picture .yo-hero__image {
    object-position: center 62%;
    filter: blur(4px) var(--yo-hero-filter, contrast(1.2) brightness(1.04) saturate(.78) sepia(.04));
}

.yo-pd-container {
    width: min(980px, calc(100% - 32px));
    margin-inline: auto;
}

.yo-pd-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(590px, 76svh, 780px);
    display: grid;
    align-items: center;
    padding: calc(var(--wp-admin--admin-bar--height, 0px) + 96px) 0 116px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(6, 24, 24, .16), rgba(6, 24, 24, .76)),
        radial-gradient(circle at 50% 42%, rgba(0, 0, 0, .06), rgba(0, 0, 0, .38) 58%, rgba(0, 0, 0, .58)),
        linear-gradient(135deg, #123f3f, #0b2d2d);
}

.yo-pd-hero::before {
    content: "";
    position: absolute;
    inset: -14px;
    z-index: -2;
    background-image: var(--yo-pd-hero-image);
    background-size: cover;
    background-position: center;
    filter: saturate(.92) contrast(1.04);
    transform: scale(1.02);
}

.yo-pd-hero::after {
    content: "";
    position: absolute;
    left: calc(-10% - 75px);
    right: calc(-10% - 75px);
    bottom: -1px;
    z-index: -1;
    height: 92px;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    box-shadow: 0 1000px 0 1000px #fff;
}

.yo-pd-hero__inner {
    width: min(1040px, calc(100% - 32px));
    margin-inline: auto;
    text-align: center;
}

.yo-pd-breadcrumb {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .68);
    font-size: .78rem;
    font-weight: 700;
}

.yo-pd-breadcrumb a,
.yo-pd-breadcrumb span {
    color: inherit;
    text-decoration: none;
}

.yo-pd-breadcrumb > * + *::before {
    content: ">";
    margin-inline: 8px;
    color: rgba(255, 255, 255, .42);
}

.yo-pd-eyebrow,
.yo-pd-section__kicker {
    margin: 0 0 12px;
    color: var(--yo-pd-terra);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.yo-pd-guide-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0 0 18px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(6, 24, 24, .28);
    color: rgba(255, 255, 255, .78);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .13em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.yo-pd-hero .yo-pd-eyebrow {
    margin-bottom: 14px;
    color: var(--yo-pd-terra);
    font-size: .78rem;
    letter-spacing: .14em;
}

.yo-pd-hero h1 {
    max-width: 920px;
    margin: 0 auto 16px;
    color: #fff;
    font-size: clamp(3.15rem, 6rem, 6rem);
    line-height: .88;
    letter-spacing: -.045em;
    text-wrap: balance;
    text-shadow: 0 6px 30px rgba(0, 0, 0, .42);
}

.yo-pd-subtitle {
    max-width: 760px;
    margin: 0 auto 18px;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(1.25rem, 2.1rem, 2.1rem);
    font-weight: 750;
    line-height: 1.22;
    letter-spacing: -.02em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}

.yo-pd-text {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .84);
    font-size: 1.03rem;
    line-height: 1.72;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .30);
}

.yo-pd-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    max-width: 820px;
    margin: 28px auto 0;
}

.yo-pd-strip span {
    min-height: 0;
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, .82);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .01em;
}

.yo-pd-strip span + span::before {
    content: "";
    width: 4px;
    height: 4px;
    margin-right: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .46);
}

.yo-pd-quick {
    padding: 18px 0 34px;
    background: #fff;
}

.yo-pd-quick__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.yo-pd-quick-card,
.yo-pd-otel-card,
.yo-pd-faq-list > div {
    border: 1px solid var(--yo-pd-line);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 30px rgba(17, 24, 39, .055);
}

.yo-pd-quick-card {
    min-height: 104px;
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 16px;
    border-radius: 14px;
}

.yo-pd-quick-card span {
    color: var(--yo-pd-terra);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.yo-pd-quick-card p {
    margin: 0;
    color: var(--yo-pd-teal);
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.35;
}

.yo-pd-section {
    padding: clamp(48px, 6vw, 76px) 0;
    scroll-margin-top: calc(var(--yo-sticky-nav-top, 44px) + 46px + 8px);
}

.yo-pd-section:nth-of-type(even) {
    background:
        radial-gradient(circle at 14% 0%, rgba(196, 98, 45, .08), transparent 34%),
        linear-gradient(180deg, rgba(248, 244, 238, .72), rgba(255, 255, 255, .88));
}

.yo-pd-section__head {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
}

.yo-pd-section__head h2,
.yo-pd-trust-box h2 {
    margin: 0;
    color: var(--yo-pd-ink);
    font-size: clamp(1.55rem, 2.2rem, 2.2rem);
    line-height: 1.12;
    letter-spacing: 0;
    text-wrap: balance;
}

.yo-pd-section__subhead {
    max-width: 620px;
    margin: 10px auto 0;
    color: var(--yo-pd-muted);
    font-size: .98rem;
    font-weight: 650;
    line-height: 1.55;
    text-align: center;
    text-wrap: balance;
}

.yo-pd-section__head p:not(.yo-pd-section__kicker) {
    max-width: 660px;
    margin: 12px auto 0;
    color: var(--yo-pd-muted);
    line-height: 1.7;
    text-align: center;
}

.yo-pd-copy {
    max-width: 760px;
    margin-inline: auto;
}

.yo-pd-copy p {
    margin: 0 0 18px;
    color: #303b46;
    font-size: 1rem;
    line-height: 1.85;
}

.yo-pd-copy p:last-child {
    margin-bottom: 0;
}

.yo-pd-copy h3 {
    margin: 28px 0 10px;
    color: var(--yo-pd-teal);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    line-height: 1.32;
    letter-spacing: -.01em;
}

.yo-pd-copy .yo-pd-callout {
    margin: 22px 0;
    padding: 18px 20px;
    border: 1px solid rgba(18, 63, 63, .10);
    border-left: 4px solid rgba(196, 98, 45, .72);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(242, 248, 247, .88)),
        radial-gradient(circle at 10% 0%, rgba(196, 98, 45, .08), transparent 42%);
    box-shadow: 0 18px 38px rgba(17, 24, 39, .06);
}

.yo-pd-copy .yo-pd-callout p {
    margin: 0;
    color: #26343c;
    font-size: .98rem;
    line-height: 1.8;
}

.yo-pd-copy .yo-pd-callout + .yo-pd-callout {
    margin-top: 16px;
}

.yo-pd-media-strip {
    padding: 0 0 clamp(12px, 2vw, 24px);
}

.yo-pd-media-strip__grid {
    display: grid;
    gap: 14px;
}

.yo-pd-media-strip__item {
    margin: 0;
    overflow: hidden;
}

.yo-pd-media-strip__item img {
    display: block;
    width: 100%;
    height: auto;
}

.yo-pd-media-strip--center .yo-pd-media-strip__grid {
    width: min(760px, calc(100% - 32px));
    margin-inline: auto;
    grid-template-columns: 1fr;
}

.yo-pd-media-strip--center .yo-pd-media-strip__item {
    border-radius: 18px;
}

.yo-pd-media-strip--bleed-split {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.yo-pd-media-strip--bleed-split .yo-pd-media-strip__grid {
    width: 100%;
    gap: 0;
}

.yo-pd-media-strip--bleed-split .yo-pd-media-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yo-pd-media-strip--bleed-split .yo-pd-media-strip__item {
    border-radius: 0;
}

.yo-pd-media-strip--center-panorama {
    padding-bottom: 0;
}

.yo-pd-media-strip--center-panorama .yo-pd-media-strip__grid {
    width: min(980px, calc(100% - 32px));
    margin-inline: auto;
    grid-template-columns: 1fr;
}

.yo-pd-media-strip--center-panorama .yo-pd-media-strip__item {
    border-radius: 18px;
}

.yo-pd-media-strip--gallery .yo-pd-media-strip__grid {
    width: min(980px, calc(100% - 32px));
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yo-pd-media-strip--gallery .yo-pd-media-strip__item {
    border-radius: 16px;
}

.yo-pd-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 920px;
    margin: 26px auto 0;
}

.yo-pd-detail-card {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(18, 63, 63, .10);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(246, 249, 248, .76)),
        radial-gradient(circle at 12% 0%, rgba(196, 98, 45, .09), transparent 42%);
    box-shadow: 0 18px 42px rgba(17, 24, 39, .055);
}

.yo-pd-detail-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(14, 103, 98, .10);
    color: var(--yo-pd-teal);
}

.yo-pd-detail-card__icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.yo-pd-detail-card h3 {
    margin: 0 0 10px;
    color: var(--yo-pd-teal);
    font-size: 1.02rem;
    line-height: 1.28;
}

.yo-pd-detail-card p,
.yo-pd-detail-card li {
    color: #303b46;
    font-size: .95rem;
    line-height: 1.7;
}

.yo-pd-detail-card p {
    margin: 0 0 12px;
}

.yo-pd-detail-card p:last-child {
    margin-bottom: 0;
}

.yo-pd-detail-card ul,
.yo-pd-detail-card ol {
    margin: 0;
    padding-left: 1.1rem;
}

.yo-pd-section--season .yo-pd-section__head {
    max-width: 820px;
    margin-bottom: 24px;
}

.yo-pd-section--season .yo-pd-copy {
    max-width: 760px;
}

.yo-pd-section--season .yo-pd-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1120px;
    margin-top: 28px;
}

.yo-pd-section--season .yo-pd-detail-card {
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
}

.yo-pd-section--season .entry-content {
    max-width: 920px;
    margin: 26px auto 0;
}

.yo-pd-section--transport .yo-pd-section__head {
    max-width: 820px;
}

.yo-pd-section--transport .yo-pd-section__head p:not(.yo-pd-section__kicker) {
    max-width: 720px;
    margin: 12px auto 0;
    text-align: center;
}

@media (max-width: 780px) {
    .yo-pd-detail-grid {
        grid-template-columns: 1fr;
    }

    .yo-pd-section--season .yo-pd-detail-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .yo-pd-media-strip--center-panorama {
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .yo-pd-media-strip--center-panorama .yo-pd-media-strip__grid {
        width: 100%;
        gap: 0;
        grid-template-columns: 1fr;
    }

    .yo-pd-media-strip--center-panorama .yo-pd-media-strip__item {
        border-radius: 0;
    }

    .yo-pd-media-strip--bleed-split .yo-pd-media-strip__grid,
    .yo-pd-media-strip--gallery .yo-pd-media-strip__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .yo-pd-media-strip--center .yo-pd-media-strip__grid {
        width: min(100% - 28px, 760px);
    }
}

.yo-pd-insight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 920px;
    margin: 26px auto 0;
}

.yo-pd-insight-card {
    padding: 18px;
    border: 1px solid rgba(18, 63, 63, .10);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .54)),
        radial-gradient(circle at 12% 0%, rgba(196, 98, 45, .12), transparent 42%);
    box-shadow: 0 18px 44px rgba(17, 24, 39, .055);
    backdrop-filter: blur(14px);
}

.yo-pd-insight-card h3 {
    margin: 0 0 8px;
    color: var(--yo-pd-teal);
    font-size: 1.02rem;
    line-height: 1.25;
}

.yo-pd-insight-card p {
    margin: 0;
    color: var(--yo-pd-muted);
    font-size: .92rem;
    line-height: 1.72;
}

.yo-pd-mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.yo-pd-mini-links a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 10px;
    border: 1px solid rgba(18, 63, 63, .12);
    background: rgba(255, 255, 255, .72);
    color: var(--yo-pd-teal);
    font-size: .78rem;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
}

.yo-pd-mini-links a:hover {
    border-color: rgba(196, 98, 45, .36);
    color: var(--yo-pd-terra);
}

.yo-pd-related {
    max-width: 920px;
    margin: 30px auto 0;
}

.yo-pd-related__title {
    margin: 0 0 12px;
    color: var(--yo-pd-terra);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-align: center;
    text-transform: uppercase;
}

.yo-pd-related__intro {
    max-width: 620px;
    margin: -4px auto 16px;
    color: var(--yo-pd-muted);
    font-size: .9rem;
    line-height: 1.6;
    text-align: center;
}

.yo-pd-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.yo-pd-related-card {
    display: grid;
    gap: 8px;
    min-height: 118px;
    padding: 16px;
    border: 1px solid rgba(18, 63, 63, .10);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .62)),
        radial-gradient(circle at 12% 0%, rgba(196, 98, 45, .10), transparent 42%);
    color: var(--yo-pd-teal);
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(17, 24, 39, .055);
    backdrop-filter: blur(14px);
}

.yo-pd-related-card strong {
    color: var(--yo-pd-teal);
    font-size: .98rem;
    line-height: 1.28;
}

.yo-pd-related-card span {
    color: var(--yo-pd-muted);
    font-size: .86rem;
    line-height: 1.6;
}

.yo-pd-related-card:hover {
    border-color: rgba(196, 98, 45, .30);
    color: var(--yo-pd-terra);
    transform: translateY(-1px);
}

.yo-pd-fact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 920px;
    margin: 28px auto 0;
}

.yo-pd-fact-card {
    display: grid;
    gap: 7px;
    min-height: 94px;
    align-content: start;
    padding: 15px;
    border: 1px solid rgba(18, 63, 63, .10);
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 14px 34px rgba(17, 24, 39, .052);
    backdrop-filter: blur(12px);
}

.yo-pd-fact-card span {
    color: var(--yo-pd-terra);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.yo-pd-fact-card strong {
    color: var(--yo-pd-teal);
    font-size: .9rem;
    line-height: 1.35;
}

.yo-pd-fact-grid--inline {
    grid-template-columns: minmax(0, 1fr);
    max-width: 760px;
}

.yo-pd-fact-grid--inline .yo-pd-fact-card {
    min-height: 0;
}

.yo-pd-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 980px;
    margin: 30px auto 0;
}

.yo-pd-route-card {
    display: grid;
    gap: 10px;
    min-height: 170px;
    align-content: start;
    padding: 18px;
    border: 1px solid rgba(18, 63, 63, .10);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .66)),
        radial-gradient(circle at 12% 0%, rgba(196, 98, 45, .12), transparent 44%);
    box-shadow: 0 18px 44px rgba(17, 24, 39, .055);
    backdrop-filter: blur(14px);
}

.yo-pd-route-card h3 {
    margin: 0;
    color: var(--yo-pd-terra);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.yo-pd-route-card p {
    margin: 0;
    color: var(--yo-pd-muted);
    font-size: .9rem;
    line-height: 1.68;
}

.yo-pd-hub-cta {
    max-width: 760px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 18px;
    align-items: center;
    margin: 28px auto 0;
    padding: 18px;
    border-left: 4px solid var(--yo-pd-terra);
    background:
        linear-gradient(135deg, rgba(18, 63, 63, .95), rgba(14, 48, 48, .9)),
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, .16), transparent 38%);
    color: #fff;
    box-shadow: 0 18px 42px rgba(18, 63, 63, .16);
}

.yo-pd-hub-cta span {
    color: rgba(255, 255, 255, .62);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.yo-pd-hub-cta strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.3;
}

.yo-pd-hub-cta a {
    grid-row: 1 / span 2;
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    text-decoration: none;
    backdrop-filter: blur(12px);
}

.yo-pd-hub-cta a:hover {
    background: rgba(255, 255, 255, .20);
    color: #fff;
}

.yo-pd-cta-btn,
.yo-pd-otel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--yo-pd-teal);
    color: #fff;
    font-size: .88rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(18, 63, 63, .14);
}

.yo-pd-cta-btn:hover,
.yo-pd-otel-btn:hover {
    background: var(--yo-pd-terra);
    color: #fff;
}

.yo-pd-intro {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: 28px;
    align-items: start;
}

.yo-pd-intro .yo-toc {
    position: sticky;
    top: 72px;
    margin: 0;
}

.yo-pd-otel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 980px;
    margin: 30px auto 0;
}

.yo-pd-otel-card {
    overflow: hidden;
    border-radius: 14px;
}

.yo-pd-otel-card__media {
    min-height: 120px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(0, 0, 0, .42)),
        linear-gradient(135deg, #1a5252, #c4622d);
    color: rgba(255, 255, 255, .86);
    font-size: 2.2rem;
    font-weight: 900;
}

.yo-pd-otel-card__body {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.yo-pd-otel-card h3 {
    margin: 0;
    color: var(--yo-pd-teal);
    font-size: 1.05rem;
    line-height: 1.2;
}

.yo-pd-otel-card p {
    margin: 0;
    color: var(--yo-pd-muted);
    font-size: .88rem;
    line-height: 1.65;
}

.yo-pd-affiliate-note {
    max-width: 980px;
    margin: 12px auto 0;
    color: #7b8792;
    font-size: .78rem;
    line-height: 1.45;
    text-align: center;
}

.yo-pd-trust-box {
    max-width: 760px;
    margin-inline: auto;
    padding: 26px;
    border-left: 4px solid var(--yo-pd-terra);
    background: linear-gradient(180deg, #f8fcfb, #eef6f4);
    border-radius: 14px;
}

.yo-pd-trust-box p:last-child {
    margin-bottom: 0;
}

.yo-pd-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.yo-pd-trust-list span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 10px;
    border: 1px solid rgba(18, 63, 63, .10);
    background: rgba(255, 255, 255, .62);
    color: var(--yo-pd-teal);
    font-size: .78rem;
    font-weight: 850;
    line-height: 1.25;
}

.yo-pd-faq-list {
    display: grid;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}

.yo-pd-faq-list > div {
    padding: 16px 18px;
    border-radius: 12px;
}

.yo-pd-faq-list dt {
    margin: 0 0 8px;
    color: var(--yo-pd-teal);
    font-weight: 900;
    line-height: 1.35;
}

.yo-pd-faq-list dd {
    margin: 0;
    color: var(--yo-pd-muted);
    line-height: 1.7;
}

.yo-pd-spoke-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.yo-pd-spoke-card a {
    position: relative;
    min-height: 190px;
    display: grid;
    align-content: end;
    gap: 6px;
    overflow: hidden;
    padding: 16px;
    border-radius: 14px;
    background: #123f3f;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(17, 24, 39, .12);
}

.yo-pd-spoke-card a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(6, 24, 24, .9));
}

.yo-pd-spoke-card img,
.yo-pd-spoke-card__fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #1a5252, #0b2d2d);
}

.yo-pd-spoke-card span,
.yo-pd-spoke-card strong,
.yo-pd-spoke-card small {
    position: relative;
    z-index: 2;
}

.yo-pd-spoke-card span {
    color: rgba(255, 255, 255, .74);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.yo-pd-spoke-card strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
}

.yo-pd-spoke-card small {
    color: rgba(255, 255, 255, .76);
    font-size: .76rem;
}

@media (max-width: 900px) {
    .yo-pd-quick__grid,
    .yo-pd-otel-grid,
    .yo-pd-spoke-grid,
    .yo-pd-insight-grid,
    .yo-pd-related-grid,
    .yo-pd-fact-grid,
    .yo-pd-route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yo-pd-intro {
        grid-template-columns: 1fr;
    }

    .yo-pd-intro .yo-toc {
        position: static;
    }
}

@media (max-width: 640px) {
    .yo-pd-container,
    .yo-pd-hero__inner {
        width: min(100% - 28px, 980px);
    }

    .yo-pd-hero {
        min-height: 620px;
        padding-top: calc(var(--wp-admin--admin-bar--height, 0px) + 88px);
        padding-bottom: 92px;
    }

    .yo-pd-guide-label {
        margin-bottom: 14px;
        font-size: .66rem;
        letter-spacing: .11em;
    }

    .yo-pd-hero .yo-pd-eyebrow {
        font-size: .78rem;
        letter-spacing: .14em;
    }

    .yo-pd-hero h1 {
        font-size: clamp(3rem, 3.8rem, 3.8rem);
        letter-spacing: -.04em;
    }

    .yo-pd-subtitle {
        margin-bottom: 16px;
        font-size: 1.25rem;
        line-height: 1.28;
    }

    .yo-pd-text {
        font-size: .96rem;
        line-height: 1.64;
    }

    .yo-pd-strip {
        gap: 7px 10px;
        margin-top: 22px;
    }

    .yo-pd-strip span {
        font-size: .74rem;
    }

    .yo-pd-strip span + span::before {
        margin-right: 10px;
    }

    .yo-pd-quick__grid,
    .yo-pd-otel-grid,
    .yo-pd-spoke-grid,
    .yo-pd-insight-grid,
    .yo-pd-related-grid,
    .yo-pd-fact-grid,
    .yo-pd-route-grid {
        grid-template-columns: 1fr;
    }

    .yo-pd-hub-cta {
        grid-template-columns: 1fr;
    }

    .yo-pd-hub-cta a {
        grid-row: auto;
        grid-column: auto;
        width: 100%;
    }

    .yo-pd-quick-card {
        min-height: 0;
    }

    .yo-pd-section {
        padding-block: 44px;
    }

    .yo-pd-section__head {
        margin-bottom: 20px;
    }

    .yo-pd-copy p {
        font-size: .96rem;
        line-height: 1.78;
    }

    .yo-pd-related,
    .yo-pd-route-grid,
    .yo-pd-otel-grid,
    .yo-pd-fact-grid,
    .yo-pd-hub-cta {
        margin-top: 24px;
    }

    .yo-pd-otel-card__media {
        min-height: 104px;
    }
}

/* ============================================================
   DESTINATION BODY SURFACE — follows shared pillar background rhythm
   TOC classes are intentionally untouched.
   ============================================================ */

.yo-pillar-destinasyon {
    --yo-pd-glass-bg: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.54));
    --yo-pd-glass-line: rgba(18, 63, 63, .10);
    --yo-pd-glass-shadow: 0 18px 44px rgba(17, 24, 39, .055);
    --yo-pd-glass-blur: blur(14px) saturate(1.08);
    display: block;
    background: #f7f4ef;
}

.yo-pillar-destinasyon .yo-pd-quick,
.yo-pillar-destinasyon .yo-pd-section:nth-of-type(odd) {
    background: #fff;
}

.yo-pillar-destinasyon .yo-pd-quick {
    padding: clamp(10px, 1.7vw, 16px) 0 clamp(14px, 2vw, 20px);
    background:
        radial-gradient(circle at 20% 0%, rgba(196, 98, 45, .08), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,244,239,.78));
}

.yo-pillar-destinasyon .yo-pd-quick__grid {
    gap: 8px;
}

.yo-pillar-destinasyon .yo-pd-quick-card {
    min-height: 78px;
    padding: 12px 13px;
    gap: 5px;
    border-radius: 16px;
}

.yo-pillar-destinasyon .yo-pd-quick-card span {
    font-size: .62rem;
    letter-spacing: .10em;
}

.yo-pillar-destinasyon .yo-pd-quick-card p {
    font-size: clamp(.78rem, .9vw, .88rem);
    line-height: 1.34;
}

.yo-pd-segments {
    padding: clamp(34px, 4.4vw, 58px) 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(196, 98, 45, .13), transparent 32%),
        radial-gradient(circle at 86% 10%, rgba(18, 63, 63, .12), transparent 34%),
        linear-gradient(180deg, rgba(247, 244, 239, .94), rgba(255, 255, 255, .82));
}

.yo-pd-segments__head {
    max-width: 760px;
    margin: 0 auto 20px;
    text-align: center;
}

.yo-pd-segments__head span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 11px;
    border: 1px solid rgba(196, 98, 45, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    color: #9e4e24;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.yo-pd-segments__head h3 {
    margin: 12px 0 0;
    color: #102f32;
    font-size: clamp(1.85rem, 3vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.yo-pd-segments__head p {
    max-width: 600px;
    margin: 12px auto 0;
    color: rgba(37, 55, 63, .72);
    line-height: 1.65;
}

.yo-pd-segment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.yo-pd-segment-card {
    min-height: 126px;
    display: grid;
    align-content: space-between;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(18, 63, 63, .10);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.50)),
        radial-gradient(circle at 0% 0%, rgba(196, 98, 45, .12), transparent 42%);
    box-shadow: 0 18px 44px rgba(17, 24, 39, .055);
    -webkit-backdrop-filter: blur(14px) saturate(1.08);
    backdrop-filter: blur(14px) saturate(1.08);
}

.yo-pd-segment-card strong {
    color: #123f3f;
    font-size: 1.08rem;
    line-height: 1.12;
}

.yo-pd-segment-card span {
    color: rgba(31, 46, 54, .76);
    font-size: .88rem;
    line-height: 1.48;
}

.yo-pillar-destinasyon .yo-pd-section:nth-of-type(even) {
    background:
        radial-gradient(circle at 14% 0%, rgba(196, 98, 45, .08), transparent 34%),
        linear-gradient(180deg, rgba(247, 244, 239, .86), rgba(255, 255, 255, .72));
}

.yo-pillar-destinasyon .yo-pd-section {
    padding-block: clamp(54px, 6vw, 82px);
}

.yo-pillar-destinasyon .yo-pd-section__head {
    max-width: 820px;
    margin-bottom: 28px;
}

.yo-pillar-destinasyon .yo-pd-section__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    margin-bottom: 12px;
    padding: 7px 12px;
    border: 1px solid rgba(196, 98, 45, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.yo-pillar-destinasyon .yo-pd-section__kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #c4622d;
    box-shadow: 0 0 0 5px rgba(196, 98, 45, .10);
}

.yo-pillar-destinasyon .yo-pd-section__head h2 {
    color: #102f32;
    font-size: clamp(1.78rem, 3vw, 2.82rem);
    letter-spacing: -.03em;
}

.yo-pillar-destinasyon .yo-pd-section__subhead {
    max-width: 680px;
    color: rgba(37, 55, 63, .72);
    font-weight: 600;
    text-align: center;
}

.yo-pillar-destinasyon :is(
    .yo-pd-copy,
    .yo-pd-quick-card,
    .yo-pd-related-card,
    .yo-pd-fact-card,
    .yo-pd-route-card,
    .yo-pd-otel-card,
    .yo-pd-faq-list > div
) {
    border: 1px solid var(--yo-pd-glass-line);
    background: var(--yo-pd-glass-bg);
    box-shadow: var(--yo-pd-glass-shadow);
    -webkit-backdrop-filter: var(--yo-pd-glass-blur);
    backdrop-filter: var(--yo-pd-glass-blur);
}

.yo-pillar-destinasyon .yo-pd-copy {
    max-width: none;
    padding: clamp(22px, 3vw, 32px);
    border-radius: 22px;
}

.yo-pillar-destinasyon .yo-pd-copy p {
    color: rgba(31, 46, 54, .90);
    font-size: clamp(1rem, 1.08vw, 1.06rem);
    line-height: 1.9;
}

.yo-pillar-destinasyon .yo-pd-copy h3 {
    color: #123f3f;
}

.yo-pillar-destinasyon :is(.yo-pd-related, .yo-pd-route-grid, .yo-pd-fact-grid, .yo-pd-otel-grid, .yo-pd-spoke-grid) {
    margin-top: clamp(26px, 3.5vw, 40px);
}

.yo-pillar-destinasyon .yo-pd-related__intro {
    color: rgba(37, 55, 63, .68);
}

.yo-pillar-destinasyon :is(.yo-pd-quick-card, .yo-pd-related-card, .yo-pd-route-card, .yo-pd-fact-card, .yo-pd-otel-card) {
    border-radius: 18px;
}

.yo-pillar-destinasyon :is(.yo-pd-related-card, .yo-pd-route-card, .yo-pd-spoke-card a) {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.yo-pillar-destinasyon :is(.yo-pd-related-card, .yo-pd-route-card):hover {
    border-color: rgba(196, 98, 45, .26);
    box-shadow: 0 22px 54px rgba(18, 63, 63, .10);
    transform: translateY(-2px);
}

.yo-pillar-destinasyon .yo-pd-route-card {
    position: relative;
    min-height: 184px;
    overflow: hidden;
    padding: 22px 20px 20px;
}

.yo-pillar-destinasyon .yo-pd-route-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #c4622d, rgba(18, 63, 63, .58));
}

.yo-pillar-destinasyon .yo-pd-route-card::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(196, 98, 45, .16), transparent 68%);
    pointer-events: none;
}

.yo-pillar-destinasyon .yo-pd-route-card h3 {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(196, 98, 45, .10);
    color: #9e4e24;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .62);
}

.yo-pillar-destinasyon .yo-pd-route-card p {
    color: rgba(31, 46, 54, .82);
    font-size: .93rem;
    line-height: 1.74;
}

.yo-pillar-destinasyon .yo-pd-hub-cta,
.yo-pillar-destinasyon .yo-pd-trust-box {
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(196, 98, 45, .14), transparent 38%),
        linear-gradient(135deg, #123f3f 0%, #0b2d2d 100%);
    box-shadow: 0 18px 42px rgba(18, 63, 63, .16);
}

.yo-pillar-destinasyon .yo-pd-otel-card__media {
    min-height: 124px;
}

.yo-pillar-destinasyon .yo-pd-spoke-card a {
    min-height: 208px;
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(18, 63, 63, .14);
}

.yo-pillar-destinasyon .yo-pd-spoke-card a:hover {
    box-shadow: 0 24px 60px rgba(18, 63, 63, .18);
    transform: translateY(-3px);
}

@media (max-width: 640px) {
    .yo-pillar-destinasyon {
        display: block;
    }

    .yo-pillar-destinasyon .yo-hero {
        min-height: min(760px, 92vh);
    }

    .yo-pillar-destinasyon .yo-pd-quick__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yo-pillar-destinasyon .yo-pd-quick-card {
        min-height: 96px;
        padding: 11px;
    }

    .yo-pd-segments {
        padding-block: 34px;
    }

    .yo-pd-segments__head {
        margin-bottom: 16px;
        text-align: left;
    }

    .yo-pd-segments__head h3 {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }

    .yo-pd-segment-grid {
        display: flex;
        gap: 10px;
        margin-inline: -14px;
        padding-inline: 14px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .yo-pd-segment-grid::-webkit-scrollbar {
        display: none;
    }

    .yo-pd-segment-card {
        flex: 0 0 min(250px, 78vw);
        min-height: 132px;
        scroll-snap-align: start;
    }

    .yo-pillar-destinasyon .yo-pd-intro .yo-toc {
        padding: 14px;
        border-radius: 18px;
    }

    .yo-pillar-destinasyon .yo-toc__title {
        min-height: 42px;
        margin: 0;
        padding: 0 2px;
    }

    .yo-pillar-destinasyon .yo-toc[open] .yo-toc__title {
        margin-bottom: 10px;
    }

    .yo-pillar-destinasyon .yo-toc__list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .yo-pillar-destinasyon .yo-toc__item {
        align-items: center;
        padding: 9px 10px;
        border: 1px solid rgba(18, 63, 63, .08);
        border-radius: 14px;
        background: rgba(255,255,255,.68);
    }

    .yo-pillar-destinasyon .yo-toc__link {
        font-size: .82rem;
        line-height: 1.25;
    }

    .yo-pillar-destinasyon .yo-pd-section {
        padding-block: 48px;
    }

    .yo-page .yo-jump-nav + .yo-pd-section--intro .yo-pd-container {
        padding-top: 48px;
    }

    .yo-pillar-destinasyon .yo-pd-copy {
        padding: 20px;
        border-radius: 18px;
    }

    .yo-pillar-destinasyon :is(.yo-pd-quick-card, .yo-pd-related-card, .yo-pd-route-card, .yo-pd-fact-card, .yo-pd-otel-card) {
        border-radius: 16px;
    }
}

/* Intro TOC single-flow wrap inside original intro sector. */
.yo-page .yo-jump-nav + .yo-pd-section--intro {
    margin-top: 0;
    padding-top: 0;
    background:
        radial-gradient(circle at 14% 0%, rgba(196, 98, 45, .08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 244, 238, .74));
}

.yo-page .yo-jump-nav + .yo-pd-section--intro .yo-pd-container {
    padding-top: clamp(54px, 6vw, 82px);
}

.yo-pd-section--intro .yo-pd-copy::after { content: ""; display: block; clear: both; }
.yo-pd-section--intro .yo-pd-copy > .yo-toc { width: 100%; max-width: none; margin: 0 0 1.5rem; position: static; float: none; }
@media (min-width: 900px) { .yo-pd-section--intro .yo-pd-copy { grid-column: 1 / -1; display: block; max-width: none; } .yo-pd-section--intro .yo-pd-copy > .yo-toc { float: left; width: 320px; max-width: 320px; margin: 0 2rem 20px 0; } }

.yo-pillar-destinasyon .yo-hero__arrow {
	top: auto;
	bottom: clamp(2.1rem, 5vw, 4rem);
	z-index: 12;
	color: rgba(255, 255, 255, 0.86);
}

/* Universal pillar sticky jump nav behavior. */
:root {
  --yo-adminbar-height: 0px;
  --yo-site-header-height: 0px;
  --yo-sticky-nav-top: 0px;
  --yo-reading-progress: 0;
}
body.admin-bar { --yo-adminbar-height: 32px; }
@media (max-width: 782px) {
  body.admin-bar { --yo-adminbar-height: 46px; }
}
.yo-jump-nav {
  position: sticky;
  top: var(--yo-sticky-nav-top);
  z-index: 80;
  transition: top .18s ease;
}
.yo-jump-nav__progress {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}
.yo-jump-nav__progress > span {
  display: block;
  height: 100%;
  width: calc(var(--yo-reading-progress) * 100%);
  background: #F0C040;
  transition: width .12s linear;
}
body.yo2-subnav-active .yo-jump-nav { top: var(--yo-sticky-nav-top, 0px); }

/* Migrated pillar-specific visual rules */
 .yo-budget-shell { display: grid; gap: clamp(24px, 3.2vw, 38px);
}
 .yo-budget-shell__intro { display: grid; gap: 0; max-width: 70ch; margin-inline: auto; text-align: center;
}
 .yo-budget-shell__intro .yo-pillar-eyebrow,
.yo-budget-shell__intro h2,
.yo-budget-shell__intro p { text-align: center;
}
 .yo-budget-profiles,
.yo-budget-city-grid { display: grid; gap: clamp(18px, 2.5vw, 28px);
}
 .yo-budget-profiles { grid-template-columns: repeat(3, minmax(0, 1fr));
}
 .yo-budget-profile,
.yo-budget-city-card,
.yo-budget-method { border: 1px solid rgba(26, 82, 82, .12); border-radius: 18px; background: #fff; box-shadow: 0 12px 30px rgba(17, 24, 39, .06);
}
 .yo-budget-profile,
.yo-budget-city-card { display: flex; min-width: 0; flex-direction: column; gap: 12px; padding: 20px;
}
 .yo-budget-profile__range,
.yo-budget-city-card__band { margin: 0; color: var(--yo-terra); font-size: .82rem; font-weight: 900; letter-spacing: .06em; text-align: center; text-transform: uppercase;
}
 .yo-budget-profile h3,
.yo-budget-city-card h3 { margin: 0; color: #123f3f; font-size: 1.15rem; line-height: 1.15; text-align: center;
}
 .yo-budget-profile p:last-child,
.yo-budget-city-card__note,
.yo-budget-method p { margin: 0; color: #486466;
}
 .yo-budget-city-grid { grid-template-columns: repeat(3, minmax(0, 1fr));
}
 .yo-budget-city-card__top { display: grid; gap: 8px; text-align: center;
}
 .yo-budget-city-card__kicker { margin: 0; color: rgba(18, 63, 63, .66); font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
 .yo-budget-city-card h3 a { color: inherit; text-decoration: none;
}
 .yo-budget-city-card h3 a:hover { color: var(--yo-terra);
}
 .yo-budget-city-card__stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 0;
}
 .yo-budget-city-card__stats div { display: grid; gap: 6px; min-width: 0; padding: 12px 14px; border-radius: 12px; background: rgba(245, 241, 235, .92);
}
 .yo-budget-city-card__stats dt { margin: 0; color: rgba(18, 63, 63, .7); font-size: .75rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase;
}
 .yo-budget-city-card__stats dd { margin: 0; color: #123f3f; font-size: .95rem; font-weight: 800; line-height: 1.3;
}
 .yo-budget-method { display: grid; gap: 10px; margin-top: clamp(24px, 3vw, 36px); padding: 20px 22px;
}
 .yo-budget-shell > .yo-budget-method { margin-top: 0;
}
 .yo-pillar-container > :is(.entry-content, .yo-card-grid, .yo-region-grid, .yo-realities__list, .yo-faq, .yo-pillar-faq__list) + .yo-budget-method { margin-top: clamp(28px, 3.6vw, 44px);
}
.yo-budget-note--mobile { display: none;
}

.yo-page--continent .yo-budget-compact .yo-budget-shell {
	gap: clamp(16px, 2vw, 24px);
}

.yo-page--continent .yo-budget-compact .yo-budget-shell__intro {
	max-width: 760px;
}

.yo-page--continent .yo-budget-compact .yo-budget-shell__intro p {
	max-width: 62ch;
	margin-inline: auto;
}

.yo-page--continent .yo-budget-compact .yo-budget-profiles {
	gap: 12px;
}

.yo-page--continent .yo-budget-compact .yo-budget-profile {
	gap: 6px;
	padding: 14px 16px;
	border-radius: 14px;
	box-shadow: 0 8px 22px rgba(17, 24, 39, .045);
}

.yo-page--continent .yo-budget-compact .yo-budget-profile__range {
	font-size: .74rem;
	text-align: left;
}

.yo-page--continent .yo-budget-compact .yo-budget-profile h3 {
	font-size: 1rem;
	text-align: left;
}

.yo-page--continent .yo-budget-compact .yo-budget-profile p:last-child {
	font-size: .88rem;
	line-height: 1.45;
}

.yo-budget-compare {
	overflow: hidden;
	border: 1px solid rgba(26, 82, 82, .12);
	border-radius: 18px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 14px 34px rgba(17, 24, 39, .06);
}

.yo-budget-compare__head,
.yo-budget-row {
	display: grid;
	grid-template-columns: minmax(220px, 1.55fr) .78fr .55fr .55fr .65fr .82fr;
	align-items: center;
	gap: 12px;
}

.yo-budget-compare__head {
	padding: 12px 16px;
	background: rgba(18, 63, 63, .08);
	color: rgba(18, 63, 63, .72);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.yo-budget-compare__rows {
	display: grid;
}

.yo-budget-row {
	padding: 14px 16px;
	border-top: 1px solid rgba(26, 82, 82, .1);
}

.yo-budget-row:nth-child(even) {
	background: rgba(245, 241, 235, .45);
}

.yo-budget-row__city {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.yo-budget-row__kicker {
	color: rgba(18, 63, 63, .54);
	font-size: .63rem;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.yo-budget-row h3 {
	margin: 0;
	color: #123f3f;
	font-size: 1rem;
	line-height: 1.15;
}

.yo-budget-row h3 a {
	color: inherit;
	text-decoration: none;
}

.yo-budget-row h3 a:hover {
	color: var(--yo-terra);
}

.yo-budget-row__city p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin: 0;
	color: #486466;
	font-size: .82rem;
	line-height: 1.38;
}

.yo-budget-row__band,
.yo-budget-row__stat {
	color: #123f3f;
	font-size: .86rem;
	font-weight: 850;
	line-height: 1.25;
}

.yo-budget-row__band {
	color: var(--yo-terra);
}

.yo-page--continent .yo-budget-compact .yo-budget-method {
	margin-top: 0;
	padding: 12px 16px;
	border-radius: 14px;
	background: rgba(18, 63, 63, .045);
	box-shadow: none;
}

.yo-page--continent .yo-budget-compact .yo-budget-method p {
	color: rgba(18, 63, 63, .72);
	font-size: .86rem;
	line-height: 1.5;
}
 .yo-realities__list { display: grid; gap: 14px;
}
 .yo-reality { border: 1px solid rgba(26, 82, 82, .12); border-radius: 18px; background: #fff; box-shadow: 0 10px 26px rgba(17, 24, 39, .06); overflow: hidden;
}
 .yo-reality summary { position: relative; display: block; padding: 18px 48px 18px 20px; color: #123f3f; font-size: 1.05rem; font-weight: 800; line-height: 1.35; cursor: pointer; list-style: none;
}
 .yo-reality summary::-webkit-details-marker { display: none;
}
 .yo-reality summary::after { content: "+"; position: absolute; top: 50%; right: 20px; transform: translateY(-50%); color: var(--yo-terra); font-size: 1.35rem; font-weight: 700;
}
 .yo-reality[open] summary::after { content: "−";
}
 .yo-reality__content { padding: 0 20px 20px; display: block;
}
 .yo-reality__content p,
.yo-reality__content li { margin: 0; color: #486466;
}
 .yo-reality__content ul { display: grid; gap: 12px; margin: 0; padding-left: 18px;
}
 .yo-reality__content li::marker { color: var(--yo-terra);
}
   .yo-prep-grid,
.yo-region-grid,
.yo-smart-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(22px, 2.6vw, 32px);
}
 .yo-prep-grid.yo-prep-grid--merged { grid-template-columns: repeat(2, minmax(0, 1fr));
}
 .yo-prep-card:first-child,
.yo-prep-card:last-child,
.yo-region-card--wide { grid-column: auto; grid-row: auto;
}
 .yo-prep-card { display: flex; flex-direction: column; height: 100%; min-height: 0;
}
 .yo-region-card { display: flex; flex-direction: column; height: 100%; min-height: 0;
}
 .yo-region-card[hidden] { display: none;
}
 .yo-region-grid.is-filtered { grid-template-columns: minmax(0, 420px); justify-content: center;
}
 .yo-smart-grid { align-items: stretch;
}
 .yo-smart-card { display: flex; flex-direction: column; gap: 16px; padding: clamp(18px, 2vw, 24px); border: 1px solid rgba(18, 63, 63, .12); border-radius: 26px; background: radial-gradient(circle at top right, rgba(196, 98, 45, .12), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 244, 238, .98)); box-shadow: 0 18px 38px rgba(18, 63, 63, .08);
}
 .yo-smart-card__top { display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
 .yo-smart-card__icon { flex: 0 0 auto;
}
 .yo-smart-card__badge { display: inline-flex; min-height: 34px; align-items: center; padding: 6px 14px; border: 1px solid rgba(196, 98, 45, .2); border-radius: 999px; background: rgba(196, 98, 45, .1); color: #9a4f26; font-size: .74rem; font-weight: 800; line-height: 1; text-transform: uppercase; letter-spacing: .04em;
}
 .yo-smart-card h3 { margin: 0; color: #123f3f; font-size: clamp(1.08rem, 1.45vw, 1.24rem); line-height: 1.24;
}
 .yo-smart-timeline { display: grid; gap: 0; margin: 0; padding: 0; list-style: none;
}
 .yo-smart-stop { position: relative; display: grid; grid-template-columns: 16px minmax(0, 1fr); gap: 12px; align-items: start; padding: 0 0 14px;
}
 .yo-smart-stop:last-child { padding-bottom: 0;
}
 .yo-smart-stop__dot { position: relative; z-index: 2; width: 16px; height: 16px; margin-top: 4px; border: 3px solid rgba(26, 82, 82, .18); border-radius: 999px; background: #1a5252; box-shadow: 0 0 0 5px rgba(26, 82, 82, .08);
}
 .yo-smart-stop__line { position: absolute; top: 20px; left: 7px; width: 2px; height: calc(100% - 8px); background: linear-gradient(180deg, rgba(26, 82, 82, .34), rgba(196, 98, 45, .24));
}
 .yo-smart-stop__content { display: flex; flex-wrap: wrap; gap: 8px 10px; align-items: center; min-width: 0;
}
 .yo-smart-stop__content :is(a, span) { color: #123f3f; font-weight: 800; text-decoration: none;
}
 .yo-smart-stop__content a:hover { color: var(--yo-color-terra);
}
 .yo-smart-stop__content em { color: rgba(18, 63, 63, .74); font-size: .84rem; font-style: normal; font-weight: 700;
}
 .yo-smart-card__strategy { margin: 0; color: var(--yo-color-muted); font-size: .97rem; line-height: 1.55;
}
 .yo-smart-card__strategy strong { color: #123f3f;
}
 .yo-smart-card__action { width: fit-content;
}
 .yo-region-card { gap: 14px; padding: clamp(18px, 2vw, 24px);
}
 .yo-region-card h3 { margin: 0; font-size: clamp(1.06rem, 1.35vw, 1.18rem); line-height: 1.24;
}
 .yo-region-card > p { margin: 0; line-height: 1.58;
}
 .yo-region-card .yo-meta-list { display: grid; gap: 8px; margin: 0; padding-left: 18px;
}
 .yo-region-card .yo-chip-list { gap: 8px;
}
 .yo-country-card { --yo-country-cap-bg: linear-gradient(135deg, rgba(26, 82, 82, .18), rgba(18, 63, 63, .14)); --yo-country-cap-text: #123f3f; padding: 26px; overflow: hidden;
}
 .yo-country-card h3 { display: flex; align-items: center; gap: 10px; margin: -26px -26px 16px; padding: 16px 18px; border-radius: 0; background: var(--yo-country-cap-bg); color: var(--yo-country-cap-text); font-size: 1.08rem; line-height: 1.2; box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .18);
}
 .yo-country-flag { display: inline-flex; flex: 0 0 auto; font-size: 1.1em; line-height: 1;
}
 .yo-prep-grid, .yo-region-grid, .yo-smart-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 .yo-prep-grid, .yo-region-grid { grid-template-columns: 1fr; }
 .yo-pillar-hub .yo-country-grid, .yo-pillar-hub .yo-type-grid, .yo-pillar-hub .yo-route-grid, .yo-pillar-hub .yo-list-grid, .yo-pillar-hub .yo-ops-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 .yo-budget-note--desktop { display: none; }
 .yo-budget-note--mobile { display: block; }
 .yo-pillar-hub .yo-prep-grid, .yo-pillar-hub .yo-country-grid, .yo-pillar-hub .yo-region-grid, .yo-pillar-hub .yo-smart-grid, .yo-pillar-hub .yo-list-grid, .yo-pillar-hub .yo-ops-grid { grid-template-columns: 1fr; gap: 18px; }
 .yo-pillar-hub .yo-prep-card { display: none; }
 .yo-pillar-hub .yo-prep-card:nth-child(1), .yo-pillar-hub .yo-prep-card:nth-child(3) { display: flex; }
 .yo-pillar-hub :is(.yo-country-card, .yo-region-card, .yo-type-card, .yo-route-card, .yo-list-card, .yo-prep-card, .yo-faq details) { min-width: 0; overflow: clip; }
 .yo-pillar-hub > .yo-realities { order: 11; }
 .yo-pillar-hub .yo-prep-grid, .yo-pillar-hub .yo-country-grid, .yo-pillar-hub .yo-region-grid, .yo-pillar-hub .yo-smart-grid, .yo-pillar-hub .yo-list-grid, .yo-pillar-hub .yo-budget-profiles, .yo-pillar-hub .yo-budget-city-grid { grid-template-columns: 1fr; gap: 14px; }
 .yo-pillar-hub .yo-budget-city-card__stats { grid-template-columns: 1fr; }
 .yo-pillar-hub .yo-prep-card { display: flex; }
 .yo-pillar-hub :is(.yo-country-card, .yo-region-card, .yo-type-card, .yo-route-card, .yo-list-card, .yo-prep-card, .yo-faq details) { min-width: 0; overflow: clip; }
 .yo-pillar-hub .yo-reality:not([open]) .yo-reality__content { display: none; }
 .yo-pillar-hub .yo-decision__grid, .yo-pillar-hub .yo-prep-grid, .yo-pillar-hub .yo-country-grid, .yo-pillar-hub .yo-region-grid, .yo-pillar-hub .yo-smart-grid, .yo-pillar-hub .yo-list-grid, .yo-pillar-hub .yo-budget-profiles, .yo-pillar-hub .yo-budget-city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
   .yo-budget-city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
 .yo-reality { border-radius: 0; border-top: 0; border-right: 0; border-left: 0; box-shadow: none; background: transparent; }
 .yo-reality:first-child { border-top: 1px solid rgba(26, 82, 82, .12); }
 .yo-reality summary { padding: 22px 0 12px; cursor: default; pointer-events: none; font-size: 1.18rem; }
 .yo-reality summary::after { display: none; }
 .yo-reality__content { padding: 0 0 22px; }
 .yo-reality__content { display: block; }
 .yo-pillar-hub :is(.yo-country-card, .yo-region-card, .yo-prep-card, .yo-smart-card) :is(.yo-card-cta, .yo-chip-list, .yo-ba-link-list) { margin-top: auto; }
 .yo-pillar-hub .yo-region-card .yo-meta-list { margin-top: auto; }
 .yo-pillar-hub .yo-region-card > p { margin-bottom: 0; }
 .yo-pillar-hub .yo-region-card .yo-chip-list { margin-top: 12px; }
 .yo-pillar-hub > .yo-realities { order: 10;
}

@media (max-width: 1024px) {
    .yo-page--pillar .yo-guide-cluster-grid > * {
        flex: 0 0 100%;
        width: 100%;
    }
}

.yo-pillar-hub .yo-quick-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 1024px) {
    .yo-pillar-hub .yo-quick-cards > article,
    .yo-pillar-hub .yo-quick-cards > span {
        flex-basis: calc((100% - 70px) / 6);
    }
}

/* Destination intro: TOC + source intro share the same reading container. */
.yo-pd-intro--with-toc {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}

.yo-pd-intro__toc {
    min-width: 0;
}

.yo-pd-intro__copy {
    min-width: 0;
}

@media (max-width: 780px) {
    .yo-pd-intro--with-toc {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* City transport quick card moved from source post into pillar CSS. */
.yol-quick-card {
    --yol-primary: #1a3636;
    --yol-accent: #d4a373;
    --yol-text: #475569;
    --yol-bg: #ffffff;
    max-width: 850px;
    margin: 2rem auto;
    font-family: 'Inter', "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: var(--yol-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.yol-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1.25rem 1.5rem;
    background:
        linear-gradient(135deg, rgba(18, 63, 63, .74), rgba(55, 118, 113, .58) 52%, rgba(196, 98, 45, .42));
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .24),
        inset 0 -1px 0 rgba(18, 63, 63, .14);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.yol-card-header span {
    position: absolute;
    left: 1.5rem;
}

.yol-card-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
}

.yo-pillar-destinasyon .yol-card-header h3 {
    color: #ffffff;
}

.yol-card-intro {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--yol-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.yol-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
}

.yol-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.yol-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(18, 63, 63, .08);
    border: 1px solid rgba(18, 63, 63, .1);
    color: var(--yol-primary);
    font-size: 1.2rem;
}

.yol-icon-box svg {
    width: 20px;
    height: 20px;
}

.yol-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--yol-primary);
    font-size: 0.9rem;
    font-weight: 800;
}

.yol-content p {
    margin: 0;
    color: var(--yol-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

.yol-kemal-note {
    margin: 0 1.5rem 1.5rem;
    padding: 1.25rem;
    border-left: 4px solid var(--yol-accent);
    border-radius: 0 12px 12px 0;
    background: #fdfbf7;
}

.yol-kemal-note p {
    margin: 0;
    color: var(--yol-text);
    font-size: 0.88rem;
    line-height: 1.6;
    font-style: italic;
}

.yol-aff-text {
    margin-top: 1rem;
    color: #94a3b8;
    font-size: 0.75rem;
    font-style: italic;
    text-align: center;
}

@media (min-width: 768px) {
    .yol-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2.5rem;
        row-gap: 1.5rem;
    }

    .yol-card-intro {
        font-size: 1rem;
    }
}

/* Destination pillar mobile containment.
   Keeps the hero chips and quick facts inside the viewport without changing
   the desktop hero curve / TOC character. */
@media (max-width: 640px) {
    .yo-pillar-destinasyon .yo-hero__content,
    .yo-pillar-destinasyon .yo-hero__copy,
    .yo-pillar-destinasyon .yo-breadcrumb {
        max-width: calc(100vw - 28px);
        min-width: 0;
    }

    .yo-pillar-destinasyon .yo-breadcrumb {
        justify-content: center;
        overflow: hidden;
    }

    .yo-pillar-destinasyon .yo-hero__strip-wrap {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
        overflow: hidden;
    }

    .yo-pillar-destinasyon .yo-hero__strip {
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .yo-pillar-destinasyon .yo-hero__strip::-webkit-scrollbar {
        display: none;
    }

    .yo-pillar-destinasyon .yo-hero__strip span,
    .yo-pillar-destinasyon .yo-hero__strip-link {
        flex: 0 0 auto;
        max-width: min(72vw, 260px);
        white-space: normal;
        line-height: 1.25;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .yo-pillar-destinasyon .yo-pd-quick__grid {
        grid-template-columns: 1fr;
    }
}

/* City pillar reusable section components. */
.yo-city-pillar .yo-pd-section--topic-pratik {
	scroll-margin-top: 5.5rem;
	padding: clamp(3rem, 7vw, 5.5rem) 0;
	background:
		radial-gradient(circle at 18% 0%, rgba(216, 106, 57, 0.1), transparent 28rem),
		radial-gradient(circle at 86% 12%, rgba(31, 143, 124, 0.09), transparent 24rem),
		linear-gradient(180deg, #fbf7f2 0%, #f7efe7 100%);
}

.yo-city-pillar .yo-pd-section--topic-pratik .yo-pd-section__head {
	display: grid;
	gap: 0.7rem;
	max-width: 48rem;
	margin-inline: auto;
	text-align: center;
}

.yo-city-pillar .yo-pd-section--topic-pratik .yo-pd-section__kicker {
	justify-self: center;
	width: fit-content;
	padding: 0.32rem 0.7rem;
	border: 1px solid rgba(216, 106, 57, 0.24);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: #c75f35;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.yo-city-pillar .yo-pd-section--topic-pratik .yo-pd-section__head h2 {
	max-width: 24ch;
	margin-inline: auto;
	color: #183f42;
	font-size: clamp(2rem, 1.45rem + 1.8vw, 3.2rem);
	line-height: 1.03;
	text-wrap: balance;
}

.yo-city-pillar .yo-pd-practical-callout {
	max-width: 48rem;
	margin: 1.1rem auto 0;
	padding: clamp(0.95rem, 2vw, 1.2rem);
	border: 1px solid rgba(24, 63, 66, 0.12);
	border-left: 3px solid #d86a39;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 12px 30px rgba(35, 42, 45, 0.055);
}

.yo-city-pillar .yo-pd-practical-callout p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.62;
}

.yo-city-pillar .yo-pd-section--topic-pratik .yo-pd-detail-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
	max-width: 58rem;
	margin-top: clamp(1.2rem, 2.8vw, 1.8rem);
	margin-inline: auto;
}

.yo-city-pillar .yo-pd-practical-list {
	counter-reset: practical-item;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(0.78rem, 1.65vw, 1rem);
	max-width: 70rem;
	margin: clamp(1.2rem, 2.8vw, 1.8rem) auto 0;
}

.yo-city-pillar .yo-pd-section--topic-pratik .yo-pd-detail-card,
.yo-city-pillar .yo-pd-practical-item {
	counter-increment: practical-item;
	--yo-practical-accent: #1b6962;
	--yo-practical-accent-soft: rgba(27, 105, 98, 0.1);
	position: relative;
	display: grid;
	align-content: start;
	gap: 0.55rem;
	height: 100%;
	padding: clamp(0.95rem, 1.7vw, 1.15rem) clamp(0.95rem, 1.7vw, 1.15rem) clamp(0.95rem, 1.7vw, 1.15rem) clamp(3.05rem, 4.8vw, 3.35rem);
	border: 1px solid color-mix(in srgb, var(--yo-practical-accent) 20%, rgba(24, 63, 66, 0.1));
	border-radius: 16px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
		linear-gradient(90deg, var(--yo-practical-accent-soft), transparent 62%);
	box-shadow: 0 10px 28px rgba(27, 49, 51, 0.05);
}

.yo-city-pillar .yo-pd-section--topic-pratik .yo-pd-detail-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	border-radius: 18px 0 0 18px;
	background: #d86a39;
}

.yo-city-pillar .yo-pd-practical-item:nth-child(1),
.yo-city-pillar .yo-pd-practical-item:nth-child(2) {
	--yo-practical-accent: #c4622d;
	--yo-practical-accent-soft: rgba(196, 98, 45, 0.12);
}

.yo-city-pillar .yo-pd-practical-item:nth-child(3) {
	--yo-practical-accent: #2f6fb3;
	--yo-practical-accent-soft: rgba(47, 111, 179, 0.11);
}

.yo-city-pillar .yo-pd-practical-item:nth-child(4) {
	--yo-practical-accent: #1f8f7c;
	--yo-practical-accent-soft: rgba(31, 143, 124, 0.11);
}

.yo-city-pillar .yo-pd-practical-item:nth-child(5) {
	--yo-practical-accent: #a54638;
	--yo-practical-accent-soft: rgba(165, 70, 56, 0.1);
}

.yo-city-pillar .yo-pd-practical-item:nth-child(6) {
	--yo-practical-accent: #2f7d52;
	--yo-practical-accent-soft: rgba(47, 125, 82, 0.11);
}

.yo-city-pillar .yo-pd-practical-item::before {
	content: counter(practical-item, decimal-leading-zero);
	position: absolute;
	top: clamp(0.85rem, 1.6vw, 1rem);
	left: clamp(0.85rem, 1.6vw, 1rem);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 999px;
	background: var(--yo-practical-accent-soft);
	color: var(--yo-practical-accent);
	font-size: 0.68rem;
	font-weight: 850;
}

.yo-city-pillar .yo-pd-section--topic-pratik .yo-pd-detail-card h3,
.yo-city-pillar .yo-pd-practical-item h3 {
	margin: 0;
	color: color-mix(in srgb, var(--yo-practical-accent) 38%, #183f42);
	font-size: clamp(0.98rem, 0.94rem + 0.18vw, 1.08rem);
	line-height: 1.22;
	text-wrap: balance;
}

.yo-city-pillar .yo-pd-section--topic-pratik .yo-pd-detail-card p,
.yo-city-pillar .yo-pd-section--topic-pratik .yo-pd-detail-card li,
.yo-city-pillar .yo-pd-practical-item p,
.yo-city-pillar .yo-pd-practical-item li {
	color: #536f72;
	font-size: 0.92rem;
	line-height: 1.56;
}

.yo-city-pillar .yo-pd-section--topic-pratik .yo-pd-detail-card p,
.yo-city-pillar .yo-pd-practical-item p {
	margin: 0;
}

.yo-city-pillar .yo-pd-practical-item ul {
	display: grid;
	gap: 0.55rem;
	margin: 0.1rem 0 0;
	padding: 0;
	list-style: none;
}

.yo-city-pillar .yo-pd-practical-item li {
	position: relative;
	padding-left: 1.05rem;
}

.yo-city-pillar .yo-pd-practical-item li::before {
	content: "";
	position: absolute;
	top: 0.67em;
	left: 0;
	width: 0.38rem;
	height: 0.38rem;
	border-radius: 999px;
	background: #d86a39;
}

.yo-city-pillar .yo-pd-practical-item li strong {
	color: #183f42;
	font-weight: 850;
}

.yo-city-pillar .yo-pd-practical-quote {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.95rem;
	align-items: start;
	max-width: 58rem;
	margin: clamp(1rem, 2.4vw, 1.45rem) auto 0;
	padding: clamp(1rem, 2.2vw, 1.3rem);
	border: 1px solid rgba(24, 63, 66, 0.12);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 236, 0.78)),
		radial-gradient(circle at 0% 0%, rgba(196, 98, 45, 0.1), transparent 16rem);
	box-shadow: 0 14px 34px rgba(27, 49, 51, 0.07);
}

.yo-city-pillar .yo-pd-practical-quote__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 999px;
	color: #183f42;
	background: rgba(216, 106, 57, 0.12);
}

.yo-city-pillar .yo-pd-practical-quote__icon svg {
	width: 1.08rem;
	height: 1.08rem;
}

.yo-city-pillar .yo-pd-practical-quote p {
	margin: 0;
	color: #3f5c5e;
	font-size: 0.96rem;
	line-height: 1.62;
}

.yo-city-pillar .yo-pd-practical-quote strong {
	color: #183f42;
	font-weight: 850;
}

.yo-city-pillar .yo-pd-practical-quote a {
	color: #183f42;
	font-weight: 800;
	text-decoration-color: rgba(216, 106, 57, 0.5);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.yo-city-pillar .yo-pd-card-note {
	margin-top: 0.15rem;
	padding: 0.8rem 0.9rem;
	border: 1px solid rgba(216, 106, 57, 0.16);
	border-left: 3px solid #d86a39;
	border-radius: 14px;
	background: rgba(255, 249, 241, 0.78);
}

.yo-city-pillar .yo-pd-card-note p {
	margin: 0;
	color: #4f696c;
	font-size: 0.94rem;
	line-height: 1.6;
}

.yo-city-pillar .yo-pd-card-note strong {
	color: #183f42;
	font-weight: 850;
}

@media (min-width: 48rem) {
	.yo-city-pillar .yo-pd-section--topic-pratik .yo-pd-detail-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 56rem) {
	.yo-city-pillar .yo-pd-practical-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 42rem) {
	.yo-city-pillar .yo-pd-practical-list {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 72rem) {
	.yo-city-pillar .yo-pd-section--topic-pratik .yo-pd-detail-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.yo-city-pillar .yo-pillar-transport {
	display: grid;
	gap: clamp(1rem, 2.4vw, 1.5rem);
	max-width: 68rem;
	margin: clamp(1.35rem, 3vw, 2rem) auto 0;
}

.yo-city-pillar .yo-pillar-transport__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.85rem, 1.8vw, 1.15rem);
}

.yo-city-pillar .yo-pillar-transport__card,
.yo-city-pillar .yo-pillar-transport__note {
	min-width: 0;
	border: 1px solid rgba(24, 63, 66, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 14px 38px rgba(27, 49, 51, 0.06);
}

.yo-city-pillar .yo-pillar-transport__card {
	display: grid;
	align-content: start;
	gap: 0.8rem;
	min-height: 100%;
	padding: clamp(1.05rem, 2.1vw, 1.35rem);
}

.yo-city-pillar .yo-pillar-transport__card h3,
.yo-city-pillar .yo-pillar-transport__note h3 {
	margin: 0;
	color: #183f42;
	line-height: 1.2;
	text-wrap: balance;
}

.yo-city-pillar .yo-pillar-transport__card h3 {
	font-size: clamp(1.08rem, 1rem + 0.32vw, 1.28rem);
}

.yo-city-pillar .yo-pillar-transport__card p,
.yo-city-pillar .yo-pillar-transport__card li,
.yo-city-pillar .yo-pillar-transport__note p,
.yo-city-pillar .yo-pillar-transport__note li {
	color: #4f696c;
	line-height: 1.64;
}

.yo-city-pillar .yo-pillar-transport__card p,
.yo-city-pillar .yo-pillar-transport__note p {
	margin: 0;
}

.yo-city-pillar .yo-pillar-transport__notes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.yo-city-pillar .yo-pillar-transport__note {
	display: grid;
	align-content: start;
	gap: 0.55rem;
	padding: clamp(0.95rem, 1.8vw, 1.15rem);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 246, 240, 0.88));
}

.yo-city-pillar .yo-pillar-transport__note h3 {
	font-size: clamp(0.98rem, 0.94rem + 0.16vw, 1.08rem);
}

.yo-city-pillar .yo-pillar-transport__note p,
.yo-city-pillar .yo-pillar-transport__note li {
	font-size: 0.92rem;
}

@media (max-width: 56rem) {
	.yo-city-pillar .yo-pillar-transport__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 42rem) {
	.yo-city-pillar .yo-pillar-transport {
		margin-top: 1.1rem;
	}

	.yo-city-pillar .yo-pillar-transport__notes {
		grid-template-columns: 1fr;
	}

	.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.yo-city-pillar .yo-pillar-section--transport {
	background:
		radial-gradient(circle at 12% 0%, rgba(196, 98, 45, 0.1), transparent 28rem),
		linear-gradient(180deg, #fff 0%, #f8f4ee 100%);
}

.yo-city-pillar .yo-pillar-transport__grid {
	align-items: stretch;
}

.yo-city-pillar .yo-pillar-transport__card {
	position: relative;
	overflow: hidden;
}

.yo-city-pillar .yo-pillar-transport__card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, #c4622d, rgba(24, 63, 66, 0.55));
}

.yo-city-pillar .yo-pillar-transport__notes {
	align-items: stretch;
}

.yo-city-pillar .yo-pillar-transport__note {
	position: relative;
	padding-left: clamp(1.15rem, 2vw, 1.45rem);
}

.yo-city-pillar .yo-pd-check-panel,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) {
	counter-reset: yo-check-item;
	grid-column: 1 / -1;
	gap: clamp(1.1rem, 2.4vw, 1.55rem);
	padding: clamp(1.12rem, 2.4vw, 1.6rem);
	overflow: hidden;
	border-color: rgba(24, 63, 66, 0.11);
	border-radius: 22px;
	background:
		radial-gradient(circle at 6% 0%, rgba(196, 98, 45, 0.12), transparent 18rem),
		radial-gradient(circle at 100% 12%, rgba(24, 105, 98, 0.1), transparent 20rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(247, 243, 236, 0.72));
	box-shadow: 0 20px 52px rgba(27, 49, 51, 0.085);
	backdrop-filter: blur(18px);
}

.yo-city-pillar .yo-pd-check-panel::before,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5))::before {
	content: none;
}

.yo-city-pillar .yo-pd-check-panel h3,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) h3 {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.65rem 1rem;
	align-items: center;
	max-width: 40rem;
	color: #173d40;
	font-size: clamp(1.12rem, 1rem + 0.42vw, 1.34rem);
	letter-spacing: 0;
}

.yo-city-pillar .yo-pd-check-panel h3[data-label]::before,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) h3[data-label]::before {
	content: attr(data-label);
	grid-column: 1 / -1;
	width: fit-content;
	padding: 0.28rem 0.58rem;
	border: 1px solid rgba(24, 63, 66, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: #8c4a24;
	font-size: 0.7rem;
	font-weight: 850;
	line-height: 1;
}

.yo-city-pillar .yo-pd-check-panel h3[data-count]::after,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) h3[data-count]::after {
	content: attr(data-count) " kritik madde";
	justify-self: start;
	width: fit-content;
	padding: 0.3rem 0.62rem;
	border-radius: 999px;
	background: rgba(24, 63, 66, 0.08);
	color: #35585b;
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
}

.yo-city-pillar .yo-pd-check-panel ul,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) ul {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(0.72rem, 1.5vw, 0.95rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.yo-city-pillar .yo-pd-check-panel li,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li {
	counter-increment: yo-check-item;
	--yo-check-accent: #1b6962;
	--yo-check-accent-soft: rgba(27, 105, 98, 0.1);
	position: relative;
	display: block;
	min-width: 0;
	min-height: 100%;
	padding: clamp(0.92rem, 1.7vw, 1.1rem) clamp(0.92rem, 1.7vw, 1.1rem) clamp(0.92rem, 1.7vw, 1.1rem) clamp(3.05rem, 4.8vw, 3.35rem);
	border: 1px solid color-mix(in srgb, var(--yo-check-accent) 22%, rgba(24, 63, 66, 0.1));
	border-radius: 16px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
		linear-gradient(90deg, var(--yo-check-accent-soft), transparent 62%);
	box-shadow: 0 10px 26px rgba(27, 49, 51, 0.045);
	color: #4f696c;
	line-height: 1.58;
}

.yo-city-pillar .yo-pd-check-panel li:nth-child(1),
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(1) {
	--yo-check-accent: #1f8f7c;
	--yo-check-accent-soft: rgba(31, 143, 124, 0.12);
}

.yo-city-pillar .yo-pd-check-panel li:nth-child(2),
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(2) {
	--yo-check-accent: #2f6fb3;
	--yo-check-accent-soft: rgba(47, 111, 179, 0.11);
}

.yo-city-pillar .yo-pd-check-panel li:nth-child(8),
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(8) {
	--yo-check-accent: #c4622d;
	--yo-check-accent-soft: rgba(196, 98, 45, 0.13);
}

.yo-city-pillar .yo-pd-check-panel li:nth-child(3),
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(3) {
	--yo-check-accent: #2f6fb3;
	--yo-check-accent-soft: rgba(47, 111, 179, 0.11);
}

.yo-city-pillar .yo-pd-check-panel li:nth-child(4),
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(4) {
	--yo-check-accent: #8b6f2a;
	--yo-check-accent-soft: rgba(139, 111, 42, 0.12);
}

.yo-city-pillar .yo-pd-check-panel li:nth-child(5),
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(5),
.yo-city-pillar .yo-pd-check-panel li:nth-child(7),
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(7) {
	--yo-check-accent: #2f7d52;
	--yo-check-accent-soft: rgba(47, 125, 82, 0.11);
}

.yo-city-pillar .yo-pd-check-panel li:nth-child(6),
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(6) {
	--yo-check-accent: #a54638;
	--yo-check-accent-soft: rgba(165, 70, 56, 0.1);
}

.yo-city-pillar .yo-pd-check-panel li::before,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li::before {
	content: counter(yo-check-item, decimal-leading-zero);
	position: absolute;
	top: clamp(0.85rem, 1.6vw, 1rem);
	left: clamp(0.85rem, 1.6vw, 1rem);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 999px;
	background: var(--yo-check-accent-soft);
	color: var(--yo-check-accent);
	font-size: 0.68rem;
	font-weight: 850;
}

.yo-city-pillar .yo-pd-check-panel li > strong:first-child,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li > strong:first-child {
	display: block;
	margin-bottom: 0.25rem;
	color: color-mix(in srgb, var(--yo-check-accent) 40%, #183f42);
	font-size: 0.96rem;
	line-height: 1.25;
}

.yo-city-pillar .yo-pd-check-panel li > strong:first-child::after,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li > strong:first-child::after {
	display: inline-flex;
	margin-left: 0.45rem;
	padding: 0.16rem 0.42rem;
	border-radius: 999px;
	background: var(--yo-check-accent-soft);
	color: var(--yo-check-accent);
	font-size: 0.62rem;
	font-weight: 850;
	line-height: 1;
	vertical-align: 0.08em;
}

.yo-city-pillar .yo-pd-check-panel li:nth-child(1) > strong:first-child::after,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(1) > strong:first-child::after {
	content: "Zorunlu";
}

.yo-city-pillar .yo-pd-check-panel li:nth-child(2) > strong:first-child::after,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(2) > strong:first-child::after {
	content: "Kimlik yeterli";
}

.yo-city-pillar .yo-pd-check-panel li:nth-child(3) > strong:first-child::after,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(3) > strong:first-child::after {
	content: "Vizesiz";
}

.yo-city-pillar .yo-pd-check-panel li:nth-child(8) > strong:first-child::after,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(8) > strong:first-child::after {
	content: "Online öde";
}

.yo-city-pillar .yo-pd-check-panel li:nth-child(4) > strong:first-child::after,
.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li:nth-child(4) > strong:first-child::after {
	content: "Zamanlama";
}

@media (max-width: 56rem) {
	.yo-city-pillar .yo-pd-check-panel ul,
	.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 34rem) {
	.yo-city-pillar .yo-pd-check-panel ul,
	.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) ul {
		grid-template-columns: 1fr;
	}

	.yo-city-pillar .yo-pd-check-panel li,
	.yo-city-pillar .yo-pillar-transport__note:has(ul li:nth-child(5)) li {
		padding-left: 2.95rem;
	}
}

/* Avrupa hub region selector: homepage destination-card language, scoped. */
.yo-page--continent .yo-av-regions {
	order: 3;
	padding: clamp(28px, 4.5vw, 56px) 0 clamp(42px, 5vw, 68px);
	background: linear-gradient(180deg, #fff 0%, rgba(248, 250, 249, .9) 100%);
}

.yo-pillar-hub > #bolgeler.yo-av-regions {
	order: 3;
}

.yo-page--continent .yo-av-regions .yo-hp-container {
	width: 100%;
}

.yo-page--continent .yo-av-region-rail {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
	align-items: start;
}

.yo-page--continent .yo-av-region-unit {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 12px;
}

.yo-page--continent .yo-av-region-unit[hidden] {
	display: none;
}

.yo-page--continent .yo-av-region-unit .yo-kita-card {
	min-height: 254px;
	aspect-ratio: 4 / 5;
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(17, 24, 39, .12);
}

.yo-page--continent .yo-av-region-unit .yo-kita-card img {
	opacity: .86;
}

.yo-page--continent .yo-av-region-unit .yo-kita-overlay {
	padding: 17px 14px 15px;
	background:
		linear-gradient(to bottom, rgba(196, 98, 45, .12) 0%, rgba(196, 98, 45, 0) 42%),
		linear-gradient(to top, rgba(10, 38, 38, .94) 0%, rgba(10, 38, 38, .64) 34%, rgba(10, 38, 38, 0) 68%);
}

.yo-page--continent .yo-av-region-unit .yo-kita-title {
	font-size: clamp(.95rem, 1.15vw, 1.12rem);
	line-height: 1.16;
}

.yo-page--continent .yo-av-region-unit .yo-kita-sub {
	display: block;
	min-height: 4.6em;
	color: rgba(255, 255, 255, .82);
	font-size: .7rem;
	line-height: 1.34;
}

.yo-page--continent .yo-av-country-board {
	padding: 0 2px;
}

.yo-page--continent .yo-av-country-board .yo-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.yo-page--continent .yo-av-country-board .yo-chip-list a,
.yo-page--continent .yo-av-country-board .yo-chip-list span {
	min-height: 30px;
	padding: 7px 10px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(26, 82, 82, .12);
	box-shadow: 0 8px 20px rgba(17, 24, 39, .06);
	color: #1a5252;
	font-size: .72rem;
	font-weight: 800;
	line-height: 1.05;
	text-decoration: none;
}

.yo-page--continent .yo-av-country-board .yo-chip-list a:hover {
	border-color: rgba(196, 98, 45, .4);
	color: #9a4f26;
}

.yo-page--continent #ulkeler {
	background:
		radial-gradient(circle at 10% 0%, rgba(26, 82, 82, .07), transparent 30%),
		radial-gradient(circle at 92% 8%, rgba(196, 98, 45, .08), transparent 28%),
		linear-gradient(180deg, rgba(248, 250, 249, .92) 0%, #fff 100%);
}

.yo-page--continent #ulkeler .yo-pillar-section__head {
	max-width: 820px;
}

.yo-page--continent #ulkeler .yo-country-filter-bar {
	position: sticky;
	z-index: 4;
	top: calc(var(--yo-adminbar-height, 0px) + var(--header-height, 0px) + 8px);
	width: fit-content;
	max-width: 100%;
	margin: 0 auto clamp(22px, 2.8vw, 34px);
	padding: 8px;
	border: 1px solid rgba(26, 82, 82, .1);
	border-radius: 999px;
	background: rgba(255, 255, 255, .86);
	box-shadow: 0 14px 34px rgba(17, 24, 39, .08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.yo-page--continent #ulkeler .yo-country-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(16px, 2vw, 22px);
}

.yo-page--continent #ulkeler .yo-country-grid.is-filtered {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yo-page--continent #ulkeler .yo-country-card {
	position: relative;
	display: flex;
	min-height: 100%;
	flex-direction: column;
	gap: 13px;
	padding: 0 22px 22px;
	border: 1px solid rgba(18, 63, 63, .1);
	border-radius: 18px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 16px 38px rgba(17, 24, 39, .07);
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.yo-page--continent #ulkeler .yo-country-card[hidden] {
	display: none;
}

.yo-page--continent #ulkeler .yo-country-card:hover {
	transform: translateY(-3px);
	border-color: rgba(196, 98, 45, .24);
	box-shadow: 0 22px 48px rgba(17, 24, 39, .11);
}

.yo-page--continent #ulkeler .yo-country-card h3 {
	margin: 0 -22px 3px;
	padding: 17px 18px;
	background:
		linear-gradient(135deg, rgba(26, 82, 82, .18), rgba(26, 82, 82, .08)),
		linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .52));
	color: #123f3f;
	font-size: 1.08rem;
}

.yo-page--continent #ulkeler .yo-country-meta {
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	margin: 0;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(196, 98, 45, .09);
	color: #9a4f26;
	font-size: .76rem;
	font-weight: 850;
	line-height: 1.25;
}

.yo-page--continent #ulkeler .yo-country-card > p:not(.yo-country-meta) {
	margin: 0;
	color: rgba(18, 63, 63, .76);
	font-size: .94rem;
	line-height: 1.62;
}

.yo-page--continent #ulkeler .yo-country-cities {
	display: grid;
	gap: 9px;
	margin-top: auto;
	padding-top: 5px;
}

.yo-page--continent #ulkeler .yo-country-cities__label {
	color: rgba(18, 63, 63, .52);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .08em;
	line-height: 1;
	text-transform: uppercase;
}

.yo-page--continent #ulkeler .yo-country-cities .yo-chip-list {
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.yo-page--continent #ulkeler .yo-country-cities .yo-chip-list a {
	min-height: 30px;
	padding: 7px 10px;
	border-color: rgba(26, 82, 82, .12);
	background: rgba(248, 250, 249, .92);
	color: #1a5252;
	font-size: .74rem;
	line-height: 1.05;
}

.yo-page--continent #ulkeler .yo-country-cities .yo-chip-list a:hover {
	border-color: rgba(196, 98, 45, .4);
	background: #fff;
	color: #9a4f26;
}

.yo-page--continent #ulkeler .yo-card-cta {
	min-height: 38px;
	margin-top: 2px;
	padding: 9px 13px;
	border-radius: 999px;
	background: #123f3f;
	color: #fff;
	font-size: .78rem;
}

.yo-page--continent #ulkeler .yo-country-cities + .yo-card-cta {
	margin-top: 0;
}

.yo-page--continent :is(.yo-smart-grid, .yo-prep-grid, .yo-list-grid) {
	display: grid;
	align-items: stretch;
}

.yo-page--continent .yo-smart-grid,
.yo-page--continent .yo-prep-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yo-page--continent .yo-list-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yo-page--continent :is(.yo-smart-grid, .yo-prep-grid, .yo-list-grid) > * {
	width: auto;
	min-width: 0;
	max-width: none;
	flex: initial;
}

.yo-page--continent :is(.yo-budget-profiles, .yo-budget-city-grid) {
	display: grid;
	align-items: stretch;
}

.yo-page--continent .yo-budget-profiles {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yo-page--continent .yo-budget-city-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yo-page--continent :is(.yo-budget-profiles, .yo-budget-city-grid) > * {
	width: auto;
	min-width: 0;
	max-width: none;
	flex: initial;
}

@media (max-width: 1180px) {
	.yo-page--continent .yo-av-region-rail {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		padding: 0 0 8px;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
	}

	.yo-page--continent .yo-av-region-rail::-webkit-scrollbar {
		display: none;
	}

	.yo-page--continent .yo-av-region-unit {
		flex: 0 0 180px;
		scroll-snap-align: start;
	}
}

@media (max-width: 1180px) {
	.yo-page--continent #ulkeler .yo-country-grid,
	.yo-page--continent #ulkeler .yo-country-grid.is-filtered {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yo-page--continent .yo-list-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.yo-page--continent .yo-budget-profiles,
	.yo-page--continent .yo-budget-city-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.yo-page--continent .yo-av-regions {
		padding-top: 24px;
	}

	.yo-page--continent .yo-av-region-rail {
		margin-inline: -16px;
		padding-inline: 16px;
	}

	.yo-page--continent .yo-av-region-unit {
		flex-basis: 156px;
	}

	.yo-page--continent .yo-av-region-unit .yo-kita-card {
		min-height: 214px;
		border-radius: 12px;
	}

	.yo-page--continent .yo-av-region-unit .yo-kita-sub {
		display: none;
	}

	.yo-page--continent .yo-av-country-board .yo-chip-list a {
		min-height: 28px;
		padding-inline: 9px;
		font-size: .68rem;
	}

	.yo-page--continent #ulkeler .yo-country-filter-bar {
		width: auto;
		margin-inline: -6px;
		border-radius: 18px;
	}

	.yo-page--continent #ulkeler .yo-country-grid,
	.yo-page--continent #ulkeler .yo-country-grid.is-filtered {
		grid-template-columns: 1fr;
	}

	.yo-page--continent #ulkeler .yo-country-card {
		padding-inline: 18px;
		border-radius: 16px;
	}

	.yo-page--continent #ulkeler .yo-country-card h3 {
		margin-inline: -18px;
	}

	.yo-page--continent .yo-smart-grid,
	.yo-page--continent .yo-prep-grid,
	.yo-page--continent .yo-list-grid,
	.yo-page--continent .yo-budget-profiles,
	.yo-page--continent .yo-budget-city-grid {
		grid-template-columns: 1fr;
	}

	.yo-page--continent .yo-smart-card__top {
		align-items: flex-start;
		flex-direction: column;
	}

	.yo-page--continent .yo-smart-card__badge {
		width: fit-content;
		max-width: 100%;
		white-space: normal;
		line-height: 1.2;
	}

	.yo-budget-compare {
		border-radius: 16px;
		background: transparent;
		box-shadow: none;
	}

	.yo-budget-compare__head {
		display: none;
	}

	.yo-budget-compare__rows {
		gap: 10px;
	}

	.yo-budget-row {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 9px;
		padding: 14px;
		border: 1px solid rgba(26, 82, 82, .12);
		border-radius: 16px;
		background: #fff;
		box-shadow: 0 10px 24px rgba(17, 24, 39, .055);
	}

	.yo-budget-row:nth-child(even) {
		background: #fff;
	}

	.yo-budget-row__city {
		grid-column: 1 / -1;
	}

	.yo-budget-row__city p {
		-webkit-line-clamp: 3;
	}

	.yo-budget-row__band,
	.yo-budget-row__stat {
		display: grid;
		gap: 3px;
		padding: 9px 10px;
		border-radius: 12px;
		background: rgba(245, 241, 235, .78);
		font-size: .82rem;
	}

	.yo-budget-row__band::before,
	.yo-budget-row__stat::before {
		content: attr(data-label);
		color: rgba(18, 63, 63, .58);
		font-size: .61rem;
		font-weight: 850;
		letter-spacing: .06em;
		text-transform: uppercase;
	}
}

.yo-page--continent .yo-card-grid.yo-smart-grid,
.yo-page--continent .yo-card-grid.yo-prep-grid,
.yo-page--continent .yo-card-grid.yo-home-spoke-grid {
	display: grid;
	align-items: stretch;
}

.yo-page--continent .yo-card-grid.yo-smart-grid,
.yo-page--continent .yo-card-grid.yo-prep-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yo-page--continent .yo-card-grid.yo-home-spoke-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yo-page--continent .yo-card-grid:is(.yo-smart-grid, .yo-prep-grid, .yo-home-spoke-grid) > * {
	width: auto;
	min-width: 0;
	max-width: none;
	flex: initial;
}

.yo-page--continent #akilli-rotalar .yo-card-grid.yo-smart-grid,
.yo-page--continent #hazirlik .yo-card-grid.yo-prep-grid {
	display: grid;
	align-items: stretch;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yo-page--continent #akilli-rotalar .yo-card-grid.yo-smart-grid > *,
.yo-page--continent #hazirlik .yo-card-grid.yo-prep-grid > * {
	width: auto;
	min-width: 0;
	max-width: none;
	flex: initial;
}

@media (max-width: 1180px) {
	.yo-page--continent .yo-card-grid.yo-home-spoke-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.yo-page--continent .yo-card-grid.yo-smart-grid,
	.yo-page--continent .yo-card-grid.yo-prep-grid,
	.yo-page--continent .yo-card-grid.yo-home-spoke-grid {
		grid-template-columns: 1fr;
	}

	.yo-page--continent #akilli-rotalar .yo-card-grid.yo-smart-grid,
	.yo-page--continent #hazirlik .yo-card-grid.yo-prep-grid {
		grid-template-columns: 1fr;
	}
}

.yo-city-pillar .yo-pillar-transport__note::before {
	content: "";
	position: absolute;
