.yo-guide-hub {
    --yo-guide-max: 1120px;
    --yo-guide-bg: #f7f4ef;
    --yo-guide-soft: #fffaf4;
    --yo-guide-line: rgba(26,82,82,.12);
    --yo-guide-shadow: 0 18px 44px rgba(17,24,39,.08);
    background: #fff;
    color: #152027;
    overflow-x: hidden;
}

.yo-guide-hub *,
.yo-guide-hub *::before,
.yo-guide-hub *::after {
    min-width: 0;
}

.yo-guide-card svg {
    width: 22px;
    height: 22px;
}

.yo-guide-cluster-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.yo-guide-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    border: 1px solid rgba(26,82,82,.11);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17,24,39,.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    overflow: hidden;
}

.yo-guide-card > * {
    position: relative;
    z-index: 2;
}

.yo-guide-card:hover {
    transform: translateY(-3px);
    border-color: rgba(196,98,45,.32);
    box-shadow: 0 18px 42px rgba(17,24,39,.1);
}

.yo-guide-card--bureaucracy::before,
.yo-guide-card--bureaucracy::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.yo-guide-card--bureaucracy::before {
    z-index: 0;
    background-image: none;
    background-size: cover;
    background-position: center;
    opacity: .8;
    filter: blur(2.5px) saturate(.82);
    transform: scale(1.04);
}

.yo-guide-card--bureaucracy::after {
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(255,255,255,.74) 0%, rgba(255,255,255,.58) 48%, rgba(255,255,255,.82) 100%),
        linear-gradient(180deg, rgba(26,82,82,.06), rgba(196,98,45,.04));
}

.yo-guide-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(196,98,45,.1);
    color: var(--yo-terra);
}

.yo-guide-card h3 {
    margin: 0;
    color: #123f3f;
    font-size: 1.22rem;
    line-height: 1.22;
    letter-spacing: 0;
}

.yo-guide-card h3 + p {
    margin-top: 18px;
}

.yo-guide-card p {
    margin: 0 0 20px;
    color: #5d6875;
    font-size: .93rem;
    line-height: 1.78;
    overflow-wrap: break-word;
}

.yo-guide-card ul {
    margin: 0 0 20px;
    padding-left: 1.2rem;
}

.yo-guide-card li + li {
    margin-top: 10px;
}

/* .yo-spoke-link → yo-pillar-shared.css */

.yo-guide-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: auto;
    padding: 9px 16px;
    border: 1px solid rgba(26,82,82,.22);
    border-radius: 999px;
    color: #123f3f;
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
}

.yo-guide-card__cta:hover {
    border-color: var(--yo-terra);
    background: var(--yo-terra);
    color: #fff;
}

.yo-guide-post-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.yo-guide-post-grid--featured {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yo-guide-post {
    min-width: 0;
}

.yo-guide-post__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(26,82,82,.1);
    border-radius: 16px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(17,24,39,.07);
    transition: transform .2s ease, box-shadow .2s ease;
}

.yo-guide-post__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(17,24,39,.12);
}

.yo-guide-post__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #123f3f;
}

.yo-guide-post__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.yo-guide-post__link:hover .yo-guide-post__media img {
    transform: scale(1.04);
}

.yo-guide-post__fallback {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #123f3f 0%, #c4622d 100%);
}

.yo-guide-post__body {
    display: grid;
    gap: 8px;
    padding: 16px;
}

.yo-guide-post__body time {
    color: var(--yo-terra);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.yo-guide-post__body strong {
    color: #182231;
    font-size: .98rem;
    line-height: 1.38;
}

.yo-guide-starter {
    background:
        radial-gradient(circle at top left, rgba(196,98,45,.11), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
}

.yo-guide-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    counter-reset: guide-step;
}

.yo-guide-step {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 18px;
    border: 1px solid rgba(26,82,82,.11);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(17,24,39,.06);
}

.yo-guide-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #123f3f;
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    flex: 0 0 auto;
}

.yo-guide-step a,
.yo-guide-step strong {
    color: #17202c;
    font-size: .98rem;
    line-height: 1.35;
    font-weight: 800;
    text-decoration: none;
}

.yo-guide-step a:hover {
    color: var(--yo-terra);
}

.yo-guide-faq {
    background: #fff;
}

.yo-guide-faq__list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

/* yo-faq evrensel stil yo-pillar-shared.css'de tanımlı */

@media (max-width: 1024px) {
    .yo-guide-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yo-guide-cluster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yo-guide-post-grid,
    .yo-guide-post-grid--featured {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .yo-guide-steps {
        grid-template-columns: 1fr;
    }

    .yo-guide-card {
        padding: 21px;
    }
}

@media (max-width: 768px) {
    .yo-guide-cluster-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .yo-guide-post-grid,
    .yo-guide-post-grid--featured {
        grid-template-columns: 1fr;
    }

    .yo-guide-post__link {
        border-radius: 14px;
    }
}

/* .yo-pagination → yo-pillar-shared.css'e taşındı */

/* ============================================================
   TURKIYE PILLAR HUB
   ============================================================ */
