/* Farkındalık Rehberi — Ece Kamer. Son güncelleme: 2026-04-17 */
/* ============================================================
   BLOG ARTICLE — Midnight Oracle Magazine
   farkindalikrehberi.com  |  v2.0
   ============================================================ */

body.article-page {
    background:
        radial-gradient(circle at top right, rgba(212,175,55,0.07), transparent 22%),
        linear-gradient(180deg, #fffdfa 0%, #faf6f1 38%, #fffdfb 100%);
}

/* ── Reading Progress Bar ── */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #B8860B, #D4AF37, #B8860B);
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
    z-index: 9999;
    transition: width 0.1s linear;
    pointer-events: none;
}
@keyframes progressShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Article Hero ── */
.article-hero {
    position: relative;
    padding: 9.6rem 5% 5.5rem;
    text-align: center;
    background: var(--hero-bg, linear-gradient(160deg, #0d1520 0%, #1B2D45 45%, #2E4A6E 100%));
    overflow: hidden;
    isolation: isolate;
}

.article-hero-inner,
.article-hero > div {
    width: min(920px, 100%);
    margin: 0 auto;
}

/* Starfield via CSS — scattered dots */
.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.55) 0%, transparent 0%),
        radial-gradient(1px 1px at 72% 14%, rgba(255,255,255,0.45) 0%, transparent 0%),
        radial-gradient(1.5px 1.5px at 38% 62%, rgba(212,175,55,0.6) 0%, transparent 0%),
        radial-gradient(1px 1px at 88% 38%, rgba(255,255,255,0.4) 0%, transparent 0%),
        radial-gradient(1px 1px at 54% 8%, rgba(255,255,255,0.5) 0%, transparent 0%),
        radial-gradient(1px 1px at 28% 82%, rgba(255,255,255,0.35) 0%, transparent 0%),
        radial-gradient(1.5px 1.5px at 65% 50%, rgba(212,175,55,0.5) 0%, transparent 0%),
        radial-gradient(1px 1px at 9%  47%, rgba(255,255,255,0.4) 0%, transparent 0%),
        radial-gradient(1px 1px at 82% 75%, rgba(255,255,255,0.35) 0%, transparent 0%),
        radial-gradient(1px 1px at 47% 90%, rgba(255,255,255,0.3) 0%, transparent 0%),
        radial-gradient(2px 2px at 93% 20%, rgba(212,175,55,0.4) 0%, transparent 0%),
        radial-gradient(1px 1px at 5%  70%, rgba(255,255,255,0.45) 0%, transparent 0%),
        radial-gradient(1px 1px at 76% 88%, rgba(255,255,255,0.3) 0%, transparent 0%),
        radial-gradient(1.5px 1.5px at 33% 40%, rgba(255,255,255,0.5) 0%, transparent 0%),
        radial-gradient(1px 1px at 60% 72%, rgba(212,175,55,0.45) 0%, transparent 0%);
    pointer-events: none;
    z-index: 0;
}

/* Soft vignette at bottom */
.article-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, rgba(253,251,250,0.08));
    pointer-events: none;
    z-index: 0;
}

.article-hero > * { position: relative; z-index: 1; }

.article-hero--light {
    background:
        radial-gradient(circle at top left, rgba(212,175,55,0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(27, 45, 69,0.12), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, #f9f1e7 100%);
    border-bottom: 1px solid rgba(184,134,11,0.12);
}

.article-hero--light::before {
    background-image:
        radial-gradient(2px 2px at 14% 20%, rgba(184,134,11,0.12) 0%, transparent 0%),
        radial-gradient(2px 2px at 82% 18%, rgba(27, 45, 69,0.1) 0%, transparent 0%),
        radial-gradient(1.5px 1.5px at 62% 60%, rgba(184,134,11,0.14) 0%, transparent 0%),
        radial-gradient(1.5px 1.5px at 28% 74%, rgba(27, 45, 69,0.1) 0%, transparent 0%);
}

.article-hero--light::after {
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.72));
}

.hero-tag {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    color: #D4AF37;
    padding: .38rem 1.2rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(212,175,55,0.3);
    backdrop-filter: blur(4px);
}

.article-hero--light .hero-tag {
    background: rgba(184,134,11,0.09);
    color: #9a6e06;
    border-color: rgba(184,134,11,0.18);
}

.article-hero .hero-tagline,
.article-hero .hero-subtitle {
    display: block;
}

.article-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    color: #f5f0eb;
    font-size: clamp(1.85rem, 4.2vw, 3.1rem);
    font-weight: 600;
    max-width: 860px;
    margin: 0 auto 1.5rem;
    line-height: 1.22;
    letter-spacing: -.01em;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.article-hero--light h1 {
    color: #1B2D45;
    text-shadow: none;
}

.article-hero .hero-subtitle {
    max-width: 720px;
    margin: 1.2rem auto 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-hero--light .hero-tagline,
.article-hero--light .hero-subtitle {
    color: rgba(27, 45, 69,0.76) !important;
}

.article-hero .hero-meta {
    color: rgba(245,240,235,0.6);
    font-size: .82rem;
    display: flex;
    gap: 1.4rem;
    justify-content: center;
    flex-wrap: wrap;
    letter-spacing: .3px;
}

.article-hero--light .hero-meta {
    color: rgba(27, 45, 69,0.68);
}

.article-hero .hero-meta i {
    color: rgba(212,175,55,0.7);
    margin-right: .35rem;
}

.article-hero--light .hero-meta i {
    color: rgba(184,134,11,0.72);
}

/* ── Breadcrumb Bar ── */
.article-breadcrumbs,
.breadcrumb-bar {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 2rem));
    margin: 1.4rem auto 0;
    padding: .9rem 1.25rem;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(184,134,11,0.12);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(31,22,52,0.06);
    font-size: .82rem;
    color: #8f8a93;
    display: flex;
    align-items: center;
    gap: .45rem;
    flex-wrap: wrap;
}
.article-breadcrumbs a,
.breadcrumb-bar a { color: var(--primary); text-decoration: none; transition: color .2s; }
.article-breadcrumbs a:hover,
.breadcrumb-bar a:hover { color: var(--accent); }
.article-breadcrumbs span,
.breadcrumb-bar span { color: rgba(184,134,11,0.55); margin: 0 .05rem; }

/* Legacy breadcrumb (inline) */
.breadcrumb {
    padding: .1rem 0;
    font-size: .83rem;
    color: var(--text-muted);
}

.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 .4rem; color: rgba(184,134,11,0.45); }

/* ── Layout ── */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 310px;
    grid-template-areas:
        "breadcrumb breadcrumb"
        "article    sidebar";
    gap: 4rem;
    max-width: 1160px;
    margin: 3.5rem auto;
    padding: 0 5% 5rem;
}
.article-layout > .breadcrumb,
.article-layout > nav[aria-label="Breadcrumb"] {
    grid-area: breadcrumb;
    grid-column: 1 / -1;
    margin-bottom: 0;
}
.article-layout > article,
.article-layout > .article-body { grid-area: article; min-width: 0; }
.article-layout > aside,
.article-layout > .article-sidebar { grid-area: sidebar; min-width: 0; }

.article-layout-shell {
    width: min(1200px, 100%);
}

.article-content-shell {
    width: min(980px, calc(100% - 1.8rem));
    margin: 2.2rem auto 0;
    padding: clamp(1.6rem, 3vw, 3rem);
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(184,134,11,0.1);
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(31,22,52,0.06);
}

.article-content-shell .article-breadcrumbs,
.article-content-shell .breadcrumb {
    width: 100%;
    margin-top: 0;
    margin-bottom: 2rem;
}

.blog-sidebar {
    min-width: 0;
}
@media (max-width: 960px) {
    .article-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "breadcrumb"
            "article"
            "sidebar";
        gap: 2.5rem;
    }
    .article-sidebar { position: static; }
}

@media (max-width: 640px) {
    .article-layout { padding: 0 4% 3rem; gap: 2rem; margin-top: 2rem; }
    .sidebar-cta { padding: 1.5rem 1.2rem; }
    .sidebar-cta h3 { font-size: 1.3rem; }
    .sidebar-links { padding: 1.4rem; }
}

/* ── Article Body ── */
.article-body,
.main-blog-content {
    line-height: 1.95;
    color: #2e2e2e;
    font-size: 1.04rem;
}

/* Drop cap on first paragraph */
.article-body > p:first-of-type::first-letter,
.main-blog-content > p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: .82;
    float: left;
    margin: .06em .12em -.04em 0;
    color: var(--accent);
    padding-right: .04em;
}

.article-body h2,
.main-blog-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.55rem, 2.8vw, 2rem);
    font-weight: 600;
    color: #1B2D45;
    margin: 3rem 0 1.1rem;
    line-height: 1.28;
    letter-spacing: -.015em;
    padding-bottom: .65rem;
    border-bottom: 1px solid rgba(184,134,11,0.18);
    position: relative;
}

/* Gold accent line on h2 */
.article-body h2::after,
.main-blog-content h2::after {
    content: '✦';
    position: absolute;
    bottom: -.65rem;
    left: 0;
    font-size: .7rem;
    color: var(--accent);
    background: var(--bg-light);
    padding: 0 .5rem 0 0;
    line-height: 1;
}

.article-body h3,
.main-blog-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 600;
    color: #1B2D45;
    margin: 2.2rem 0 .8rem;
    line-height: 1.35;
}

.article-body p,
.main-blog-content p {
    font-size: 1.04rem;
    line-height: 1.95;
    color: #2e2e2e;
    margin-bottom: 1.4rem;
}

.article-body ul,
.article-body ol,
.main-blog-content ul,
.main-blog-content ol {
    margin: .8rem 0 1.6rem 1.3rem;
}

.article-body li,
.main-blog-content li {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: .45rem;
}

.article-body a,
.main-blog-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(27, 45, 69,.35);
    transition: color .2s, text-decoration-color .2s;
}
.article-body a:hover,
.main-blog-content a:hover {
    color: var(--accent);
    text-decoration-color: rgba(184,134,11,.5);
}

/* ── AIO Answer Block ── */
.aio-answer {
    position: relative;
    background: linear-gradient(135deg, rgba(26,15,46,.03) 0%, rgba(184,134,11,.05) 100%);
    border-left: 3px solid var(--accent);
    padding: 1.5rem 1.8rem 1.5rem 2rem;
    border-radius: 0 16px 16px 0;
    margin: 0 0 2.4rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #252525;
    box-shadow: inset 0 0 0 1px rgba(184,134,11,.09), 0 2px 12px rgba(184,134,11,.06);
}
.aio-answer strong:first-child {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: .5rem;
    font-weight: 600;
}

/* ── Pull Quote ── */
.pull-quote {
    position: relative;
    margin: 2.8rem -0.5rem;
    padding: 2.2rem 2.5rem 2.2rem 3.5rem;
    background: linear-gradient(135deg, rgba(26,15,46,.04), rgba(184,134,11,.04));
    border-radius: 20px;
    border: 1px solid rgba(184,134,11,.14);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-style: italic;
    line-height: 1.55;
    color: #1B2D45;
}
.pull-quote::before {
    content: '\201C';
    position: absolute;
    top: .2rem;
    left: .8rem;
    font-size: 5.5rem;
    line-height: 1;
    color: rgba(184,134,11,.25);
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
}

/* ── Quote Block (legacy) ── */
.quote-block {
    position: relative;
    margin: 2.5rem 0;
    padding: 2rem 2rem 2rem 3.2rem;
    background: linear-gradient(135deg, rgba(26,15,46,.03), rgba(184,134,11,.03));
    border-radius: 16px;
    border-left: 4px solid rgba(184,134,11,.4);
}
.quote-block::before {
    content: '\201C';
    position: absolute;
    top: .3rem;
    left: .7rem;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(184,134,11,.22);
    font-family: 'Cormorant Garamond', serif;
}
.quote-block p { font-style: italic; color: #444; margin: 0; font-size: 1.05rem; line-height: 1.75; }
.quote-block cite { display: block; font-weight: 700; margin-top: .8rem; font-size: .88rem; font-style: normal; color: var(--accent); }

/* ── Info Box ── */
.info-box {
    background: rgba(27, 45, 69,.05);
    border: 1px solid rgba(27, 45, 69,.18);
    border-radius: 18px;
    padding: 1.7rem 1.9rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}
.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 18px 18px 0 0;
}
.info-box h4 {
    color: var(--primary);
    margin-bottom: .8rem;
    font-size: 1.05rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}
.info-box p, .info-box li { font-size: .97rem; color: #444; line-height: 1.8; }

/* ── Highlight Box ── */
.highlight-box {
    background: linear-gradient(135deg, rgba(184,134,11,.06), rgba(27, 45, 69,.04));
    border-radius: 18px;
    padding: 1.7rem 1.9rem;
    margin: 2rem 0;
    border: 1px solid rgba(184,134,11,.16);
    position: relative;
}
.highlight-box::before {
    content: '✦';
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: .8rem;
    color: rgba(184,134,11,.3);
}

/* ── Warning Box ── */
.warning-box {
    background: rgba(220,53,69,.04);
    border: 1px solid rgba(220,53,69,.18);
    border-radius: 16px;
    padding: 1.6rem 1.8rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}
.warning-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, transparent);
    border-radius: 16px 16px 0 0;
}
.warning-box h4 { color: #c0392b; margin-bottom: .8rem; font-size: 1.1rem; }

/* ── Check Box ── */
.check-box {
    background: rgba(39,174,96,.04);
    border: 1px solid rgba(39,174,96,.18);
    border-radius: 16px;
    padding: 1.6rem 1.8rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}
.check-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #27ae60, transparent);
    border-radius: 16px 16px 0 0;
}
.check-box h4 { color: #1e8449; margin-bottom: .8rem; font-size: 1.1rem; }

/* ── Oracle Box (premium callout) ── */
.oracle-box {
    position: relative;
    background: linear-gradient(145deg, #1B2D45, #1B2D45);
    color: rgba(245,240,235,.9);
    border-radius: 20px;
    padding: 2.2rem 2.4rem;
    margin: 2.8rem 0;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.2);
    box-shadow: 0 12px 40px rgba(26,15,46,.25);
}
.oracle-box::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 70%);
    pointer-events: none;
}
.oracle-box h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #D4AF37;
    margin-bottom: .8rem;
}
.oracle-box p { color: rgba(245,240,235,.8); font-size: .97rem; line-height: 1.85; margin: 0; }

/* ── Data Table ── */
.data-table, .spread-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.2rem 0;
    font-size: .92rem;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.065);
    border: 1px solid rgba(184,134,11,.12);
}
.data-table th, .spread-table th {
    background: linear-gradient(135deg, #1B2D45, #2E4A6E);
    color: rgba(245,240,235,.95);
    padding: .9rem 1.1rem;
    text-align: left;
    font-size: .82rem;
    letter-spacing: .7px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
.data-table td, .spread-table td {
    padding: .85rem 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,.048);
    vertical-align: top;
    color: #2e2e2e;
}
.data-table tr:last-child td,
.spread-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td,
.spread-table tr:nth-child(even) td { background: rgba(27, 45, 69,.035); }
.data-table tr:hover td,
.spread-table tr:hover td { background: rgba(184,134,11,.045); transition: background .15s; }
.data-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; }

/* Comparison table yes/no */
.data-table td.yes { color: #1e8449; font-weight: 600; }
.data-table td.no  { color: #c0392b; }

/* ── Card Grid ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.1rem;
    margin: 2rem 0;
}
.card-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(184,134,11,.1);
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
    transition: transform .25s cubic-bezier(.19,1,.22,1), box-shadow .25s;
    position: relative;
    overflow: hidden;
}
.card-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(184,134,11,.3), transparent);
    opacity: 0;
    transition: opacity .25s;
}
.card-item:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.card-item:hover::after { opacity: 1; }
.card-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: .5rem;
}
.card-item p { font-size: .88rem; color: #555; line-height: 1.72; margin: 0; }

/* ── Career Card Row (kariyer-para-fali) ── */
.card-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.8rem 0;
}
.career-card {
    background: white;
    border-radius: 14px;
    padding: 1.4rem;
    border: 1px solid rgba(184,134,11,.12);
    box-shadow: 0 2px 12px rgba(0,0,0,.045);
    transition: transform .22s, box-shadow .22s;
}
.career-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.cc-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--primary), #4A7DA8);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem;
    margin-bottom: .8rem;
}
.career-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: #1B2D45; margin-bottom: .35rem; }
.career-card p { font-size: .85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── Spread Position (tarot açılım pozisyonları) ── */
.spread-pos {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin: .7rem 0;
    border-left: 3px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.sp-label {
    flex-shrink: 0;
    font-weight: 700;
    color: var(--primary);
    font-size: .9rem;
    min-width: 56px;
}
.spread-pos p { margin: 0; font-size: .93rem; line-height: 1.6; color: var(--text-dark); }
.spread-pos p strong { color: #1B2D45; }

/* ── Mini Card ── */
.mini-card {
    background: white;
    border: 1px solid rgba(184,134,11,.12);
    border-radius: 18px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: 0 6px 22px rgba(0,0,0,.055);
    transition: transform .25s cubic-bezier(.19,1,.22,1);
}
.mini-card:hover { transform: translateY(-4px); }
.mini-card i  { font-size: 2.2rem; color: var(--primary); margin-bottom: .8rem; display: block; }
.mini-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--text-dark); margin-bottom: .4rem; }
.mini-card p  { font-size: .86rem; color: var(--text-muted); }

/* ── Card Meaning ── */
.card-meaning {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.3rem 1.4rem;
    background: rgba(253,251,250,1);
    border: 1px solid rgba(184,134,11,.09);
    border-radius: 14px;
    margin-bottom: 1rem;
    transition: box-shadow .2s;
}
.card-meaning:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.card-meaning .card-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--primary), #2E4A6E);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.25rem; flex-shrink: 0;
}
.card-meaning h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; margin-bottom: .3rem; color: var(--text-dark); }
.card-meaning p  { font-size: .87rem; color: var(--text-muted); margin: 0; }

/* ── Platform Grid ── */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 1rem;
    margin: 1.8rem 0;
}
.platform-card {
    background: white;
    border: 1px solid rgba(184,134,11,.1);
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
    transition: transform .2s;
}
.platform-card:hover { transform: translateY(-3px); }
.platform-card i { font-size: 1.8rem; margin-bottom: .6rem; display: block; }
.platform-card h4 { font-size: .95rem; color: var(--text-dark); margin-bottom: .35rem; font-weight: 600; }
.platform-card p { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── Ritual Steps ── */
.ritual-step {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
    align-items: flex-start;
}
.ritual-num {
    background: linear-gradient(135deg, var(--primary), #2E4A6E);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .88rem;
    flex-shrink: 0;
    margin-top: .1rem;
    box-shadow: 0 4px 10px rgba(27, 45, 69,.3);
}

/* ── FAQ Block ── */
.faq-block { margin: 3rem 0; }
.faq-item {
    border: 1px solid rgba(184,134,11,.13);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow .2s;
    background: white;
}
.faq-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.faq-q {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    color: #1B2D45;
    background: rgba(184,134,11,.035);
    font-size: .97rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(184,134,11,.08);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
}
.faq-a {
    padding: 1rem 1.5rem 1.4rem;
    font-size: .95rem;
    color: #444;
    line-height: 1.85;
}
.faq-answer[hidden] { display: none !important; }
.faq-item.is-collapsible .faq-question {
    position: relative;
    padding-right: 3.8rem;
    user-select: none;
}
.faq-item.is-collapsible .faq-question::after {
    content: '+';
    position: absolute;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--accent);
    font-weight: 300;
    transition: color .2s ease;
}
.faq-item.is-collapsible.is-open .faq-question::after {
    content: '−';
}
.faq-item.is-collapsible.is-open .faq-question {
    color: var(--primary);
}
.faq-item.is-collapsible .faq-question:focus-visible {
    outline: 2px solid rgba(184,134,11,.35);
    outline-offset: -2px;
}

/* <details> FAQ (legacy inline pattern) */
details {
    border: 1px solid rgba(184,134,11,.13);
    border-radius: 14px;
    margin-bottom: 1rem;
    background: white;
    overflow: hidden;
    transition: box-shadow .2s;
}
details:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
details summary {
    padding: 1.1rem 1.4rem;
    font-weight: 600;
    cursor: pointer;
    font-size: .97rem;
    color: #1B2D45;
    background: rgba(184,134,11,.03);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 300;
    transition: transform .2s;
}
details[open] summary::after { content: '−'; }
details > p, details > div {
    padding: 1rem 1.4rem 1.3rem;
    font-size: .94rem;
    color: #484848;
    line-height: 1.85;
    margin: 0;
}

/* ── Comparison Table ── */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: .9rem;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,.06);
    border: 1px solid rgba(184,134,11,.1);
}
.comparison-table th {
    background: linear-gradient(135deg, #1B2D45, #2E4A6E);
    color: rgba(245,240,235,.9);
    padding: .85rem 1.1rem;
    text-align: left;
    font-size: .8rem;
    letter-spacing: .6px;
    text-transform: uppercase;
}
.comparison-table td {
    padding: .82rem 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,.05);
    color: #333;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: rgba(27, 45, 69,.03); }
.comparison-table .yes { color: #1e8449; font-weight: 600; }

/* ── CTA Block (div) ── */
.cta-inline {
    background: linear-gradient(145deg, #1B2D45 0%, #2E4A6E 100%);
    color: white;
    border-radius: 22px;
    padding: 2.6rem 2.2rem;
    text-align: center;
    margin: 3.5rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.2);
    box-shadow: 0 12px 40px rgba(26,15,46,.2);
}
.cta-inline::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212,175,55,.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inline h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #f5f0eb;
    margin-bottom: .7rem;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    position: relative;
}
.cta-inline p {
    color: rgba(245,240,235,.75);
    margin-bottom: 1.5rem;
    font-size: .96rem;
    position: relative;
}
.cta-btn-white {
    background: white;
    color: var(--primary);
    padding: .9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .92rem;
    transition: transform .25s cubic-bezier(.19,1,.22,1), box-shadow .25s;
    box-shadow: 0 4px 18px rgba(0,0,0,.18);
    position: relative;
}
.cta-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,.24);
    color: var(--primary);
    text-decoration: none;
}

/* ── a.cta-inline (anchor CTA buttons) ── */
a.cta-inline {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 1rem 2.1rem;
    border-radius: 50px !important;
    font-weight: 700;
    font-size: .98rem;
    margin: 1.5rem 0;
    box-shadow: 0 8px 26px rgba(184,134,11,.32);
    transition: transform .3s cubic-bezier(.19,1,.22,1), box-shadow .3s;
    text-decoration: none !important;
    background: var(--gold-gradient) !important;
    color: white !important;
}
a.cta-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(184,134,11,.48);
}

/* ── Author Card ── */
.author-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.8rem 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(184,134,11,.12);
    box-shadow: 0 6px 24px rgba(0,0,0,.065);
    margin: 3rem 0 1rem;
    flex-wrap: wrap;
}
.author-card img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(212,175,55,.35);
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.author-card-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: .25rem;
}
.author-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: .3rem;
}
.author-card-bio {
    font-size: .86rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ── Sidebar ── */
.article-sidebar { position: sticky; top: 100px; }

.sidebar-cta {
    background: linear-gradient(160deg, #1B2D45 0%, #2E4A6E 100%);
    color: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    margin-bottom: 1.6rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.15);
    box-shadow: 0 8px 32px rgba(26,15,46,.25);
}
.sidebar-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(212,175,55,.1) 0%, transparent 70%);
}
.sidebar-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #f5f0eb;
    font-size: 1.55rem;
    margin-bottom: .7rem;
    position: relative;
}
.sidebar-cta p { color: rgba(245,240,235,.72); font-size: .9rem; margin-bottom: 1.3rem; position: relative; }
.sidebar-cta-btn {
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    color: white;
    padding: .75rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .88rem;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(184,134,11,.4);
    position: relative;
}
.sidebar-cta-btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 8px 22px rgba(184,134,11,.5); color: white; }

/* Sidebar içindeki tüm buton override'ları */
.sidebar-cta .cta-button,
.sidebar-cta a[href*="wa.me"] {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px !important;
    white-space: normal !important;
    text-align: center;
    justify-content: center;
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    border-radius: 12px !important;
}

.sidebar-links {
    background: white;
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.055);
    border: 1px solid rgba(184,134,11,.1);
    margin-bottom: 1.6rem;
}
.sidebar-links h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.1rem;
    padding-bottom: .7rem;
    border-bottom: 1px solid rgba(184,134,11,.12);
}
.sidebar-links ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; padding: 0; }
.sidebar-links li a {
    color: #3a3a3a;
    font-size: .87rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .55rem;
    transition: color .2s, transform .2s;
    padding: .25rem 0;
}
.sidebar-links li a:hover { color: var(--primary); transform: translateX(3px); }
.sidebar-links li a i { color: rgba(184,134,11,.6); font-size: .7rem; flex-shrink: 0; }

/* ── Blog Hero (legacy) ── */
.blog-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.5) 0%, transparent 0%),
        radial-gradient(1px 1px at 75% 18%, rgba(255,255,255,.4) 0%, transparent 0%),
        radial-gradient(1.5px 1.5px at 42% 65%, rgba(212,175,55,.55) 0%, transparent 0%),
        radial-gradient(1px 1px at 88% 45%, rgba(255,255,255,.35) 0%, transparent 0%),
        radial-gradient(1px 1px at 58% 10%, rgba(255,255,255,.45) 0%, transparent 0%),
        radial-gradient(1px 1px at 12% 75%, rgba(255,255,255,.3) 0%, transparent 0%),
        radial-gradient(2px 2px at 92% 22%, rgba(212,175,55,.4) 0%, transparent 0%);
    pointer-events: none;
}
header.hero {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
header.hero .hero-content { max-width: 900px; padding: 0 1.5rem; position: relative; z-index: 1; }
header.hero h1 { color: white !important; line-height: 1.22; font-size: clamp(1.8rem, 4vw, 3rem); }
header.hero .hero-tagline { color: rgba(255,255,255,.82) !important; }
header.hero p { color: rgba(255,255,255,.72) !important; }

/* ── Blog Container (legacy) ── */
.blog-container {
    max-width: 1160px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ── Blog Sidebar (legacy) ── */
.blog-sidebar {
    border-radius: 20px !important;
    border: 1px solid rgba(184,134,11,.1) !important;
    background: white !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.055) !important;
    overflow: hidden;
}

/* ── FAQ Item (legacy h4 pattern) ── */
.faq-item h4 {
    padding: 1.2rem 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: #1B2D45;
    background: rgba(184,134,11,.035);
    border-bottom: 1px solid rgba(184,134,11,.08);
    cursor: pointer;
}
.faq-item p { padding: 1rem 1.5rem 1.4rem; margin: 0; }

/* ── Page-level fade-in ── */
@keyframes articleFadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.article-body,
.main-blog-content {
    animation: articleFadeIn .9s cubic-bezier(.19,1,.22,1) .15s both;
}
.article-hero > div,
.article-hero > * {
    animation: articleFadeIn .7s cubic-bezier(.19,1,.22,1) both;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .article-hero { padding: 7.2rem 1rem 3.4rem; }
    .article-hero h1 { font-size: 1.7rem; }
    .article-hero .hero-meta {
        gap: 0.65rem 1rem;
        font-size: 0.78rem;
    }
    .article-breadcrumbs,
    .breadcrumb-bar {
        width: calc(100% - 1rem);
        margin-top: 0.85rem;
        padding: 0.75rem 0.95rem;
        border-radius: 14px;
        font-size: 0.76rem;
    }
    .article-layout { padding: 0 5% 3rem; margin: 2rem auto; }
    .article-content-shell {
        width: calc(100% - 1rem);
        margin-top: 1.2rem;
        padding: 1.15rem;
        border-radius: 18px;
    }
    .data-table, .spread-table, .comparison-table { font-size: .82rem; }
    .data-table th, .spread-table th, .comparison-table th,
    .data-table td, .spread-table td, .comparison-table td { padding: .65rem .8rem; }
    .card-grid, .platform-grid { grid-template-columns: 1fr; }
    .cta-inline { padding: 2rem 1.4rem; }
    .article-body h2, .main-blog-content h2 { font-size: 1.5rem; }
    .faq-item.is-collapsible .faq-question {
        padding-right: 3.2rem;
    }
    .faq-item.is-collapsible .faq-question::after {
        right: 1.1rem;
    }
    .pull-quote { margin: 2rem -.2rem; padding: 1.8rem 1.6rem 1.8rem 2.4rem; }
    .author-card { padding: 1.4rem; gap: 1.1rem; }
    .oracle-box { padding: 1.8rem 1.5rem; }
}
@media (max-width: 480px) {
    .article-hero h1 { font-size: 1.45rem; }
    .article-hero .hero-subtitle { font-size: 0.98rem; }
    .article-hero .hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.45rem;
    }
    .data-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .data-table, .spread-table { min-width: 460px; }
    .article-body > p:first-of-type::first-letter,
    .main-blog-content > p:first-of-type::first-letter {
        font-size: 3rem;
    }
}

/* ── Compare Table (ikiz alev, karşılaştırmalar) ── */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.2rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    border: 1px solid rgba(184,134,11,.14);
}
.compare-table thead tr { background: linear-gradient(135deg, #1B2D45, #2E4A6E); }
.compare-table th {
    padding: .85rem 1.1rem;
    color: rgba(245,240,235,.95);
    font-size: .8rem;
    letter-spacing: .7px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
}
.compare-table td {
    padding: .82rem 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,.05);
    color: #2e2e2e;
    font-size: .93rem;
    vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(27, 45, 69,.035); }
.compare-table tr:hover td { background: rgba(184,134,11,.042); transition: background .15s; }
.compare-table td:first-child { font-weight: 600; color: var(--primary); }

/* ── Sign List (ikiz alev belirtileri, listeler) ── */
.sign-list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin: 2rem 0;
}
.sign-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: white;
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(184,134,11,.1);
    box-shadow: 0 2px 12px rgba(0,0,0,.045);
    transition: transform .22s cubic-bezier(.19,1,.22,1), box-shadow .22s;
}
.sign-item:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,.08); }
.sign-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), #4A7DA8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .88rem;
    font-family: 'Montserrat', sans-serif;
}
.sign-item > div { flex: 1; }
.sign-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    color: #1B2D45;
    margin-bottom: .35rem;
    font-weight: 600;
}
.sign-item p { margin: 0; font-size: .94rem; color: var(--text-muted); line-height: 1.72; }

/* ── Number Grid (numeroloji sayı kartları) ── */
.number-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0 2.5rem;
}
.number-grid-3 { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.number-card {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    background: white;
    border-radius: 14px;
    padding: 1.2rem;
    border: 1px solid rgba(184,134,11,.1);
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    transition: transform .2s, box-shadow .2s;
}
.number-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.number-badge {
    flex-shrink: 0;
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #4A7DA8);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}
.number-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #1B2D45;
    margin-bottom: .25rem;
    font-weight: 600;
}
.number-card p { margin: 0; font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* ── Calc Box (numeroloji hesaplama kutusu) ── */
.calc-box {
    background: linear-gradient(135deg, rgba(45,31,78,.04), rgba(27, 45, 69,.06));
    border: 1px solid rgba(27, 45, 69,.2);
    border-radius: 16px;
    padding: 2rem 2.2rem;
    margin: 2rem 0;
}
.calc-box h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    padding-bottom: .7rem;
    border-bottom: 1px solid rgba(184,134,11,.15);
}
.calc-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(184,134,11,.12);
    border-radius: 10px;
    padding: .85rem 1.2rem;
    margin: .7rem 0;
    font-size: .95rem;
    line-height: 1.5;
}
.cs-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 700;
}

/* ── Tarot Link Grid (blog içi tarot kart linkleri) ── */
.tarot-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: .85rem;
    margin: 1.5rem 0;
}
.tarot-link-card {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: .9rem 1rem;
    background: rgba(27, 45, 69,.05);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(184,134,11,.1);
    transition: background .2s, transform .2s;
}
.tarot-link-card:hover { background: rgba(27, 45, 69,.1); transform: translateY(-1px); }
.tarot-link-card .tlc-icon { font-size: 1.2rem; flex-shrink: 0; }
.tarot-link-card strong { color: var(--primary); font-size: .9rem; display: block; margin-bottom: .15rem; }
.tarot-link-card p { margin: 0; font-size: .8rem; color: var(--text-muted); line-height: 1.4; }

/* ── Blog CTA Section (tarot/related bölüm) ── */
.blog-cta-section {
    background: rgba(184,134,11,.04);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid rgba(184,134,11,.12);
}
.blog-cta-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: .5rem;
}
.blog-cta-section > p { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.2rem; }

@media (max-width: 768px) {
    .number-grid { grid-template-columns: 1fr 1fr; }
    .number-grid-3 { grid-template-columns: 1fr 1fr; }
    .sign-item { padding: 1rem 1.2rem; }
    .tarot-link-grid { grid-template-columns: 1fr 1fr; }
    .compare-table { font-size: .85rem; }
}
@media (max-width: 480px) {
    .number-grid, .number-grid-3, .tarot-link-grid { grid-template-columns: 1fr; }
    .compare-table { min-width: 420px; }
    .calc-box { padding: 1.4rem; }
}
