

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG – Index & Show oldalak
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Blog Hero (index) ─────────────────────────────────────────── */
.blog-hero {
    position: relative;
    z-index: 2;
    padding: clamp(40px, 6vw, 72px) 0 clamp(36px, 5vw, 60px);
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.blog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,154,83,.05) 0%, transparent 70%);
    pointer-events: none;
}

.blog-hero-inner {
    display: flex;
    align-items: flex-end;
    gap: 48px;
    flex-wrap: wrap;
}

.blog-hero-copy {
    flex: 1 1 340px;
}

.blog-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin: 14px 0 0;
    max-width: 20ch;
}

.blog-hero-title em {
    font-style: italic;
    color: var(--gold);
    font-family: 'Spectral', serif;
}

.blog-hero-lead {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.72;
    max-width: 56ch;
    margin-top: 16px;
}

/* ── Blog Search ────────────────────────────────────────────────── */
.blog-search-form {
    flex: 0 1 360px;
}

.blog-search-active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: .84rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.blog-search-active em { color: var(--cream); }
.blog-search-clear { color: var(--muted-2); transition: color .2s; }
.blog-search-clear:hover { color: var(--gold); }

.blog-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--surface-2);
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
    overflow: hidden;
}

.blog-search-wrap:focus-within {
    border-color: var(--gold-deep);
    box-shadow: 0 0 0 3px rgba(196,154,83,.12);
}

.blog-search-icon {
    position: absolute;
    left: 18px;
    color: var(--muted-2);
    font-size: 1rem;
    pointer-events: none;
}

.blog-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 14px 14px 46px;
    color: var(--cream);
    font-size: .94rem;
    font-family: var(--bs-body-font-family);
    width: 100%;
}

.blog-search-input::placeholder { color: var(--muted-2); }

.blog-search-btn {
    flex: none;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    color: #20160a;
    border: none;
    padding: 11px 22px;
    border-radius: 100px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: .84rem;
    cursor: pointer;
    margin: 4px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.blog-search-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px -8px rgba(196,154,83,.5);
}

/* ── Blog Meta row ──────────────────────────────────────────────── */
.blog-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.blog-count-text {
    font-size: .88rem;
    color: var(--muted);
}

.blog-count-text em { color: var(--cream); }

/* ── Blog Grid ──────────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ── Blog Card ──────────────────────────────────────────────────── */
.blog-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
    box-shadow: 0 24px 48px -24px rgba(0,0,0,.7);
}

/* Kép / placeholder */
.blog-card-img-wrap {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--surface-2);
    flex: none;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.blog-card:hover .blog-card-img { transform: scale(1.04); }

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
    position: relative;
    overflow: hidden;
}

.blog-card-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 30%, rgba(196,154,83,.08) 0%, transparent 70%);
}

.blog-card-placeholder i {
    font-size: 2.4rem;
    color: var(--gold-deep);
    opacity: .5;
    position: relative;
    z-index: 1;
}

/* Kártya test */
.blog-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* Meta sor */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bcm-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    color: var(--muted-2);
}

.bcm-item i { font-size: .82rem; }

.bcm-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--muted-2);
    flex: none;
}

/* Cím */
.blog-card-title {
    font-size: 1.1rem;
    line-height: 1.32;
    margin: 0;
    font-family: 'Sora', sans-serif;
}

.blog-card-title a {
    color: var(--cream);
    transition: color .25s var(--ease);
}

.blog-card-title a:hover { color: var(--gold); }

/* Kivonat */
.blog-card-excerpt {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* Footer */
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 6px;
    border-top: 1px solid var(--line-dim);
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Sora', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap .25s var(--ease), color .25s var(--ease);
}

.blog-card-link:hover {
    gap: 10px;
    color: var(--gold-bright);
}

.blog-card-views {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .76rem;
    color: var(--muted-2);
}

/* ── Blog Empty ─────────────────────────────────────────────────── */
.blog-empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--muted);
}

.blog-empty i {
    font-size: 3rem;
    color: var(--muted-2);
    display: block;
    margin-bottom: 18px;
}

.blog-empty h3 {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 10px;
}

/* ── Pagination ─────────────────────────────────────────────────── */
.blog-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}

.blog-pager {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-pager-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 1rem;
    transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}

.blog-pager-btn:hover {
    border-color: var(--gold-deep);
    color: var(--gold);
    background: var(--surface-2);
}

.blog-pager-btn--disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
}

.blog-pager-pages {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-pager-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 6px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: .9rem;
    font-family: 'Sora', sans-serif;
    transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}

.blog-pager-page:hover {
    border-color: var(--gold-deep);
    color: var(--gold);
    background: var(--surface-2);
}

.blog-pager-page--active {
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    border-color: transparent;
    color: #20160a;
    font-weight: 700;
    cursor: default;
}

.blog-pager-ellipsis {
    color: var(--muted-2);
    padding: 0 4px;
    font-size: .9rem;
}

/* ── Blog CTA (index bottom) ────────────────────────────────────── */
.blog-cta-bottom {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.blog-cta-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    margin: 14px 0 0;
}

.blog-cta-lead {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 50ch;
    margin: 14px auto 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG – Show oldal
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Post Hero ──────────────────────────────────────────────────── */
.blog-post-hero {
    position: relative;
    z-index: 2;
    padding: clamp(36px, 5.5vw, 64px) 0 clamp(28px, 4vw, 48px);
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--line);
}

.bph-inner {
    max-width: 860px;
}

.bph-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.bph-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    color: var(--muted-2);
}

.bph-meta-item i { color: var(--gold-deep); }

.bph-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--muted-2);
    flex: none;
}

.bph-title {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -.02em;
    max-width: 22ch;
}

.bph-excerpt {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 64ch;
    margin-top: 16px;
}

/* ── Post Layout ────────────────────────────────────────────────── */
.blog-post-section { padding-top: clamp(36px, 5vw, 60px); }

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

/* ── Article ────────────────────────────────────────────────────── */
.blog-article {
    min-width: 0;
}

.blog-featured-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    aspect-ratio: 16/7;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-blocks {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Share ──────────────────────────────────────────────────────── */
.blog-share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.blog-share-label {
    font-size: .82rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.blog-share-btns {
    display: flex;
    gap: 8px;
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 1rem;
    transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
    cursor: pointer;
}

.blog-share-btn:hover {
    border-color: var(--gold-deep);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ── Sidebar ────────────────────────────────────────────────────── */
.blog-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* TOC */
.blog-toc {
    padding: 20px 22px;
}

.blog-toc-head {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Sora', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.blog-toc-head i { font-size: 1rem; }

.blog-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blog-toc-item { }

.blog-toc-link {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.4;
    transition: background .2s var(--ease), color .2s var(--ease);
    border: 1px solid transparent;
}

.blog-toc-link:hover {
    background: var(--surface-2);
    color: var(--cream);
    border-color: var(--line-dim);
}

.blog-toc-link.is-active {
    background: var(--gold-soft);
    color: var(--gold-bright);
    border-color: rgba(196,154,83,.2);
}

.btl-num {
    font-family: 'Sora', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    color: var(--gold-deep);
    flex: none;
    min-width: 22px;
}

/* Related widget */
.blog-related-widget {
    padding: 20px 22px;
}

.brw-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.brw-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-radius: 10px;
    padding: 6px;
    margin: -6px;
    transition: background .2s var(--ease);
}

.brw-item:hover { background: var(--surface-2); }

.brw-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    flex: none;
    background: var(--surface-3);
}

.brw-img img { width: 100%; height: 100%; object-fit: cover; }

.brw-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-3);
    color: var(--muted-2);
    font-size: 1.1rem;
}

.brw-info {
    flex: 1;
    min-width: 0;
}

.brw-title {
    font-size: .82rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.35;
    margin: 0 0 4px;
    transition: color .2s var(--ease);
}

.brw-item:hover .brw-title { color: var(--gold); }

.brw-meta {
    font-size: .73rem;
    color: var(--muted-2);
}

/* CTA Widget */
.blog-cta-widget {
    padding: 24px 22px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.bcw-deco {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,154,83,.12) 0%, transparent 70%);
    pointer-events: none;
}

.bcw-eyebrow {
    font-family: 'Sora', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.bcw-title {
    font-size: 1.15rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

.bcw-text {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bcw-btn {
    width: 100%;
    justify-content: center;
    font-size: .88rem;
}

/* Related Section (bottom) */
.blog-related-section {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG – Block stílusok (prose tartalom)
   ═══════════════════════════════════════════════════════════════════════════ */

.block {
    margin-bottom: 28px;
    position: relative;
}

.block:last-child { margin-bottom: 0; }

/* ── Szöveges blokk ─────────────────────────────────────────────── */
.block-text-title {
    font-size: 1.15rem;
    color: var(--gold-bright);
    margin-bottom: 12px;
    font-family: 'Sora', sans-serif;
}

.prose {
    color: var(--cream);
    font-size: 1.04rem;
    line-height: 1.8;
}

.prose p { margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }

.prose strong { color: var(--cream); font-weight: 600; }

.prose em { color: var(--gold-bright); font-style: italic; }

.prose a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(196,154,83,.4);
    text-underline-offset: 3px;
    transition: color .2s, text-decoration-color .2s;
}
.prose a:hover {
    color: var(--gold-bright);
    text-decoration-color: var(--gold);
}

.prose ul,
.prose ol {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prose ul li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.7;
}
.prose ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.prose ol { counter-reset: prose-ol; }
.prose ol li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.7;
    counter-increment: prose-ol;
}
.prose ol li::before {
    content: counter(prose-ol) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Sora', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold);
}

/* ── Heading blokk ──────────────────────────────────────────────── */
.block-heading {
    scroll-margin-top: 90px;
    margin-top: 12px;
    margin-bottom: 20px;
}

.block-heading-h2 {
    font-size: clamp(1.3rem, 2.8vw, 1.75rem);
    color: var(--cream);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
    position: relative;
}

.block-heading-h2::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.block-heading-h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: var(--cream);
    margin-bottom: 0;
}

.block-heading-h4 {
    font-size: 1.05rem;
    color: var(--gold-bright);
    font-weight: 600;
    letter-spacing: .01em;
    margin-bottom: 0;
}

/* ── Idézet blokk ───────────────────────────────────────────────── */
.block-quote {
    margin-top: 8px;
    margin-bottom: 32px;
}

.bq {
    position: relative;
    padding: 28px 28px 24px 48px;
    background: var(--surface-2);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 0;
}

.bq-icon {
    position: absolute;
    top: 20px;
    left: 16px;
    font-size: 1.6rem;
    color: var(--gold-deep);
    line-height: 1;
}

.bq-text {
    font-size: 1.08rem;
    color: var(--cream);
    line-height: 1.75;
    font-style: italic;
    font-family: 'Spectral', serif;
    margin: 0 0 16px;
}

.bq-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bq-author {
    font-style: normal;
    font-family: 'Sora', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold);
}

.bq-source {
    font-size: .78rem;
    color: var(--muted-2);
}

.bq-source::before {
    content: "·";
    margin-right: 10px;
    color: var(--line-strong);
}

/* ── Callout blokk ──────────────────────────────────────────────── */
.callout {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    border-radius: var(--radius);
    border: 1px solid;
}

.callout--info {
    background: rgba(91,156,246,.07);
    border-color: rgba(91,156,246,.2);
}
.callout--info .callout-icon { color: #5b9cf6; }
.callout--info .callout-title { color: #5b9cf6; }

.callout--tip {
    background: rgba(72,187,120,.07);
    border-color: rgba(72,187,120,.22);
}
.callout--tip .callout-icon { color: #48bb78; }
.callout--tip .callout-title { color: #48bb78; }

.callout--warning {
    background: rgba(236,191,74,.07);
    border-color: rgba(236,191,74,.22);
}
.callout--warning .callout-icon { color: #ecbf4a; }
.callout--warning .callout-title { color: #ecbf4a; }

.callout--danger {
    background: rgba(229,62,62,.07);
    border-color: rgba(229,62,62,.22);
}
.callout--danger .callout-icon { color: #e53e3e; }
.callout--danger .callout-title { color: #e53e3e; }

.callout-icon {
    font-size: 1.2rem;
    flex: none;
    margin-top: 2px;
}

.callout-body { flex: 1; min-width: 0; }

.callout-title {
    font-family: 'Sora', sans-serif;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.callout-text {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ── Lista blokk ────────────────────────────────────────────────── */
.prose-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prose-list--ul li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.prose-list--ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex: none;
}

.prose-list--ol {
    counter-reset: block-ol;
}

.prose-list--ol li {
    position: relative;
    padding-left: 32px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    counter-increment: block-ol;
}

.prose-list--ol li::before {
    content: counter(block-ol) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Sora', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 22px;
}

/* ── Blog CTA blokk ─────────────────────────────────────────────── */
.block-cta-blog {
    position: relative;
    overflow: hidden;
    padding: 32px 36px;
    background: var(--cta-bg, rgba(196,154,83,.07));
    border: 1px solid rgba(196,154,83,.2);
    border-radius: var(--radius-lg);
    margin-top: 12px;
}

.bcb-inner {
    position: relative;
    z-index: 1;
    max-width: 540px;
}

.bcb-title {
    font-size: clamp(1.2rem, 2.6vw, 1.5rem);
    color: var(--cream);
    margin-bottom: 10px;
}

.bcb-text {
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.bcb-btn {
    font-size: .9rem;
}

.bcb-ornament {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    color: var(--cta-accent, var(--gold));
    opacity: .15;
    pointer-events: none;
}

/* Prose-ban lévő linkek strong-ban */
.prose strong a { color: inherit; text-decoration: none; }

/* ── Scroll margin az anchor-ökhöz ─────────────────────────────── */
[id] { scroll-margin-top: 90px; }

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG – Reszponzív
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .blog-post-layout {
        grid-template-columns: 1fr 260px;
        gap: 32px;
    }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .blog-hero-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .blog-search-form { width: 100%; flex: none; }
    .blog-post-layout { grid-template-columns: 1fr; }
    .blog-sidebar {
        position: static;
        order: -1;
    }
    .blog-toc { display: none; }  /* mobilverzión a TOC rejtve, mert nincs sticky */
    .blog-related-widget { display: none; } /* bottom section tartalmazza */
}

@media (max-width: 680px) {
    .blog-grid,
    .blog-grid--3 { grid-template-columns: 1fr; }
    .bph-title { font-size: 1.7rem; }
    .bq { padding: 20px 20px 18px 36px; }
    .block-cta-blog { padding: 24px 22px; }
    .bcb-ornament { display: none; }
    .blog-share { flex-wrap: wrap; }
    .blog-cta-widget { display: none; }
}
