/* ============================================================
   Blog (Duyurular) — navbar mor/altın paletiyle uyumlu tasarım
   ============================================================ */
:root {
    --blog-primary: #5e5e8e;
    --blog-primary-dark: #42406e;
    --blog-accent: #ffd700;
    --blog-text: #1f2937;
    --blog-muted: #6b7280;
    --blog-surface: #ffffff;
    --blog-soft: #f5f6fb;
    --blog-border: #e5e7f0;
    --blog-card-shadow: 0 8px 24px rgba(94, 94, 142, 0.10);
    --blog-card-shadow-hover: 0 14px 32px rgba(94, 94, 142, 0.22);
}

/* ---------- Hero ---------- */
.blog-hero {
    background: linear-gradient(135deg, var(--blog-primary) 0%, var(--blog-primary-dark) 100%);
    color: #fff;
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.blog-hero::after {
    content: '';
    position: absolute;
    inset: auto -10% -40% auto;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.blog-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.85);
}
.blog-breadcrumb li + li::before {
    content: '/';
    margin-right: .5rem;
    color: rgba(255, 255, 255, 0.5);
}
.blog-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}
.blog-breadcrumb a:hover { color: var(--blog-accent); }

.blog-hero__title {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 800;
    margin: 0 0 .5rem;
    letter-spacing: -.02em;
}
.blog-hero__desc {
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 0 1.5rem;
    font-size: 1rem;
}

.blog-search {
    display: flex;
    gap: .5rem;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 4px;
    backdrop-filter: blur(6px);
}
.blog-search input[type="search"] {
    flex: 1;
    border: 0;
    background: transparent;
    color: #fff;
    padding: .6rem 1rem;
    font-size: .95rem;
    outline: none;
}
.blog-search input[type="search"]::placeholder { color: rgba(255, 255, 255, 0.7); }
.blog-search button {
    border: 0;
    background: var(--blog-accent);
    color: var(--blog-primary-dark);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    cursor: pointer;
    font-size: .95rem;
    transition: transform .15s ease;
}
.blog-search button:hover { transform: scale(1.05); }

/* ---------- Section + Category bar ---------- */
.blog-section {
    background: var(--blog-soft);
    padding: 2.5rem 0 4rem;
}
.blog-category-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: .5rem;
    overflow-x: auto;
    padding: .25rem 0 1.5rem;
    margin-bottom: 1rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}
.blog-category-bar::-webkit-scrollbar { height: 6px; }
.blog-category-bar::-webkit-scrollbar-thumb { background: rgba(94, 94, 142, 0.3); border-radius: 3px; }

.blog-chip {
    --chip-color: var(--blog-primary);
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: .5rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 2px solid var(--blog-border);
    color: var(--blog-text);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
}
.blog-chip:hover {
    border-color: var(--chip-color);
    color: var(--chip-color);
    transform: translateY(-1px);
}
.blog-chip.is-active {
    background: var(--chip-color);
    color: #fff;
    border-color: var(--blog-accent);
    box-shadow: 0 4px 12px rgba(94, 94, 142, .25);
}

/* ---------- Grid + Card ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.blog-grid--related { margin-top: 1rem; }

.blog-card {
    background: var(--blog-surface);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--blog-card-shadow);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid transparent;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--blog-card-shadow-hover);
    border-color: rgba(255, 215, 0, 0.4);
}
.blog-card.is-pinned {
    border-color: var(--blog-accent);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.22);
}

.blog-card__media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--blog-primary) 0%, var(--blog-primary-dark) 100%);
    overflow: hidden;
}
.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.blog-card:hover .blog-card__media img { transform: scale(1.04); }
.blog-card__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 2.5rem;
}

.blog-card__pin {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--blog-accent);
    color: var(--blog-primary-dark);
    padding: .25rem .65rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
}

.blog-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    flex: 1;
}
.blog-card__cat {
    --cat-color: var(--blog-primary);
    align-self: flex-start;
    display: inline-block;
    padding: .2rem .65rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--cat-color) 12%, white);
    color: var(--cat-color);
    font-weight: 700;
    font-size: .75rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.blog-card__cat:hover { background: var(--cat-color); color: #fff; }

.blog-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}
.blog-card__title a {
    color: var(--blog-text);
    text-decoration: none;
}
.blog-card__title a:hover { color: var(--blog-primary); }

.blog-card__summary {
    color: var(--blog-muted);
    font-size: .9rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
    color: var(--blog-muted);
    margin-top: auto;
    padding-top: .5rem;
    border-top: 1px dashed var(--blog-border);
}
.blog-card__meta i { color: var(--blog-primary); margin-right: .3rem; }

.blog-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}

/* ---------- Tag pill ---------- */
.blog-tag-pill {
    display: inline-block;
    padding: .2rem .65rem;
    border-radius: 999px;
    background: var(--blog-soft);
    color: var(--blog-primary);
    font-size: .75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s ease;
}
.blog-tag-pill:hover {
    background: var(--blog-primary);
    color: #fff;
}
.blog-tag-pill--more {
    background: transparent;
    color: var(--blog-muted);
    pointer-events: none;
}

/* ---------- Tag cloud aside ---------- */
.blog-tag-cloud {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--blog-card-shadow);
}
.blog-tag-cloud h3 {
    margin: 0 0 .75rem;
    font-size: 1rem;
    color: var(--blog-primary-dark);
    font-weight: 700;
}
.blog-tag-cloud > div {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

/* ---------- Empty state ---------- */
.blog-empty {
    text-align: center;
    padding: 3rem 1rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--blog-card-shadow);
    color: var(--blog-muted);
}
.blog-empty i {
    font-size: 2.5rem;
    color: var(--blog-primary);
    opacity: .5;
    margin-bottom: 1rem;
    display: block;
}

/* ---------- Detail page ---------- */
.blog-detail-card { border: 1px solid var(--blog-border); }
.blog-detail-cat {
    --cat-color: var(--blog-primary);
    display: inline-block;
    padding: .35rem .85rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--cat-color) 14%, white);
    color: var(--cat-color);
    font-weight: 700;
    font-size: .8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .85rem;
}
.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    color: var(--blog-muted);
    font-size: .9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--blog-border);
}
.blog-detail-meta i { color: var(--blog-primary); margin-right: .3rem; }

.blog-detail-tags {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--blog-border);
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    align-items: center;
}
.blog-detail-tags__label {
    font-weight: 700;
    color: var(--blog-primary-dark);
    margin-right: .5rem;
    font-size: .85rem;
}

.related-posts {
    margin-top: 3rem;
}
.related-posts__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blog-primary-dark);
    margin: 0 0 1rem;
    position: relative;
    padding-left: 1rem;
}
.related-posts__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: .25rem;
    bottom: .25rem;
    width: 4px;
    background: linear-gradient(180deg, var(--blog-primary) 0%, var(--blog-accent) 100%);
    border-radius: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .blog-hero { padding: 5rem 0 2rem; }
    .blog-grid { grid-template-columns: 1fr; gap: 1rem; }
    .blog-search { max-width: 100%; }
    .blog-detail-meta { gap: .75rem; font-size: .85rem; }
}

@media (prefers-reduced-motion: reduce) {
    .blog-card, .blog-card__media img, .blog-search button, .blog-chip {
        transition: none;
    }
    .blog-card:hover { transform: none; }
    .blog-card:hover .blog-card__media img { transform: none; }
}

/* ============================================================
   Detay sayfası — yeni nesil tasarım
   ============================================================ */
.blog-article-hero {
    position: relative;
    padding: 4rem 0 6.5rem;
    background: linear-gradient(135deg, var(--blog-primary) 0%, var(--blog-primary-dark) 100%);
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}
.blog-article-hero.has-cover { padding: 5rem 0 7rem; }
.blog-article-hero::after {
    content: '';
    position: absolute;
    inset: auto -10% -50% auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.blog-breadcrumb--light ol { color: rgba(255, 255, 255, 0.85); }
.blog-breadcrumb--light a { color: rgba(255, 255, 255, 0.9); }
.blog-breadcrumb--light a:hover { color: var(--blog-accent); }
.blog-breadcrumb--light li[aria-current] { color: var(--blog-accent); font-weight: 600; }

.blog-article-hero__cat {
    --cat-color: var(--blog-accent);
    display: inline-block;
    padding: .4rem 1rem;
    border-radius: 999px;
    background: var(--cat-color);
    color: var(--blog-primary-dark);
    font-weight: 700;
    font-size: .8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.blog-article-hero__cat:hover { transform: translateY(-1px); color: var(--blog-primary-dark); }

.blog-article-hero__title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0 0 1.5rem;
    letter-spacing: -.02em;
    line-height: 1.18;
    max-width: 900px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.blog-article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: .9rem;
}
.blog-article-hero__meta .meta-item i { margin-right: .35rem; color: var(--blog-accent); }
.meta-pin { color: var(--blog-accent) !important; font-weight: 600; }

.meta-author {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
}
.meta-author__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blog-accent) 0%, #f5b400 100%);
    color: var(--blog-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
}
.meta-author strong { display: block; font-weight: 700; line-height: 1.1; }
.meta-author small { color: rgba(255, 255, 255, 0.7); font-size: .75rem; }
.meta-author--lg .meta-author__avatar { width: 48px; height: 48px; font-size: 1.2rem; }
.meta-author--lg small { color: var(--blog-muted); }
.meta-author--lg strong { color: var(--blog-text); }

/* ---------- Article layout ---------- */
.blog-article-section {
    background: var(--blog-soft);
    padding: 0 0 4rem;
    margin-top: -3rem;
    position: relative;
}
.blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: start;
}

.blog-article {
    background: #fff;
    border-radius: 22px;
    padding: 2rem 2rem 2.5rem;
    box-shadow: var(--blog-card-shadow);
}

.blog-article__media {
    margin: -3rem -1rem 1.75rem;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(35, 33, 79, 0.25);
}
.blog-article__media img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.blog-article__media--inline {
    margin: 1.5rem 0;
    box-shadow: var(--blog-card-shadow);
}

/* ---------- Blog prose typography ---------- */
.blog-prose {
    color: #2c2f4a;
    font-size: 1.05rem;
    line-height: 1.78;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.blog-prose > * + * { margin-top: 1.15rem; }
.blog-prose p { margin: 0 0 1.15rem; }
.blog-prose p:last-child { margin-bottom: 0; }

.blog-prose h2,
.blog-prose h3,
.blog-prose h4 {
    color: var(--blog-primary-dark);
    font-weight: 800;
    letter-spacing: -.01em;
    margin: 2.2rem 0 .9rem;
    line-height: 1.3;
}
.blog-prose h2 {
    font-size: 1.6rem;
    padding-left: 1rem;
    position: relative;
}
.blog-prose h2::before {
    content: '';
    position: absolute;
    left: 0; top: .35em; bottom: .35em;
    width: 4px;
    background: linear-gradient(180deg, var(--blog-primary) 0%, var(--blog-accent) 100%);
    border-radius: 2px;
}
.blog-prose h3 { font-size: 1.3rem; }
.blog-prose h4 { font-size: 1.1rem; }

.blog-prose a {
    color: var(--blog-primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(94, 94, 142, .35);
    transition: text-decoration-color .15s ease, color .15s ease;
}
.blog-prose a:hover {
    color: var(--blog-primary-dark);
    text-decoration-color: var(--blog-accent);
}

.blog-prose strong { color: var(--blog-primary-dark); font-weight: 700; }
.blog-prose em { color: #4b5573; }

.blog-prose ul, .blog-prose ol { padding-left: 1.5rem; margin: 1rem 0 1.25rem; }
.blog-prose ul li, .blog-prose ol li { margin-bottom: .45rem; }
.blog-prose ul { list-style: none; padding-left: 0; }
.blog-prose ul li {
    position: relative;
    padding-left: 1.6rem;
}
.blog-prose ul li::before {
    content: '';
    position: absolute;
    left: 0; top: .65em;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--blog-accent);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, .25);
}

.blog-prose blockquote {
    margin: 1.5rem 0;
    padding: 1.1rem 1.25rem 1.1rem 1.5rem;
    background: linear-gradient(135deg, rgba(94, 94, 142, .06) 0%, rgba(255, 215, 0, .08) 100%);
    border-left: 4px solid var(--blog-primary);
    border-radius: 0 12px 12px 0;
    color: var(--blog-primary-dark);
    font-style: italic;
    font-size: 1.05rem;
}

.blog-prose code {
    background: var(--blog-soft);
    color: var(--blog-primary-dark);
    padding: .15em .45em;
    border-radius: 6px;
    font-size: .92em;
    font-family: 'JetBrains Mono', Consolas, Monaco, monospace;
}
.blog-prose pre {
    background: #1f1d3a;
    color: #f5f5fa;
    padding: 1.1rem 1.25rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.25rem 0;
    font-size: .92rem;
    line-height: 1.6;
}
.blog-prose pre code { background: transparent; color: inherit; padding: 0; }

.blog-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 1.25rem auto;
    display: block;
    box-shadow: var(--blog-card-shadow);
}

.blog-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--blog-card-shadow);
}
.blog-prose th, .blog-prose td {
    padding: .65rem .85rem;
    border-bottom: 1px solid var(--blog-border);
    text-align: left;
}
.blog-prose th {
    background: var(--blog-primary);
    color: #fff;
    font-weight: 700;
}
.blog-prose hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--blog-border) 50%, transparent 100%);
    margin: 2rem 0;
}

/* ---------- Info box ---------- */
.blog-info-box {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(94, 94, 142, .06) 0%, rgba(255, 215, 0, .08) 100%);
    border: 1px solid rgba(94, 94, 142, .12);
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.blog-info-box__icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blog-primary) 0%, var(--blog-primary-dark) 100%);
    color: var(--blog-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.blog-info-box h3 {
    margin: 0 0 .5rem;
    color: var(--blog-primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
}
.blog-info-box p { margin: 0 0 .65rem; color: #3f4458; line-height: 1.65; }

/* ---------- Share buttons ---------- */
.blog-share {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
}
.blog-share--bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--blog-border);
}
.blog-share__label {
    font-weight: 700;
    color: var(--blog-primary-dark);
    margin-right: .5rem;
}
.blog-share__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blog-soft);
    color: var(--blog-primary-dark);
    text-decoration: none;
    border: 1px solid var(--blog-border);
    cursor: pointer;
    transition: all .15s ease;
    font-size: .95rem;
}
.blog-share__btn:hover {
    transform: translateY(-2px);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(94, 94, 142, .25);
}
.blog-share__btn--wp:hover { background: #25d366; }
.blog-share__btn--fb:hover { background: #1877f2; }
.blog-share__btn--x:hover  { background: #000; }
.blog-share__btn--tg:hover { background: #0088cc; }
.blog-share__btn--copy:hover { background: var(--blog-primary); }

/* ---------- Sidebar ---------- */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 110px;
}
.blog-sidebar__card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: var(--blog-card-shadow);
}
.blog-sidebar__card h3 {
    margin: 0 0 .85rem;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--blog-muted);
    font-weight: 700;
}
.blog-sidebar__card--cta {
    background: linear-gradient(135deg, var(--blog-primary) 0%, var(--blog-primary-dark) 100%);
    color: #fff;
    text-align: center;
}
.blog-sidebar__card--cta h3 {
    color: var(--blog-accent);
    font-size: 1.05rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: .5rem;
}
.blog-sidebar__card--cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: .9rem;
    margin: 0 0 1rem;
}
.blog-sidebar__card--cta .btn {
    color: var(--blog-primary-dark);
    font-weight: 700;
    padding: .55rem 1.25rem;
}

.blog-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.blog-sidebar__list li {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
}
.blog-sidebar__thumb {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    background: var(--blog-soft);
}
.blog-sidebar__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-sidebar__link {
    color: var(--blog-text);
    font-weight: 600;
    font-size: .9rem;
    line-height: 1.3;
    text-decoration: none;
    display: block;
    margin-bottom: .25rem;
}
.blog-sidebar__link:hover { color: var(--blog-primary); }
.blog-sidebar__list small {
    color: var(--blog-muted);
    font-size: .75rem;
}

/* ---------- Responsive: sidebar collapses below ---------- */
@media (max-width: 991.98px) {
    .blog-article-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
        top: auto;
    }
    .blog-article {
        padding: 1.5rem 1.25rem 2rem;
    }
    .blog-article__media {
        margin: -3rem -.5rem 1.25rem;
    }
    .blog-article-hero { padding: 3rem 0 5.5rem; }
    .blog-article-hero.has-cover { padding: 3.5rem 0 6rem; }
}

@media (max-width: 575.98px) {
    .blog-article-hero__meta { gap: .85rem; font-size: .82rem; }
    .meta-author { width: 100%; }
    .blog-prose { font-size: 1rem; }
    .blog-prose h2 { font-size: 1.35rem; }
    .blog-prose h3 { font-size: 1.15rem; }
}

