/* ── Blog Article: Hasta Yolculuğunda Şeffaflık ── */
/* Unique editorial layout — powder / navy scientific theme */

.article-seffaflik {
    --as-navy: #1E2D4F;
    --as-magenta: #F03167;
    --as-blush: #E8B7C4;
    --as-beige: #D9D2C7;
    --as-ivory: #F7F5F2;
    --as-powder: #AFC5D6;
    --as-graphite: #2B313B;
    --as-gold: #BF9855;
    --as-soft: #E8F0F6;

    position: relative;
    color: var(--as-graphite);
    margin: 0 0 48px;
}

/* ── Hero ── */
.article-seffaflik__hero {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    padding: 40px 24px 48px;
    background:
        radial-gradient(ellipse at 92% 0%, rgba(175, 197, 214, 0.55), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(232, 183, 196, 0.28), transparent 50%),
        linear-gradient(155deg, #E8F0F6 0%, var(--as-ivory) 48%, #F0EBE4 100%);
}

@media (min-width: 768px) {
    .article-seffaflik__hero {
        padding: 56px 48px 64px;
        border-radius: 18px;
    }
}

@media (min-width: 1024px) {
    .article-seffaflik__hero {
        padding: 72px 64px 80px;
    }
}

.article-seffaflik__hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.article-seffaflik__hero-glow--1 {
    top: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(175, 197, 214, 0.5), transparent 70%);
    animation: asGlowPulse 8s ease-in-out infinite;
}

.article-seffaflik__hero-glow--2 {
    bottom: -100px;
    left: -40px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(232, 183, 196, 0.35), transparent 70%);
    animation: asGlowPulse 10s ease-in-out infinite reverse;
}

@keyframes asGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.08); opacity: 1; }
}

.article-seffaflik__breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 13px;
    color: rgba(43, 49, 59, 0.55);
}

.article-seffaflik__breadcrumb a {
    color: var(--as-navy);
    text-decoration: none;
    transition: color 0.2s;
}

.article-seffaflik__breadcrumb a:hover {
    color: var(--as-magenta);
}

.article-seffaflik__breadcrumb-sep {
    opacity: 0.4;
}

.article-seffaflik__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.article-seffaflik__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(30, 45, 79, 0.06);
    border: 1px solid rgba(30, 45, 79, 0.1);
    color: var(--as-navy);
    font-family: 'FontMedium', sans-serif;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: asFadeUp 0.6s ease-out both;
}

.article-seffaflik__label i {
    color: var(--as-magenta);
    font-size: 11px;
}

.article-seffaflik__title {
    margin: 0 0 18px;
    color: var(--as-navy);
    font-size: clamp(1.65rem, 4vw, 2.65rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    animation: asFadeUp 0.65s ease-out 0.08s both;
}

.article-seffaflik__lede {
    margin: 0 0 28px;
    max-width: 640px;
    color: var(--as-graphite);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    opacity: 0.88;
    animation: asFadeUp 0.65s ease-out 0.16s both;
}

.article-seffaflik__pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    animation: asFadeUp 0.65s ease-out 0.24s both;
}

.article-seffaflik__pillar {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(30, 45, 79, 0.08);
    backdrop-filter: blur(8px);
    min-width: 140px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-seffaflik__pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -16px rgba(30, 45, 79, 0.35);
}

.article-seffaflik__pillar-name {
    font-family: 'FontBold', sans-serif;
    font-size: 14px;
    color: var(--as-navy);
}

.article-seffaflik__pillar-desc {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(43, 49, 59, 0.7);
    max-width: 180px;
}

.article-seffaflik__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 28px;
    font-size: 13px;
    color: rgba(43, 49, 59, 0.6);
    animation: asFadeUp 0.65s ease-out 0.32s both;
}

.article-seffaflik__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.article-seffaflik__meta-item i {
    color: var(--as-gold);
    font-size: 12px;
}

@keyframes asFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Layout: TOC + body ── */
.article-seffaflik__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

@media (min-width: 1024px) {
    .article-seffaflik__layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 56px;
        margin-top: 56px;
    }
}

/* ── TOC ── */
.article-seffaflik__toc {
    display: none;
}

@media (min-width: 1024px) {
    .article-seffaflik__toc {
        display: block;
        position: sticky;
        top: 110px;
        padding: 20px 0;
    }
}

.article-seffaflik__toc-label {
    display: block;
    margin-bottom: 14px;
    font-family: 'FontMedium', sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(43, 49, 59, 0.45);
}

.article-seffaflik__toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 1px solid rgba(30, 45, 79, 0.12);
}

.article-seffaflik__toc-list a {
    display: block;
    padding: 7px 0 7px 14px;
    margin-left: -1px;
    border-left: 2px solid transparent;
    color: rgba(43, 49, 59, 0.65);
    font-size: 12.5px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
}

.article-seffaflik__toc-list a:hover,
.article-seffaflik__toc-list a.is-active {
    color: var(--as-navy);
    border-left-color: var(--as-magenta);
}

/* Mobile TOC */
.article-seffaflik__toc-mobile {
    margin-bottom: 32px;
    padding: 18px 20px;
    border-radius: 14px;
    background: var(--as-soft);
    border: 1px solid rgba(30, 45, 79, 0.08);
}

@media (min-width: 1024px) {
    .article-seffaflik__toc-mobile {
        display: none;
    }
}

.article-seffaflik__toc-mobile summary {
    cursor: pointer;
    font-family: 'FontMedium', sans-serif;
    font-size: 14px;
    color: var(--as-navy);
    list-style: none;
}

.article-seffaflik__toc-mobile summary::-webkit-details-marker {
    display: none;
}

.article-seffaflik__toc-mobile summary::after {
    content: '+';
    float: right;
    color: var(--as-magenta);
}

.article-seffaflik__toc-mobile[open] summary::after {
    content: '−';
}

.article-seffaflik__toc-mobile ol {
    margin: 14px 0 0;
    padding-left: 18px;
}

.article-seffaflik__toc-mobile a {
    display: block;
    padding: 5px 0;
    color: var(--as-graphite);
    font-size: 13px;
    text-decoration: none;
}

.article-seffaflik__toc-mobile a:hover {
    color: var(--as-magenta);
}

/* ── Body ── */
.article-seffaflik__body {
    min-width: 0;
}

.article-seffaflik__abstract {
    position: relative;
    margin-bottom: 48px;
    padding: 28px 24px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(30, 45, 79, 0.97) 0%, #2a3d66 100%);
    color: #fff;
    overflow: hidden;
}

@media (min-width: 768px) {
    .article-seffaflik__abstract {
        padding: 36px 40px;
    }
}

.article-seffaflik__abstract::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 152, 85, 0.25), transparent 70%);
    pointer-events: none;
}

.article-seffaflik__abstract-label {
    display: inline-block;
    margin-bottom: 12px;
    font-family: 'FontMedium', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--as-gold);
}

.article-seffaflik__abstract p {
    position: relative;
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.article-seffaflik__abstract p:last-of-type {
    margin-bottom: 0;
}

.article-seffaflik__keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.article-seffaflik__keyword {
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.75);
}

/* ── Sections ── */
.article-seffaflik__section {
    margin-bottom: 48px;
    scroll-margin-top: 120px;
}

.article-seffaflik__section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--as-powder), #c5d6e4);
    color: var(--as-navy);
    font-family: 'FontBold', sans-serif;
    font-size: 14px;
}

.article-seffaflik__section h2 {
    margin: 0 0 18px;
    color: var(--as-navy);
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.article-seffaflik__section p {
    margin: 0 0 16px;
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(43, 49, 59, 0.88);
}

.article-seffaflik__section p:last-child {
    margin-bottom: 0;
}

.article-seffaflik__pullquote {
    margin: 28px 0;
    padding: 22px 24px 22px 28px;
    border-left: 3px solid var(--as-magenta);
    border-radius: 0 12px 12px 0;
    background: linear-gradient(90deg, rgba(240, 49, 103, 0.05), transparent);
    font-family: 'FontMedium', sans-serif;
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--as-navy);
}

/* ── Transparency checklist ── */
.article-seffaflik__checklist {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

@media (min-width: 640px) {
    .article-seffaflik__checklist {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

.article-seffaflik__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--as-ivory);
    border: 1px solid rgba(30, 45, 79, 0.06);
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--as-graphite);
    transition: border-color 0.2s, transform 0.2s;
}

.article-seffaflik__checklist li:hover {
    border-color: rgba(175, 197, 214, 0.8);
    transform: translateY(-2px);
}

.article-seffaflik__checklist-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(30, 45, 79, 0.06);
    color: var(--as-navy);
    font-size: 12px;
}

/* ── Journey timeline ── */
.article-seffaflik__journey {
    margin: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.article-seffaflik__journey-step {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 16px;
}

.article-seffaflik__journey-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-seffaflik__journey-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--as-navy);
    border: 3px solid var(--as-powder);
    box-shadow: 0 0 0 3px rgba(175, 197, 214, 0.35);
    flex-shrink: 0;
}

.article-seffaflik__journey-line {
    flex: 1;
    width: 2px;
    min-height: 24px;
    background: linear-gradient(180deg, var(--as-powder), rgba(175, 197, 214, 0.2));
}

.article-seffaflik__journey-step:last-child .article-seffaflik__journey-line {
    display: none;
}

.article-seffaflik__journey-card {
    margin-bottom: 16px;
    padding: 18px 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(30, 45, 79, 0.07);
    box-shadow: 0 4px 16px -12px rgba(30, 45, 79, 0.2);
}

.article-seffaflik__journey-stage {
    margin: 0 0 6px;
    font-family: 'FontBold', sans-serif;
    font-size: 14px;
    color: var(--as-navy);
}

.article-seffaflik__journey-meaning {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(43, 49, 59, 0.75);
}

.article-seffaflik__journey-approach {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(175, 197, 214, 0.35);
    font-size: 12px;
    color: var(--as-navy);
    font-family: 'FontMedium', sans-serif;
}

/* ── Model / conclusion band ── */
.article-seffaflik__model {
    margin: 48px 0;
    padding: 36px 28px;
    border-radius: 18px;
    background:
        radial-gradient(ellipse at 100% 0%, rgba(191, 152, 85, 0.12), transparent 50%),
        linear-gradient(145deg, var(--as-soft) 0%, var(--as-ivory) 100%);
    border: 1px solid rgba(30, 45, 79, 0.08);
    text-align: center;
}

@media (min-width: 768px) {
    .article-seffaflik__model {
        padding: 48px 56px;
    }
}

.article-seffaflik__model-brand {
    display: block;
    margin-bottom: 12px;
    font-family: 'FontBold', sans-serif;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--as-gold);
}

.article-seffaflik__model h2 {
    margin: 0 0 16px;
    color: var(--as-navy);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.25;
}

.article-seffaflik__model p {
    margin: 0 auto 12px;
    max-width: 640px;
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(43, 49, 59, 0.85);
}

.article-seffaflik__model-closer {
    margin-top: 20px !important;
    font-family: 'FontMedium', sans-serif;
    color: var(--as-navy) !important;
    font-size: 16px !important;
}

/* ── Medical note ── */
.article-seffaflik__disclaimer {
    margin: 40px 0;
    padding: 20px 22px;
    border-radius: 12px;
    background: rgba(240, 49, 103, 0.04);
    border: 1px solid rgba(240, 49, 103, 0.15);
}

.article-seffaflik__disclaimer-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-family: 'FontBold', sans-serif;
    font-size: 13px;
    color: var(--as-magenta);
}

.article-seffaflik__disclaimer p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(43, 49, 59, 0.8);
}

/* ── References ── */
.article-seffaflik__refs {
    margin: 40px 0;
    padding: 28px 24px;
    border-radius: 14px;
    background: var(--as-ivory);
    border: 1px solid rgba(30, 45, 79, 0.06);
}

.article-seffaflik__refs h2 {
    margin: 0 0 18px;
    font-size: 1.1rem;
    color: var(--as-navy);
}

.article-seffaflik__refs ol {
    margin: 0;
    padding-left: 20px;
}

.article-seffaflik__refs li {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(43, 49, 59, 0.75);
}

.article-seffaflik__refs li:last-child {
    margin-bottom: 0;
}

/* ── Footer note + CTA ── */
.article-seffaflik__footer-note {
    margin: 32px 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(43, 49, 59, 0.55);
    font-style: italic;
}

.article-seffaflik__cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin: 48px 0 16px;
    padding: 28px 24px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, var(--as-navy) 0%, #2a3d66 100%);
}

@media (min-width: 640px) {
    .article-seffaflik__cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 32px 36px;
    }
}

.article-seffaflik__cta-text {
    color: #fff;
}

.article-seffaflik__cta-text strong {
    display: block;
    margin-bottom: 4px;
    font-family: 'FontBold', sans-serif;
    font-size: 17px;
}

.article-seffaflik__cta-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.article-seffaflik__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-seffaflik__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: 'FontMedium', sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.article-seffaflik__cta-btn--primary {
    background: var(--as-magenta);
    color: #fff;
}

.article-seffaflik__cta-btn--primary:hover {
    background: #d42858;
    transform: translateY(-1px);
}

.article-seffaflik__cta-btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-seffaflik__cta-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}
