@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Manrope:wght@400;500;600;700&family=Lora:ital,wght@0,400;1,400&display=swap');

/* Blog spesifik stiller - blog.html'den birebir alınmıştır */
:root {
    --bg: #faf9f6;
    --bg2: #f3eeff;
    --bg3: #e5d0f8;
    --ink: #1a0a2e;
    --ink2: #4a2870;
    --ink3: #8a6aaa;
    --brand: #9b00ff;
    --brandL: #c266ff;
    --white: #fff;
    --green: #059669;
    --gold: #f59e0b;
}

.blog-body-bg {
    background: var(--bg);
}

/* WRAP */
.wrap-blog {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* HERO */
.hero-blog {
    padding-top: 100px;
    background: var(--bg);
    border-bottom: 1px solid var(--bg3);
    position: relative;
    overflow: hidden;
}

.hero-blog::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 0, 255, .055) 0%, transparent 65%);
    pointer-events: none;
}

.hero-in {
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand);
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1rem;
}

.hero-eyebrow::before {
    content: '';
    width: 22px;
    height: 1.5px;
    background: var(--brand);
    border-radius: 2px;
    flex-shrink: 0;
}

.hero-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -.05em;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: .9rem;
}

.hero-h1 em {
    font-style: normal;
    color: var(--brand);
}

.hero-desc {
    font-family: 'Lora', serif;
    font-size: .95rem;
    font-style: italic;
    color: var(--ink3);
    line-height: 1.78;
    max-width: 540px;
    margin-bottom: 2rem;
}

/* Arama */
.sbox {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: var(--white);
    border: 1.5px solid var(--bg3);
    border-radius: 14px;
    padding: .8rem 1.1rem;
    max-width: 500px;
    box-shadow: 0 4px 18px rgba(26, 10, 46, .05);
    transition: border-color .2s, box-shadow .2s;
}

.sbox:focus-within {
    border-color: var(--brand);
    box-shadow: 0 4px 22px rgba(155, 0, 255, .11);
}

.sbox svg {
    width: 15px;
    height: 15px;
    stroke: var(--ink3);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    flex-shrink: 0;
}

.sbox input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: 'Manrope', sans-serif;
    font-size: .88rem;
    color: var(--ink);
}

.sbox input::placeholder {
    color: var(--ink3);
}

.s-clear {
    font-size: .7rem;
    font-weight: 700;
    color: var(--brand);
    padding: .18rem .5rem;
    border-radius: 6px;
    background: var(--bg2);
    cursor: pointer;
    display: none;
    flex-shrink: 0;
}

.s-clear.vis {
    display: block;
}

.s-count {
    font-size: .73rem;
    color: var(--ink3);
    margin-top: .5rem;
    min-height: 1.1em;
}

.s-count b {
    color: var(--brand);
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--bg3);
}

.hs {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.hs-v {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.05em;
    line-height: 1;
}

.hs-l {
    font-size: .68rem;
    color: var(--ink3);
}

/* KATEGORİ BAR */
.catbar {
    background: var(--white);
    border-bottom: 1px solid var(--bg3);
    position: sticky;
    top: 60px;
    z-index: 80;
}

.catbar-in {
    display: flex;
    gap: .35rem;
    padding: .7rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.catbar-in::-webkit-scrollbar {
    display: none;
}

.cbt {
    font-size: .73rem;
    font-weight: 700;
    color: var(--ink3);
    background: var(--bg);
    border: 1.5px solid var(--bg3);
    padding: .42rem .95rem;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.cbt:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.cbt.on {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 2px 10px rgba(155, 0, 255, .22);
}

.cbt-n {
    font-size: .58rem;
    font-weight: 800;
    background: rgba(155, 0, 255, .1);
    color: var(--brand);
    padding: .08rem .42rem;
    border-radius: 100px;
}

.cbt.on .cbt-n {
    background: rgba(255, 255, 255, .22);
    color: #fff;
}

/* CONTENT */
.content-blog {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0 5rem;
    background: var(--bg);
}

/* ÖNE ÇIKAN */
.fc {
    background: var(--white);
    border: 1.5px solid var(--bg3);
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, transform .18s;
}

.fc:hover {
    border-color: var(--brand);
    box-shadow: 0 10px 40px rgba(155, 0, 255, .1);
    transform: translateY(-3px);
}

.fc.gone {
    display: none !important;
}

@media(max-width:680px) {
    .fc {
        grid-template-columns: 1fr;
    }
}

.fc-illo {
    min-height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--brand);
    color: #fff;
    padding: 4px 10px;
    border-radius: 100px;
}

.fc-body {
    padding: clamp(1.25rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.fc-cat {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand);
}

.fc-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2.3vw, 1.55rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.04em;
    line-height: 1.22;
}

.fc-exc {
    font-family: 'Lora', serif;
    font-size: .855rem;
    font-style: italic;
    color: var(--ink3);
    line-height: 1.78;
}

.fc-meta {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .7rem;
    color: var(--ink3);
}

.fc-av {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .48rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.fc-author {
    font-weight: 600;
    color: var(--ink2);
}

.fc-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .76rem;
    font-weight: 700;
    color: var(--brand);
    margin-top: .5rem;
}

.fc-link svg {
    width: 12px;
    height: 12px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: transform .18s;
}

.fc:hover .fc-link svg {
    transform: translateX(3px);
}

/* BGRID */
.bgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

@media(max-width:860px) {
    .bgrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    .bgrid {
        grid-template-columns: 1fr;
    }
}

.bc {
    background: var(--white);
    border: 1.5px solid var(--bg3);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, transform .18s;
}

.bc:hover {
    border-color: var(--brand);
    box-shadow: 0 8px 26px rgba(155, 0, 255, .09);
    transform: translateY(-3px);
}

.bc.gone {
    display: none !important;
}

.bc-illo {
    height: 130px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.bc-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    flex: 1;
}

.bc-cat {
    font-size: .57rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand);
}

.bc-title {
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.32;
}

.bc-exc {
    font-size: .74rem;
    color: var(--ink3);
    line-height: 1.62;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: .65rem;
    border-top: 1px solid var(--bg3);
}

.bc-dur {
    font-size: .63rem;
    color: var(--ink3);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.bc-arr {
    font-size: .7rem;
    font-weight: 700;
    color: var(--brand);
}

/* Animasyon */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bc,
.fc,
.blog-detail-wrap {
    animation: fadeUp .35s ease both;
}

/* ── BLOG DETAIL CONTENT STYLES ── */
.blog-detail-hero {
    padding: 100px 0 clamp(2rem, 6vw, 4rem);
    text-align: center;
    background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--bg3);
}

.blog-detail-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.blog-detail-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.04em;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.bd-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.bd-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.bd-author {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.95rem;
}

.bd-date {
    font-size: 0.8rem;
    color: var(--ink3);
}

.blog-detail-content {
    max-width: 860px;
    margin: -3rem auto 0;
    padding: 0 1.5rem 4rem;
    position: relative;
    z-index: 5;
}

.blog-detail-img {
    width: 100%;
    margin-bottom: 3rem;
}

.blog-detail-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(26, 10, 46, 0.12);
}

.bd-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--ink);
}

.bd-text h1,
.bd-text h2,
.bd-text h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--ink);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.bd-text h1 {
    font-size: 2.2rem;
    font-weight: 900;
}

.bd-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    border-bottom: 2px solid var(--bg2);
    padding-bottom: 0.5rem;
}

.bd-text h3 {
    font-size: 1.45rem;
    font-weight: 700;
}

.bd-text p {
    margin-bottom: 1.5rem;
}

.bd-text strong {
    font-weight: 700;
    color: var(--ink);
}

.bd-text em {
    font-style: italic;
    font-family: 'Lora', serif;
}

.bd-text ul,
.bd-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.bd-text li {
    margin-bottom: 0.5rem;
}

.bd-text blockquote {
    border-left: 4px solid var(--brand);
    background: var(--bg2);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--ink2);
    border-radius: 0 16px 16px 0;
}

.bd-text pre {
    background: var(--ink);
    color: #eee;
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-family: monospace;
    font-size: 0.95rem;
}

.bd-text img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

/* Quill alignment support */
.ql-align-center {
    text-align: center;
}

.ql-align-right {
    text-align: right;
}

.ql-align-justify {
    text-align: justify;
}

/* BÜLTEN */
.nl-band {
    background: var(--bg2);
    border-top: 1px solid var(--bg3);
    border-bottom: 1px solid var(--bg3);
    padding: 3rem 0;
}

.nl-band-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.nl-ttl {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.03em;
    margin-bottom: .35rem;
}

.nl-sub {
    font-size: .875rem;
    color: var(--ink3);
    line-height: 1.65;
}

.nl-form {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.nl-form input {
    font-family: 'Manrope', sans-serif;
    font-size: .85rem;
    color: var(--ink);
    background: var(--white);
    border: 1.5px solid var(--bg3);
    border-radius: 10px;
    padding: .7rem 1rem;
    outline: none;
    width: 230px;
    transition: border-color .18s;
}

.nl-form button {
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    background: var(--brand);
    border-radius: 10px;
    padding: .7rem 1.4rem;
    box-shadow: 0 2px 10px rgba(155, 0, 255, .25);
    transition: all .18s;
    white-space: nowrap;
}/* �� NEW BLOG DETAIL LAYOUT (blog-yazi.html) �� */
:root {
  --sb: 268px;     /* sidebar geni�li�i */
  --gap: 28px;     /* kolon aras� bo�luk */
  --pad: 24px;     /* kenar padding */
}
@media(max-width:860px){:root{--pad:16px;}}

/* SAYFA KAPSAYICI */
.page-wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }

/* INLINE ���NDEK�LER (g�rsel alt�) */
.inline-toc { background: var(--bg2); border: 1.5px solid var(--bg3); border-radius: 13px; padding: 1rem 1.25rem; max-width: 850px; margin-bottom: 2rem; }
.itoc-lbl { font-size: .57rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); display: flex; align-items: center; gap: .38rem; margin-bottom: .65rem; }
.itoc-lbl::before { content: ''; width: 3px; height: 10px; border-radius: 2px; background: var(--brand); flex-shrink: 0; }
.itoc-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .28rem .5rem; padding: 0; margin: 0; }
@media(max-width:520px) { .itoc-list { grid-template-columns: 1fr; } }
.itoc-list li { counter-increment: itoc; }
.itoc-list li a { font-size: .8rem; font-weight: 600; color: var(--ink2); display: flex; align-items: center; gap: .45rem; padding: .28rem .1rem; transition: color .15s; border-radius: 5px; }
.itoc-list li a::before { content: counter(itoc); width: 18px; height: 18px; border-radius: 5px; background: var(--white); border: 1px solid var(--bg3); display: flex; align-items: center; justify-content: center; font-size: .58rem; font-weight: 800; color: var(--ink3); flex-shrink: 0; transition: all .15s; }
.itoc-list li a:hover { color: var(--brand); }
.itoc-list li a:hover::before { background: var(--brand); border-color: var(--brand); color: #fff; }

/* OKUMA �LERLEME �UBU�U */
#pgbar { position: fixed; top: 0; left: 0; z-index: 9999; height: 3px; width: 0; background: linear-gradient(90deg, var(--brand), var(--brandL)); transition: width .1s linear; }

/* ANA GRID SYSTEM */
.main-grid { display: grid; grid-template-columns: 1fr var(--sb); gap: var(--gap); max-width: 1200px; margin-inline: auto; padding-inline: var(--pad); }
@media(max-width:860px) { .main-grid { grid-template-columns: 1fr; } }

.col-left { min-width: 0; }
.col-right { min-width: 0; }
@media(min-width:861px) { .col-right { position: sticky; top: 110px; align-self: start; } }
@media(max-width:860px) { .col-right { display: none; } }

/* HERO ELEMENTS */
.bc { display: flex; align-items: center; gap: .3rem; font-size: .67rem; color: var(--ink3); margin-bottom: 1rem; flex-wrap: wrap; }
.bc a { color: var(--ink3); transition: color .15s; }
.bc a:hover { color: var(--brand); }
.bc-sep { opacity: .3; }
.bc-cur { color: var(--ink); font-weight: 600; }

.hero-meta-strip { display: flex; align-items: center; gap: .4rem; margin-bottom: .7rem; flex-wrap: wrap; }
.cat-badge { font-size: .57rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); background: var(--bg2); border: 1px solid var(--bg3); padding: .2rem .6rem; border-radius: 99px; flex-shrink: 0; }
.rt-info { font-size: .67rem; color: var(--ink3); display: flex; align-items: center; gap: .25rem; }
.rt-info svg { width: 11px; height: 11px; stroke: var(--ink3); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.ms-dot { font-size: .4rem; color: var(--bg3); }

.h1-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.4rem, 3.5vw, 2.4rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.1; color: var(--ink); margin-bottom: .8rem; }
.h1-title em { font-style: normal; color: var(--brand); }

.lead-text { font-family: 'Lora', serif; font-size: clamp(.86rem, 1.4vw, .97rem); font-style: italic; color: var(--ink2); line-height: 1.8; margin-bottom: 1rem; }

.hero-img-box { height: 350px; background: linear-gradient(135deg, #ede9fe, #d8d0fb); border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-top: 1rem; }
.hero-img-box img { width: 100%; height: 100%; object-fit: cover; }

/* PROSE (Article Content) */
.prose-content h2 { font-family: 'Outfit', sans-serif; font-size: clamp(1rem, 2vw, 1.32rem); font-weight: 800; letter-spacing: -.04em; color: var(--ink); line-height: 1.25; margin: 2rem 0 .75rem; padding-left: .8rem; position: relative; }
.prose-content h2::before { content: ''; position: absolute; left: 0; top: .15em; width: 3px; height: 1em; border-radius: 2px; background: linear-gradient(180deg, var(--brand), var(--brandL)); }
.prose-content h3 { font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 800; color: var(--ink); margin: 1.4rem 0 .45rem; }
.prose-content p { font-size: .9rem; color: var(--ink2); line-height: 1.85; margin-bottom: 1rem; }
.prose-content strong { color: var(--ink); font-weight: 700; }
.prose-content ul, .prose-content ol { margin: .3rem 0 1rem; display: flex; flex-direction: column; gap: .35rem; }
.prose-content ul { list-style: none; padding-left: 0; }
.prose-content ul li { font-size: .88rem; color: var(--ink2); line-height: 1.65; padding-left: 1rem; position: relative; }
.prose-content ul li::before { content: ''; position: absolute; left: 0; top: .6em; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); opacity: .5; }
.prose-content ol { padding-left: 1.3rem; }
.prose-content ol li { font-size: .88rem; color: var(--ink2); line-height: 1.65; }
.prose-content ol li::marker { color: var(--brand); font-weight: 700; }

/* COMPONENTS */
.pull-q { border-left: 3px solid var(--brand); padding: .75rem 1.1rem; margin: 1.5rem 0; background: var(--bg2); border-radius: 0 11px 11px 0; }
.pull-q p { font-family: 'Lora', serif; font-style: italic; font-size: .94rem; color: var(--ink2); line-height: 1.65; margin: 0; }
.pull-q cite { display: block; font-style: normal; font-size: .63rem; font-weight: 700; color: var(--brand); margin-top: .4rem; }

.ibox { background: var(--white); border: 1.5px solid var(--bg3); border-radius: 11px; padding: .95rem 1.1rem; margin: 1.5rem 0; display: flex; gap: .65rem; align-items: flex-start; }
.ibox-ico { width: 30px; height: 30px; border-radius: 8px; background: var(--bg2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.ibox-body p { font-size: .79rem; color: var(--ink2); line-height: 1.7; margin: 0; }
.ibox-lbl { font-size: .52rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: .3rem; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; margin: 1.5rem 0; }
@media(max-width:460px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
.stat-item { background: var(--white); border: 1.5px solid var(--bg3); border-radius: 11px; padding: .8rem .9rem; text-align: center; }
.stat-item-v { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 900; color: var(--brand); letter-spacing: -.04em; line-height: 1; }
.stat-item-l { font-size: .6rem; color: var(--ink3); margin-top: .22rem; line-height: 1.35; }

.tag-list { display: flex; gap: .28rem; flex-wrap: wrap; margin: 1.5rem 0 .4rem; }
.tag-item { font-size: .63rem; font-weight: 700; color: var(--ink3); background: var(--bg); border: 1.5px solid var(--bg3); padding: .22rem .6rem; border-radius: 99px; cursor: pointer; transition: all .15s; }
.tag-item:hover { border-color: var(--brand); color: var(--brand); }

.action-bar { display: flex; align-items: center; gap: .4rem; padding: 1rem 0; border-top: 1px solid var(--bg3); border-bottom: 1px solid var(--bg3); margin: 1.5rem 0; flex-wrap: wrap; }
.action-btn { display: inline-flex; align-items: center; gap: .3rem; font-size: .71rem; font-weight: 700; padding: .38rem .8rem; border-radius: 99px; border: 1.5px solid var(--bg3); color: var(--ink3); background: var(--white); transition: all .15s; white-space: nowrap; cursor: pointer; border-style: solid; font-family: inherit; }
.action-btn svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.action-btn:hover { border-color: var(--brand); color: var(--brand); }
.action-btn.liked { background: rgba(239, 68, 68, .07); border-color: #ef4444; color: #ef4444; }
.action-btn.liked svg { fill: #ef4444; stroke: #ef4444; }
.action-btn.saved { background: var(--bg2); border-color: var(--brand); color: var(--brand); }

.author-box { background: var(--white); border: 1.5px solid var(--bg3); border-radius: 16px; padding: 1.2rem 1.35rem; margin: 1.75rem 0; display: flex; gap: .85rem; align-items: flex-start; }
@media(max-width:420px) { .author-box { flex-direction: column; } }
.a-av-box { width: 50px; height: 50px; border-radius: 13px; flex-shrink: 0; background: linear-gradient(135deg, var(--brand), var(--brandL)); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: .88rem; font-weight: 900; color: #fff; }

.faq-sec { margin-top: 2rem; }
.faq-h { font-family: 'Outfit', sans-serif; font-size: .92rem; font-weight: 800; color: var(--ink); display: flex; align-items: center; gap: .4rem; margin-bottom: .8rem; }
.faq-h::before { content: ''; width: 3px; height: 14px; border-radius: 2px; background: var(--brand); flex-shrink: 0; }
.faq-item { border: 1.5px solid var(--bg3); border-radius: 11px; margin-bottom: .42rem; overflow: hidden; background: var(--white); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding: .76rem .95rem; background: none; text-align: left; cursor: pointer; font-family: 'Manrope', sans-serif; font-size: .8rem; font-weight: 700; color: var(--ink); line-height: 1.35; transition: color .15s; border: none; }
.faq-arr { width: 15px; height: 15px; stroke: var(--ink3); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: transform .25s; }
.faq-item.open .faq-arr { transform: rotate(180deg); stroke: var(--brand); }
.faq-item.open .faq-q { color: var(--brand); }
.faq-body-wrap { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-item.open .faq-body-wrap { max-height: 500px; }
.faq-bd { padding: .1rem .95rem .85rem; font-size: .78rem; color: var(--ink2); line-height: 1.7; border-top: 1px solid var(--bg3); }

/* SIDEBAR COMPONENTS */
.sw { background: var(--white); border: 1.5px solid var(--bg3); border-radius: 13px; overflow: hidden; margin-bottom: .85rem; }
.sw-h { padding: .65rem .9rem .5rem; border-bottom: 1px solid var(--bg3); }
.sw-ttl { font-family: 'Outfit', sans-serif; font-size: .72rem; font-weight: 800; color: var(--ink); display: flex; align-items: center; gap: .35rem; }
.sw-ttl::before { content: ''; width: 3px; height: 10px; border-radius: 2px; background: var(--brand); flex-shrink: 0; }

.stoc { list-style: none; padding: .3rem 0; margin: 0; }
.stoc-item { border-bottom: 1px solid var(--bg3); }
.stoc-item:last-child { border-bottom: none; }
.stoc-a { display: flex; align-items: center; gap: .42rem; padding: .46rem .9rem; font-size: .71rem; color: var(--ink2); font-weight: 500; transition: all .15s; min-width: 0; }
.stoc-a:hover, .stoc-a.active { color: var(--brand); background: var(--bg2); }
.stoc-a.active { font-weight: 700; }
.stoc-n { width: 15px; height: 15px; border-radius: 4px; background: var(--bg); border: 1px solid var(--bg3); display: flex; align-items: center; justify-content: center; font-size: .53rem; font-weight: 800; color: var(--ink3); flex-shrink: 0; transition: all .15s; }
.stoc-a:hover .stoc-n, .stoc-a.active .stoc-n { background: var(--brand); border-color: var(--brand); color: #fff; }
.stoc-txt { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; min-width: 0; }

.ecta { background: linear-gradient(135deg, var(--bg2), var(--white)); border: 1.5px solid var(--bg3); border-radius: 13px; padding: 1.05rem; margin-bottom: .85rem; }
.ecta-ey { font-size: .52rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: .32rem; }
.ecta-ttl { font-family: 'Outfit', sans-serif; font-size: .84rem; font-weight: 800; color: var(--ink); line-height: 1.28; margin-bottom: .38rem; }
.ecta-sub { font-size: .67rem; color: var(--ink3); line-height: 1.55; margin-bottom: .8rem; }
.ecta-btn { display: block; text-align: center; font-family: 'Outfit', sans-serif; font-size: .75rem; font-weight: 700; color: #fff; background: var(--brand); padding: .58rem 1rem; border-radius: 8px; transition: background .15s; }

.pop-list { list-style: none; padding: 0; margin: 0; }
.pop-li { display: flex; gap: .5rem; align-items: flex-start; padding: .55rem .9rem; border-bottom: 1px solid var(--bg3); cursor: pointer; transition: background .12s; min-width: 0; }
.pop-li:last-child { border-bottom: none; }
.pop-li:hover { background: var(--bg2); }
.pop-n { font-family: 'Outfit', sans-serif; font-size: .82rem; font-weight: 900; color: var(--bg3); line-height: 1; width: 14px; flex-shrink: 0; }
.pop-li:hover .pop-n { color: var(--brand); }
.pop-b { flex: 1; min-width: 0; }
.pop-c { font-size: .49rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--brand); margin-bottom: .08rem; }
.pop-t { font-size: .69rem; font-weight: 700; color: var(--ink); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* TEST LISTES� (Sidebar) */
.test-list { list-style: none; padding: 0; margin: 0; }
.test-li { border-bottom: 1px solid var(--bg3); }
.test-a { display: flex; align-items: center; gap: .55rem; padding: .55rem .9rem; transition: background .12s; text-decoration: none; }
.test-a:hover { background: var(--bg2); }
.test-ico { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.test-b { flex: 1; min-width: 0; }
.test-t { font-size: .73rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.test-d { font-size: .6rem; color: var(--ink3); margin-top: .08rem; }
.test-arr { width: 13px; height: 13px; stroke: var(--ink3); fill: none; stroke-width: 2.5; stroke-linecap: round; flex-shrink: 0; }
.test-a:hover .test-arr { stroke: var(--brand); }

/* MISC */
.pub-box { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: .7rem .9rem; background: var(--bg2); border: 1.5px solid var(--bg3); border-radius: 11px; margin: 1.75rem 0; }
.pub-item { display: flex; align-items: center; gap: .32rem; font-size: .66rem; color: var(--ink3); }
.pub-item svg { width: 11px; height: 11px; stroke: var(--ink3); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.pub-lbl { font-weight: 700; color: var(--ink2); }

.rel-sec { margin-top: 2rem; }
.sec-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: .95rem; }
.sec-ttl { font-family: 'Outfit', sans-serif; font-size: .92rem; font-weight: 800; color: var(--ink); display: flex; align-items: center; gap: .42rem; }
.sec-ttl::before { content: ''; width: 3px; height: 14px; border-radius: 2px; background: var(--brand); flex-shrink: 0; }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
@media(max-width:640px) { .rel-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:380px) { .rel-grid { grid-template-columns: 1fr; } }
.rc-box { background: var(--white); border: 1.5px solid var(--bg3); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: border-color .15s, transform .15s; }
.rc-box:hover { border-color: var(--brand); transform: translateY(-2px); }
.rc-img { height: 76px; flex-shrink: 0; overflow: hidden; background: #eee; }
.rc-bd { padding: .7rem .8rem; flex: 1; display: flex; flex-direction: column; gap: .2rem; }
.rc-cat { font-size: .5rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); }
.rc-ttl { font-family: 'Outfit', sans-serif; font-size: .78rem; font-weight: 700; color: var(--ink); line-height: 1.28; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
