/* CMS modülleri — blog, sayfa, SSS, galeri, iletişim, tedavi listesi vb. */
:root {
    --k14-content-max: 1200px;
}

/* İçerik kısaysa footer sayfanın altına yapışır */
html {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
    max-width: 1360px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    overflow-x: clip;
    box-sizing: border-box;
}
.site-main--flush {
    max-width: none;
    padding: 0;
    width: 100%;
}
.site-main-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
    width: 100%;
}
@media (max-width: 768px) {
    .site-main { padding: 1.25rem 1rem; }
    .site-main-inner { padding: 1.25rem 1rem; }
}
.footer-brand-text { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.55; opacity: 0.85; }
.footer-contact-line { margin: 0.35rem 0; font-size: 0.88rem; line-height: 1.5; color: rgba(255, 255, 255, 0.75); }
.footer-contact-line a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.footer-contact-line a:hover { color: var(--accent); }

.k14-footer-mediapix {
    display: inline-flex;
    align-items: center;
    opacity: 0.45;
    transition: opacity 0.25s ease;
}
.k14-footer-mediapix:hover {
    opacity: 1;
}
.k14-footer-mediapix img {
    display: block;
    height: 26px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .footer-bottom .k14-footer-mediapix {
        align-self: flex-end;
    }
}

/* Anasayfa hero (panelden video + metin) — tam opaklık + scrim */
.hero.k14-hero-cms .hero-video-bg {
    opacity: 0.15 !important;
}
.hero.k14-hero-cms .hero-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(33, 41, 46, calc(var(--hero-overlay, 0.45)));
    pointer-events: none;
}
.hero.k14-hero-cms .hero-video-bg video,
.hero.k14-hero-cms .hero-video-bg iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}
.hero.k14-hero-cms .slider-track {
    min-height: min(88vh, 720px);
}
.hero.k14-hero-cms:not(.k14-hero-multi) .slider-controls,
.hero.k14-hero-cms:not(.k14-hero-multi) .slider-progress {
    display: none !important;
}
.hero.k14-hero-cms .slide-content {
    color: var(--text);
}
.hero.k14-hero-cms .slide-inner {
    padding-top: 13rem;
    padding-bottom: 3rem;
}
.hero.k14-hero-cms .slide h1 .k14-hl {
    position: relative;
    display: inline-block;
}
.hero.k14-hero-cms .slide h1 .k14-hl::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: -4px;
    right: -4px;
    height: 14px;
    background: var(--accent);
    opacity: 0.3;
    z-index: -1;
    border-radius: 2px;
    transform: skewX(-3deg);
}
.k14-hero-fallback {
    width: 100%;
    height: 100%;
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary), var(--primary-light, #2d3840));
}
.k14-hero-placeholder-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 480px;
}
@media (max-width: 900px) {
    .hero.k14-hero-cms .slide-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .hero.k14-hero-cms .slider-track {
        min-height: min(58vh, 520px);
    }
    .hero.k14-hero-cms .slide-inner {
        padding-top: 6.5rem;
        padding-bottom: 2rem;
    }
    .hero.k14-hero-cms .slide.k14-slide-tooth .slide-visual {
        display: none;
    }
}

/* Panel slayt (yatay kaydırma) */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 1.35rem;
    line-height: 1;
    vertical-align: middle;
}
.k14-slider { display: flex; align-items: stretch; gap: 0.35rem; }
.k14-slider__viewport { flex: 1; min-width: 0; border-radius: var(--radius-md, 14px); overflow: hidden; background: var(--bg-soft, #f1f3f6); }
.k14-slider__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
}
.k14-slider__arrow {
    flex-shrink: 0;
    width: 2.5rem;
    border: none;
    border-radius: 10px;
    background: var(--white);
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    align-self: center;
}
.k14-slider__arrow:hover { background: var(--accent); }
.k14-slide {
    min-width: min(100% - 2rem, 440px);
    scroll-snap-align: start;
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}
.k14-slide__img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.k14-slide__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.k14-slide__body { padding: 1.1rem 1.15rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.65rem; }
.k14-slide__title { margin: 0; font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.k14-slide__text { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--text-muted); }
.k14-slide__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    margin-top: auto;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}
.k14-slide__btn .material-symbols-outlined { font-size: 1.1rem; }
@media (max-width: 640px) {
    .k14-slider__arrow { display: none; }
}

.k14-section { margin-top: 2.25rem; }
.k14-section__h { margin: 0 0 1rem; font-size: 1.35rem; font-weight: 800; color: var(--primary); }
.k14-section__lead { margin: -0.25rem 0 1.25rem; color: var(--text-muted); line-height: 1.55; font-size: 0.98rem; }
.k14-hl { color: var(--accent); font-weight: 800; }

.k14-section--stats { margin-top: 2rem; }
.k14-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.k14-stat {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.k14-stat__num { display: block; font-size: 1.75rem; font-weight: 800; color: var(--accent); line-height: 1.2; }
.k14-stat__cap { display: block; margin-top: 0.35rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.35; }

.k14-tgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.k14-tcard { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.k14-tcard__link, .k14-tcard__inner { display: block; text-decoration: none; color: inherit; height: 100%; }
.k14-tcard__body { padding: 1.25rem 1.1rem; }
.k14-tcard__img { margin: -1.25rem -1.1rem 0.85rem; aspect-ratio: 2/1; overflow: hidden; background: var(--bg-soft); }
.k14-tcard__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.k14-tcard__icon { font-size: 2.25rem !important; color: var(--accent); display: block; margin-bottom: 0.5rem; }
.k14-tcard__title { margin: 0 0 0.4rem; font-size: 1.05rem; font-weight: 800; color: var(--primary); }
.k14-tcard__desc { margin: 0; font-size: 0.88rem; color: var(--text-muted); line-height: 1.45; }

.k14-page {
    max-width: var(--k14-content-max);
    margin: 0 auto;
}
.k14-page.k14-page--inner {
    max-width: var(--k14-content-max);
    background: var(--white);
    border-radius: var(--radius-md, 14px);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-md);
}
.k14-cms-page {
    position: relative;
    border-top: 4px solid var(--accent, #fecc07);
    background: linear-gradient(180deg, rgba(254, 204, 7, 0.06) 0%, var(--white) 48%);
}
.k14-cms-page .k14-page__body {
    max-width: 100%;
}
.k14-page.k14-page--treatment-main {
    max-width: none;
    margin: 0;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-md, 14px);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-md);
}
.k14-page__title { margin: 0 0 1rem; font-size: clamp(1.35rem, 3vw, 1.75rem); font-weight: 800; color: var(--primary); }
.k14-page__empty { color: var(--text-muted); margin: 0; }
.k14-page__lead { margin: -0.25rem 0 1.25rem; font-size: 1.05rem; color: var(--text-muted); line-height: 1.55; }
.k14-page__crumb { margin: 0 0 0.75rem; font-size: 0.88rem; }
.k14-page__crumb a { color: var(--primary); font-weight: 600; text-decoration: none; }
.k14-page__crumb a:hover { text-decoration: underline; }
.k14-page__heroimg { margin: 0 0 1.25rem; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-soft); }
.k14-page__heroimg img { width: 100%; height: auto; display: block; }
.k14-page__bottom-img { margin: 2rem 0 0; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-soft); }
.k14-page__bottom-img img { width: 100%; height: auto; display: block; }
.k14-prose { font-size: 0.98rem; line-height: 1.65; color: var(--text); }
.k14-prose p { margin: 0 0 1rem; }
.k14-prose h2 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; color: var(--primary); }
.k14-prose ul, .k14-prose ol { margin: 0 0 1rem; padding-left: 1.25rem; }

.k14-treatment-list { list-style: none; padding: 0; margin: 0; }
.k14-treatment-list li { padding: 0.65rem 0; border-bottom: 1px solid var(--border-light); }
.k14-treatment-list a { font-weight: 700; color: var(--primary); text-decoration: none; }
.k14-treatment-list a:hover { color: var(--accent-dark); }
.k14-treatment-list__sub { font-weight: 400; color: var(--text-muted); }
.k14-treatment-list__hint { font-size: 0.8rem; color: var(--text-light); }

/* Blog liste / kategori */
.k14-blog-layout {
    max-width: var(--k14-content-max);
    margin: 0 auto;
}
.k14-blog-empty {
    margin: 0;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
}
.k14-blog-cats {
    margin: 0 0 1.75rem;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, rgba(254, 204, 7, 0.12), rgba(33, 41, 46, 0.04));
    border-radius: var(--radius-lg, 16px);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.06));
}
.k14-blog-cats__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-dark, #b89400);
    margin-bottom: 0.65rem;
}
.k14-blog-cats__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.k14-blog-cats__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--white);
    border: 1px solid var(--border-light);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.k14-blog-cats__pill:hover {
    background: var(--accent, #fecc07);
    border-color: transparent;
    transform: translateY(-1px);
}
.k14-blog-featured {
    display: grid;
    gap: 0;
    margin-bottom: 2.5rem;
    border-radius: var(--radius-lg, 18px);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.07));
}
@media (min-width: 900px) {
    .k14-blog-featured {
        grid-template-columns: 1.15fr 1fr;
        align-items: stretch;
    }
}
.k14-blog-featured__media-link {
    display: block;
    height: 100%;
    min-height: 220px;
    text-decoration: none;
    color: inherit;
}
.k14-blog-featured__media {
    height: 100%;
    min-height: 220px;
    background: var(--bg-soft);
}
@media (min-width: 900px) {
    .k14-blog-featured__media {
        min-height: 100%;
    }
}
.k14-blog-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.k14-blog-featured__placeholder {
    height: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary-light, #3a4650), var(--primary));
    color: rgba(255, 255, 255, 0.25);
}
.k14-blog-featured__placeholder .material-symbols-outlined {
    font-size: 4rem;
}
.k14-blog-featured__body {
    padding: 1.5rem 1.35rem 1.65rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
}
.k14-blog-featured__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-dark, #b89400);
}
.k14-blog-featured__time {
    color: var(--text-muted);
    font-weight: 600;
}
.k14-blog-featured__title {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.k14-blog-featured__title a {
    color: var(--primary);
    text-decoration: none;
}
.k14-blog-featured__title a:hover {
    color: var(--accent-dark);
}
.k14-blog-featured__ex {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.k14-blog-featured__cta {
    align-self: flex-start;
    margin-top: 0.35rem;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--accent, #fecc07);
}
.k14-blog-featured__cta:hover {
    color: var(--accent-dark);
}
.k14-blog-grid__heading {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}
.k14-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.k14-blog-card {
    margin: 0;
    border-radius: var(--radius-md, 14px);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.07));
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}
.k14-blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.k14-blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.k14-blog-card__media {
    aspect-ratio: 16/10;
    background: var(--bg-soft);
    overflow: hidden;
}
.k14-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.k14-blog-card__placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e8eaed, #dfe3e8);
    color: rgba(33, 41, 46, 0.35);
}
.k14-blog-card__placeholder .material-symbols-outlined {
    font-size: 2.5rem;
}
.k14-blog-card__body {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}
.k14-blog-card__time {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.k14-blog-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--primary);
}
.k14-blog-card__link:hover .k14-blog-card__title {
    color: var(--accent-dark);
}
.k14-blog-card__ex {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    flex: 1;
}

/* Blog detay */
.k14-blog-post {
    max-width: var(--k14-content-max);
    margin: 0 auto;
}
.k14-blog-post__head {
    margin-bottom: 0.5rem;
}
.k14-blog-post__title {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--primary);
}
.k14-blog-post__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
}
.k14-blog-post__back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary);
    text-decoration: none;
}
.k14-blog-post__back:hover {
    color: var(--accent-dark);
}
.k14-blog-post__back .material-symbols-outlined {
    font-size: 1.15rem;
}
.k14-blog-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.k14-blog-post__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.k14-blog-post__meta-item .material-symbols-outlined {
    font-size: 1.1rem;
    opacity: 0.85;
    color: var(--accent-dark);
}
.k14-blog-post__figure {
    margin: 0 0 1.75rem;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-soft);
}
.k14-blog-post__figure img {
    width: 100%;
    height: auto;
    display: block;
}
.k14-blog-post__article {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: min(72ch, 100%);
    margin-left: auto;
    margin-right: auto;
}
.k14-blog-post__foot {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}
.k14-blog-post__all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}
.k14-blog-post__all:hover {
    color: var(--accent-dark);
}

.k14-faq__list { display: flex; flex-direction: column; gap: 0.5rem; }
.k14-faq__item { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border-light); overflow: hidden; }
.k14-faq__q { padding: 1rem 1.1rem; cursor: pointer; font-weight: 700; color: var(--primary); list-style: none; }
.k14-faq__item[open] .k14-faq__q { color: var(--accent-dark); }
.k14-faq__q::-webkit-details-marker { display: none; }
.k14-faq__a { padding: 0 1.1rem 1.1rem; border-top: 1px solid var(--border-light); }

.k14-docs__list { list-style: none; padding: 0; margin: 0; }
.k14-docs__item { padding: 0.65rem 0; border-bottom: 1px solid var(--border-light); }
.k14-docs__link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.k14-docs__link:hover { color: var(--accent-dark); }

.k14-gallery__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.k14-gallery__cell { margin: 0; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.k14-gallery__link {
    display: block;
    text-decoration: none;
    color: inherit;
    outline-offset: 3px;
}
.k14-gallery__link:focus-visible .k14-gallery__img {
    box-shadow: 0 0 0 2px var(--accent, #fecc07);
}
.k14-gallery__img { aspect-ratio: 4/3; background: var(--bg-soft); }
.k14-gallery__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.k14-gallery__cap { padding: 0.65rem 0.85rem; font-size: 0.88rem; color: var(--text-muted); }

.k14-page.k14-contact {
    max-width: var(--k14-content-max);
    margin: 0 auto;
    padding: 1.25rem 1.25rem 3rem;
    background: transparent;
    box-shadow: none;
}
.k14-contact__grid {
    display: grid;
    gap: 1.75rem;
    margin-top: 0.5rem;
}
@media (min-width: 900px) {
    .k14-contact__grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
        align-items: start;
        gap: 2rem;
    }
}
.k14-contact__col {
    background: var(--white);
    border-radius: var(--radius-lg, 16px);
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.06));
}
.k14-contact__block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light, rgba(0, 0, 0, 0.06));
}
.k14-contact__block:first-child {
    padding-top: 0.25rem;
}
.k14-contact__block:last-child {
    border-bottom: none;
    padding-bottom: 0.25rem;
}
.k14-contact__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(254, 204, 7, 0.22), rgba(254, 204, 7, 0.08));
    color: var(--primary);
}
.k14-contact__icon .material-symbols-outlined {
    font-size: 1.45rem;
}
.k14-contact__block-body {
    min-width: 0;
    flex: 1;
}
.k14-contact__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--text-body, #3d4a52);
}
.k14-contact__text a {
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.k14-contact__text a:hover {
    text-decoration: underline;
}
.k14-contact__map {
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-soft);
    min-height: 280px;
}
.k14-contact__block-body .k14-contact__h {
    font-size: 0.78rem;
    margin: 0 0 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
    color: var(--accent-dark, #c9a806);
}
.k14-contact__hours :where(p, ul) {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.k14-contact__social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.k14-contact__social li {
    margin: 0;
}
.k14-contact__social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.35rem 0;
}
.k14-contact__social a .material-symbols-outlined {
    font-size: 1.15rem;
    color: var(--accent-dark);
}
.k14-contact__social a:hover {
    color: var(--accent-dark);
}
.k14-contact__map :where(iframe) {
    width: 100%;
    min-height: 320px;
    border: 0;
    display: block;
    background: var(--bg-soft);
}

.k14-wa-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1100;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
}
.k14-wa-float:hover { filter: brightness(1.05); }
.k14-wa-float .material-symbols-outlined { font-size: 1.75rem; }

/* Footer menü grupları (üst + alt öğeler) */
.footer-links .footer-links-group {
    list-style: none;
    margin: 0 0 0.85rem;
}
.footer-links-group__title {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.92);
}
.footer-links--nested {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links--nested li {
    margin: 0.3rem 0;
}
.footer-links--nested a {
    font-size: 0.88rem;
    opacity: 0.88;
}

/* Hero: panel slayt görselleri */
.hero.k14-hero-cms .k14-hero-slide-imgwrap {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    border-radius: var(--radius-md, 14px);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-soft, #f1f3f6);
}
.hero.k14-hero-cms .k14-hero-slide-img {
    width: 100%;
    height: auto;
    max-height: min(52vh, 420px);
    object-fit: cover;
    display: block;
}

/* Anasayfa Hakkımızda: theme.css .section.about */

/* Hasta yorumları */
.k14-testimonials {
    margin-top: 2.5rem;
    padding-bottom: 1rem;
}
.k14-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}
.k14-testimonials__card {
    margin: 0;
    padding: 1.25rem 1.15rem;
    background: var(--white);
    border-radius: var(--radius-md, 14px);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.k14-testimonials__quote {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
}
.k14-testimonials__foot {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.25rem;
    border-top: 1px solid var(--border-light);
}
.k14-testimonials__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-soft);
}
.k14-testimonials__name {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary);
}
.k14-testimonials__role {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* Sayfa kapak görseli */
.k14-page__hero {
    margin: 0 0 1.25rem;
    border-radius: var(--radius-md, 14px);
    overflow: hidden;
    background: var(--bg-soft);
}
.k14-page__hero-img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    display: block;
}

/* Breadcrumb — tam genişlik şerit; varsayılan: secondary (accent) zemin, koyu metin */
.k14-breadcrumb-hero-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.k14-breadcrumb-hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--k14-bc-strip, var(--accent));
    color: var(--k14-bc-primary, var(--primary));
    overflow: hidden;
    border-bottom: 1px solid rgba(33, 41, 46, 0.08);
}
.k14-breadcrumb-hero--image {
    min-height: 132px;
    color: #fff;
    background: var(--k14-bc-primary, var(--primary));
    border-bottom: none;
}
.k14-breadcrumb-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
}
.k14-breadcrumb-hero__scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: transparent;
}
.k14-breadcrumb-hero--image .k14-breadcrumb-hero__scrim {
    background: linear-gradient(
        105deg,
        color-mix(in srgb, var(--k14-bc-primary, var(--primary)) 88%, #000) 0%,
        rgba(33, 41, 46, 0.72) 55%,
        rgba(33, 41, 46, 0.55) 100%
    );
}
.k14-breadcrumb-hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--k14-content-max);
    margin: 0 auto;
    padding: 1rem 1.25rem 1.15rem;
    width: 100%;
    box-sizing: border-box;
}
.k14-breadcrumb-hero__nav {
    margin-bottom: 0.15rem;
}
.k14-breadcrumb-hero__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.35rem 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.k14-breadcrumb-hero__item {
    display: inline-flex;
    align-items: center;
    color: rgba(33, 41, 46, 0.55);
}
.k14-breadcrumb-hero--image .k14-breadcrumb-hero__item {
    color: rgba(255, 255, 255, 0.78);
}
.k14-breadcrumb-hero__item + .k14-breadcrumb-hero__item::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--k14-bc-primary, var(--primary));
    margin-right: 0.4rem;
    opacity: 0.55;
}
.k14-breadcrumb-hero--image .k14-breadcrumb-hero__item + .k14-breadcrumb-hero__item::before {
    background: var(--accent, #fecc07);
    opacity: 0.95;
}
.k14-breadcrumb-hero__nav a {
    color: var(--k14-bc-primary, var(--primary));
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
    opacity: 0.92;
}
.k14-breadcrumb-hero__nav a:hover {
    opacity: 1;
    text-decoration: underline;
}
.k14-breadcrumb-hero--image .k14-breadcrumb-hero__nav a {
    color: rgba(255, 255, 255, 0.95);
}
.k14-breadcrumb-hero--image .k14-breadcrumb-hero__nav a:hover {
    color: var(--accent, #fecc07);
    text-decoration: none;
}
.k14-breadcrumb-hero__crumb-current {
    color: rgba(33, 41, 46, 0.5);
    font-weight: 800;
}
.k14-breadcrumb-hero--image .k14-breadcrumb-hero__crumb-current {
    color: rgba(255, 255, 255, 0.55);
}
.k14-breadcrumb-hero__heading {
    margin: 0.35rem 0 0;
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--k14-bc-primary, var(--primary));
    max-width: var(--k14-content-max);
}
.k14-breadcrumb-hero--image .k14-breadcrumb-hero__heading {
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
@media (min-width: 768px) {
    .k14-breadcrumb-hero {
        min-height: 120px;
    }
    .k14-breadcrumb-hero--image {
        min-height: 148px;
    }
    .k14-breadcrumb-hero__inner {
        padding: 1.15rem 1.5rem 1.35rem;
    }
}

/* Anasayfa: tedavi bölümü gri arka plan tam genişlik */
.k14-home-services-fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    background: var(--bg-alt);
    padding-bottom: 2.5rem;
    box-sizing: border-box;
}
.k14-home-services-fullbleed .section.services {
    background: transparent;
}
.k14-home-services-fullbleed .services-grid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
}
.k14-home-services-fullbleed .section-header {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
}

/* Anasayfa: blog / ekip / yorumlar / CTA — tam genişlik arka plan */
.k14-home-blog-fullbleed,
.k14-home-team-fullbleed,
.k14-home-testimonials-fullbleed,
.k14-home-cta-fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    box-sizing: border-box;
}
.k14-home-blog-fullbleed {
    background: var(--bg-alt);
    padding-bottom: 2.5rem;
}
.k14-home-blog-fullbleed .section.blog {
    background: transparent;
}
.k14-home-blog-fullbleed .section-header,
.k14-home-blog-fullbleed .blog-grid,
.k14-home-blog-fullbleed .blog-more {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
}
.k14-home-team-fullbleed {
    background: var(--bg-alt);
    padding-bottom: 2rem;
}
.k14-home-team-fullbleed .section.team {
    background: transparent;
}
.k14-home-team-fullbleed .section-header {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
}

/* Anasayfa ekip kartı: tek link, foto üstte */
.team-card.team-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.team-photo .team-photo__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.team-card--link .team-photo .initials {
    z-index: 1;
}
.team-card--link .team-photo .overlay {
    z-index: 2;
}

/* Ekip detay */
.k14-page--team {
    max-width: var(--k14-content-max);
    margin: 0 auto;
    padding: 1.25rem 1.25rem 3rem;
    box-sizing: border-box;
}
.k14-team-detail__hero {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .k14-team-detail__hero {
        grid-template-columns: minmax(200px, 320px) 1fr;
        align-items: center;
    }
}
.k14-team-detail__photo {
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light, #3a4650), var(--primary, #21292e));
    aspect-ratio: 3/3.5;
    position: relative;
}
.k14-team-detail__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.k14-team-detail__photo--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}
.k14-team-detail__initials {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 0.02em;
}
.k14-team-detail__intro {
    padding-top: 0.25rem;
}
.k14-team-detail__heading {
    margin: 0 0 0.35rem;
    padding: 0;
    font: inherit;
    letter-spacing: -0.03em;
}
.k14-team-detail__given,
.k14-team-detail__family {
    display: block;
    font-size: clamp(1.85rem, 4.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--primary, #21292e);
}
.k14-team-detail__family {
    margin-top: 0.12em;
}
.k14-team-detail__role {
    margin: 0.65rem 0 1rem;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 600;
    color: var(--accent-dark, #c4a000);
}
.k14-team-detail__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.k14-team-detail__social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-alt, #f4f6f8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #21292e);
    transition: background 0.2s, color 0.2s;
}
.k14-team-detail__social:hover {
    background: var(--accent, #fecc07);
    color: var(--primary, #21292e);
}
.k14-team-detail__social svg {
    width: 18px;
    height: 18px;
}
.k14-team-detail__specs {
    margin: 0 0 1.75rem;
    max-width: 560px;
}
.k14-team-detail__specs-title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary, #21292e);
}
.k14-team-spec-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.k14-team-spec-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--text-muted);
}
.k14-team-spec-list__check {
    font-size: 1.15rem !important;
    color: var(--accent, #fecc07);
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.k14-team-detail__body {
    margin-bottom: 2rem;
}

.nav-item-icon {
    font-size: 1.15rem !important;
    opacity: 0.88;
    flex-shrink: 0;
}
.mobile-nav .nav-item-icon {
    font-size: 1.1rem !important;
    margin-right: 0.25rem;
    vertical-align: -0.15em;
}
.k14-team-detail__back a {
    color: var(--primary, #21292e);
    font-weight: 600;
    text-decoration: none;
}
.k14-team-detail__back a:hover {
    text-decoration: underline;
}

/* Ekip liste /ekip */
.k14-team-index {
    max-width: var(--k14-content-max);
    margin: 0 auto;
    padding: 1.25rem 1.25rem 3rem;
    box-sizing: border-box;
}
.k14-team-index__lead {
    margin: 0 0 1.75rem;
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 720px;
}
.k14-team-index__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.k14-team-index__card {
    margin: 0;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.06));
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.k14-team-index__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.k14-team-index__card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.k14-team-index__media {
    aspect-ratio: 0;
    background: linear-gradient(145deg, var(--primary-light, #3a4650), var(--primary, #21292e));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.k14-team-index__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.k14-team-index__initials {
    font-size: clamp(2.5rem, 6vw, 3.25rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.14);
    letter-spacing: 0.02em;
}
.k14-team-index__body {
    padding: 1.15rem 1.2rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}
.k14-team-index__name {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
}
.k14-team-index__role {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-dark, #c9a806);
    line-height: 1.35;
}
.k14-team-index__cta {
    margin-top: 0.5rem;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.85;
}
.k14-team-index__card:hover .k14-team-index__cta {
    color: var(--accent-dark);
}

.k14-home-testimonials-fullbleed {
    padding-bottom: 2.5rem;
}
.k14-home-testimonials-fullbleed .section.testimonials .section-header {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
}
.k14-home-cta-fullbleed.cta-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* index.html testimonial kartı — yüklü avatar */
.test-avatar.test-avatar--img {
    display: block;
    flex-shrink: 0;
    object-fit: cover;
}
a.svc-card {
    display: block;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

/* Tedavi kartı: görsel hover’da arka planda (opacity); ikon her zaman görünür */
.svc-card--has-photo {
    position: relative;
}
.svc-card__photo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background-image: var(--svc-photo);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}
.svc-card--has-photo:hover .svc-card__photo-bg {
    opacity: 0.26;
}
.svc-card--has-photo::before {
    opacity: 0 !important;
    transition: none;
}
.svc-card--has-photo:hover::before {
    opacity: 0 !important;
}
.svc-card--has-photo .svc-icon,
.svc-card--has-photo h3,
.svc-card--has-photo p {
    position: relative;
    z-index: 1;
}

.section.about {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.about-img-main {
    position: relative;
}
.about-img-main__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.k14-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Tedavi: liste tam genişlik içerik; detayda sol menü + sağ içerik */
.k14-treatment-page {
    max-width: var(--k14-content-max);
    margin: 0 auto;
    padding: 1.35rem 1.25rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}
.k14-treatment-page--listing {
    max-width: var(--k14-content-max);
    grid-template-columns: 1fr;
}
.k14-treatment-page--listing .k14-treatment-main--full {
    grid-column: 1 / -1;
    max-width: 100%;
}
.k14-page__lead--treatment-index {
    margin-top: 0;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text-muted);
}
.k14-treatment-page--detail {
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .k14-treatment-page--detail {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 1.75rem;
    }
}
.k14-treatment-main {
    min-width: 0;
}
.k14-treatment-nav {
    background: var(--white);
    border-radius: var(--radius-md, 14px);
    box-shadow: var(--shadow-md);
    padding: 1rem 1rem 0.85rem;
}
@media (min-width: 900px) {
    .k14-treatment-nav {
        position: sticky;
        top: 1rem;
    }
}
.k14-treatment-nav__title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin: 0 0 0.75rem;
    font-weight: 800;
}
.k14-treatment-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.k14-treatment-nav__link {
    display: block;
    padding: 0.45rem 0.6rem;
    margin: 0.15rem 0;
    border-radius: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.35;
    border-left: 3px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.k14-treatment-nav__link:hover {
    background: var(--bg-soft, #f1f3f6);
}
.k14-treatment-nav__link.is-active {
    background: rgba(254, 204, 7, 0.12);
    border-left-color: var(--accent, #fecc07);
    color: var(--primary);
}
.k14-treatment-nav__all {
    margin: 0.85rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.88rem;
}
.k14-treatment-nav__all a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}
.k14-treatment-nav__all a:hover {
    text-decoration: underline;
}

.k14-treatment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.k14-treatment-card {
    margin: 0;
    border-radius: var(--radius-md, 14px);
    overflow: hidden;
    background: var(--bg-soft, #f1f3f6);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.k14-treatment-card--clickable {
    position: relative;
}
.k14-treatment-card--clickable:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.k14-treatment-card--clickable:has(.k14-treatment-card__hit:focus-visible) {
    box-shadow: var(--shadow-md);
    outline: 3px solid var(--accent, #fecc07);
    outline-offset: 2px;
}
.k14-treatment-card__hit {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}
.k14-treatment-card__inner {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.k14-treatment-card__media {
    aspect-ratio: 16/10;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.k14-treatment-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.k14-treatment-card__icon {
    font-size: 2.5rem !important;
    color: var(--accent);
}
.k14-treatment-card__placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #2d3840);
    opacity: 0.35;
}
.k14-treatment-card__body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
    background: var(--white);
    position: relative;
}
.k14-treatment-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
}
.k14-treatment-card__excerpt {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.45;
    flex: 1;
}
.k14-treatment-card__go {
    margin-top: auto;
    padding-top: 0.5rem;
    align-self: flex-end;
    pointer-events: none;
    color: var(--accent-dark, #c9a806);
    opacity: 0.85;
    line-height: 1;
}
.k14-treatment-card__go .material-symbols-outlined {
    font-size: 1.35rem;
}
.k14-treatment-card--clickable:hover .k14-treatment-card__go {
    color: var(--primary);
    opacity: 1;
}

/* Anasayfa blog — kapak linki theme .blog-card-img ile uyumlu */
.blog-card-img .blog-card-img-link {
    position: absolute;
    inset: 0;
    display: block;
}
.blog-card-img .blog-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
