/*
Theme Name: dds_musicrelease.ru
Author: Алексей Руднев
Description: Информационная платформа о создании, продвижении и дистрибуции музыкального и видеоконтента. Дизайн-концепция Lavender Tech с элементами неоморфизма.
Version: 1.1
Text Domain: mrls
*/

/* =========================================================================
   Variables & reset
   ====================================================================== */
:root {
    --bg:        #F3F0FF;
    --bg-alt:    #E9E3F8;
    --sidebar:   #FDFCFF;
    --footer:    #2A2140;
    --ink:       #1E1828;
    --accent:    #7C4DFF;
    --mint:      #00E5A0;
    --muted:     #9A8CB2;
    --card:      #FDFCFF;
    --shadow:    0 14px 40px rgba(124, 77, 255, 0.14);
    --shadow-hi: 0 22px 55px rgba(124, 77, 255, 0.26);
    --neo-out:   -6px -6px 14px rgba(255,255,255,0.9), 6px 6px 16px rgba(124,77,255,0.18);
    --neo-in:    inset -5px -5px 12px rgba(255,255,255,0.85), inset 5px 5px 12px rgba(124,77,255,0.22);
    --radius:    16px;
    --radius-sm: 12px;
    --shell:     min(92%, 1180px);
    --font:      'Inter', 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background-color: var(--bg);
    background-image: radial-gradient(120% 90% at 50% 8%, #F3F0FF 0%, #E9E3F8 100%);
    background-attachment: fixed;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color .2s, text-decoration-color .2s, text-decoration-thickness .2s; }
a:hover { text-decoration-thickness: 2px; text-decoration-color: var(--mint); color: var(--mint); }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; color: var(--ink); letter-spacing: -0.015em; }
h1 { font-size: 3.6rem; margin: 0 0 .5em; }
h2 { font-size: 2.1rem; margin: 0 0 .7em; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1em; }

.shell { width: var(--shell); margin-inline: auto; }

/* Screen-reader */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }

/* Skip / focus */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* =========================================================================
   Top accent bar (per-section colour)
   ====================================================================== */
.topbar { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 999; background: var(--accent); }
.section-journal .topbar { background: var(--mint); }

/* =========================================================================
   Header (glassmorphism, not sticky)
   ====================================================================== */
.site-header {
    position: static;
    background: rgba(243, 240, 255, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(124,77,255,0.10);
    padding: 18px 0;
    margin-top: 3px;
}
.header-inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; min-width: 0; }
.brand:hover { text-decoration: none; }
.brand-logo { display: block; height: 54px; width: auto; }
.brand-figure { flex: 0 0 auto; }
.brand-text { min-width: 0; }
.brand-name { display: block; font-weight: 800; font-size: 1.02rem; color: var(--ink); line-height: 1.3; max-width: 52ch; }
.brand-desc { display: block; font-size: .8rem; color: var(--muted); line-height: 1.35; margin-top: 2px; max-width: 60ch; }

.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; flex-wrap: wrap; }
.main-nav a {
    display: inline-block;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: .95rem;
    transition: background .2s, color .2s, box-shadow .2s;
}
.main-nav a:hover,
.main-nav .current-menu-item > a { background: rgba(124,77,255,0.12); color: var(--accent); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* =========================================================================
   Buttons
   ====================================================================== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(124,77,255,0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(124,77,255,0.42); color: #fff; }
.btn-secondary { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-secondary:hover { background: rgba(124,77,255,0.05); color: var(--accent); transform: translateY(-2px); }
.btn-ghost { color: var(--accent); background: transparent; }
.btn-ghost:hover { color: var(--mint); }

/* =========================================================================
   Layout wrappers
   ====================================================================== */
.site-main { padding: 46px 0 70px; }

.layout-single { display: block; }
.layout-single > .content-area { width: 85%; margin-inline: auto; min-width: 0; }

.layout-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 2.3fr) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}
.layout-with-sidebar > .content-area { min-width: 0; }

/* =========================================================================
   Section heading with two-part underline marker
   ====================================================================== */
.sec-head { position: relative; padding-left: 22px; margin-bottom: 1.4em; }
.sec-head::before { content: ""; position: absolute; left: 0; top: .12em; bottom: .12em; width: 6px; border-radius: 4px; background: var(--accent); }
.sec-head::after { content: ""; position: absolute; left: 0; top: calc(50% + .1em); width: 6px; height: 10px; margin-top: 6px; border-radius: 4px; background: repeating-linear-gradient(var(--mint) 0 3px, transparent 3px 6px); }
.sec-head h2 { margin: 0; }

/* =========================================================================
   Breadcrumbs
   ====================================================================== */
.crumbs { font-size: .85rem; color: var(--muted); margin: 0 0 26px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { margin: 0 6px; color: var(--muted); }
.crumbs span { color: var(--ink); }

/* =========================================================================
   Cards
   ====================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 30px; }

.card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .28s, box-shadow .28s;
    min-width: 0;
}
.card:hover { transform: scale(1.02); box-shadow: var(--shadow-hi); }

.card-thumb { display: block; overflow: hidden; }
.card-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom-left-radius: 50% 22%;
    border-bottom-right-radius: 50% 22%;
}
.card-thumb-empty {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #7C4DFF 0%, #00E5A0 130%);
    border-bottom-left-radius: 50% 22%;
    border-bottom-right-radius: 50% 22%;
}

.card-body { flex: 1; display: flex; flex-direction: column; padding: 22px 24px 26px; min-width: 0; }
.card-title { font-size: 1.25rem; margin: 0 0 .5em; }
.card-title a { color: var(--ink); text-decoration: none; }
.card-title a:hover { color: var(--accent); }
.card-meta { font-size: .8rem; color: var(--muted); margin-bottom: .7em; }
.card-excerpt { color: #453b5a; font-size: .95rem; }
.card-excerpt p { margin: 0 0 0.5em; background: none; }
.card-more { margin-top: auto; padding-top: 14px; }
.card-more a { font-weight: 700; text-decoration: none; color: var(--accent); }
.card-more a:hover { color: var(--mint); }

/* =========================================================================
   Front page
   ====================================================================== */
.front { }
.front-section { padding: 88px 0; position: relative; }
.front-section.alt { background: var(--bg-alt); }
.front-inner { width: 85%; margin-inline: auto; min-width: 0; }

/* wavy separator between sections */
.front-section + .front-section::before {
    content: "";
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='40' viewBox='0 0 120 40'%3E%3Cpath d='M0 20 Q30 0 60 20 T120 20' fill='none' stroke='%2300E5A0' stroke-width='6' opacity='0.05'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 120px 40px;
    pointer-events: none;
}

/* Hero */
.hero {
    position: relative;
    padding: 118px 0 128px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(42,33,64,0.92) 0%, rgba(124,77,255,0.78) 100%),
                radial-gradient(circle, rgba(255,255,255,0.14) 1px, transparent 1.4px);
    background-size: cover, 22px 22px;
}
.hero-inner { position: relative; z-index: 2; width: 85%; margin-inline: auto; }
.hero-frame { display: inline-block; padding: 44px 40px; border-radius: 20px; position: relative; }
.hero-frame::before,
.hero-frame::after {
    content: ""; position: absolute; width: 46px; height: 46px;
}
.hero-frame::before { top: 0; left: 0; border-top: 3px solid var(--mint); border-left: 3px solid var(--mint); border-top-left-radius: 12px; }
.hero-frame::after { bottom: 0; right: 0; border-bottom: 3px solid var(--mint); border-right: 3px solid var(--mint); border-bottom-right-radius: 12px; }
.hero h1 { color: #fff; margin: 0 0 .4em; }
.hero-sub { font-size: 1.2rem; color: #EDE7FF; max-width: 62ch; margin: 0 auto 1.8em; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-secondary { border-color: var(--mint); color: var(--mint); }
.hero-actions .btn-secondary:hover { background: rgba(0,229,160,0.10); }
/* purple blob under hero */
.hero-blob { position: absolute; z-index: 1; width: 520px; height: 520px; left: -120px; bottom: -220px; background: var(--accent); opacity: 0.10; filter: blur(60px); border-radius: 46% 54% 60% 40% / 50% 44% 56% 50%; pointer-events: none; }

/* Rubricator (neomorphism) */
.rubric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 26px; }
.rubric-tile {
    display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
    padding: 30px 28px;
    border-radius: var(--radius);
    background: var(--bg);
    box-shadow: var(--neo-out);
    text-decoration: none;
    color: var(--ink);
    transition: box-shadow .25s, transform .25s;
    min-width: 0;
}
.rubric-tile:hover { box-shadow: var(--neo-in); text-decoration: none; transform: translateY(1px); }
.rubric-ico { width: 46px; height: 46px; color: var(--ink); transition: color .25s; }
.rubric-tile:hover .rubric-ico { color: var(--mint); }
.rubric-tile h3 { margin: 0; font-size: 1.15rem; }
.rubric-tile p { margin: 0; font-size: .88rem; color: var(--muted); }

/* Timeline */
.timeline { position: relative; margin: 20px auto 0; max-width: 860px; padding: 10px 0; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; margin-left: -1.5px; background: linear-gradient(var(--accent), var(--mint)); border-radius: 3px; }
.tl-item { position: relative; width: 50%; padding: 18px 40px; min-width: 0; }
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; text-align: left; }
.tl-item::after { content: ""; position: absolute; top: 26px; width: 18px; height: 18px; border-radius: 50%; background: var(--card); border: 4px solid var(--accent); box-shadow: var(--shadow); }
.tl-item:nth-child(odd)::after { right: -9px; }
.tl-item:nth-child(even)::after { left: -9px; }
.tl-step { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.tl-item h3 { margin: 0 0 .3em; font-size: 1.2rem; }
.tl-item p { margin: 0; color: #4a3f61; font-size: .95rem; }

/* Quote block */
.quote-block {
    position: relative;
    background: linear-gradient(135deg, #2A2140 0%, #3a2c63 100%);
    border-radius: 22px;
    padding: 70px 64px;
    text-align: center;
    overflow: hidden;
}
.quote-block::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1.4px);
    background-size: 22px 22px;
    opacity: .5;
}
.quote-mark { position: absolute; width: 34px; height: 34px; border: 2px solid rgba(0,229,160,0.4); transform: rotate(45deg); }
.quote-mark.tl { top: 26px; left: 26px; }
.quote-mark.br { bottom: 26px; right: 26px; }
.quote-block blockquote {
    position: relative; z-index: 1; margin: 0; font-size: 2rem; font-weight: 800; line-height: 1.3;
    background: linear-gradient(90deg, #ffffff 0%, #00E5A0 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.quote-block cite { position: relative; z-index: 1; display: block; margin-top: 20px; font-style: normal; font-size: .95rem; color: #C9BEE8; }

/* Latest posts intro */
.latest-head { text-align: left; margin-bottom: 34px; }

/* =========================================================================
   Sidebar & widgets
   ====================================================================== */
.sidebar { min-width: 0; }
.widget {
    background: var(--sidebar);
    border-radius: var(--radius);
    padding: 24px 24px;
    margin-bottom: 26px;
    box-shadow: var(--shadow);
    color: var(--ink);
    min-width: 0;
}
.widget:last-child { margin-bottom: 0; }
.widget-title { margin: 0 0 16px; font-size: 1.1rem; color: var(--ink); position: relative; padding-bottom: 10px; }
.widget-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 42px; height: 3px; background: var(--accent); border-radius: 3px; }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid rgba(124,77,255,0.10); }
.widget ul li:last-child { border-bottom: 0; }
.widget a { color: var(--accent); text-decoration: none; }
.widget a:hover { color: var(--mint); }
.widget .post-date { display: block; font-size: .78rem; color: var(--muted); }

/* =========================================================================
   Content typography (single / page)
   ====================================================================== */
.article-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 40px 46px;
    box-shadow: var(--shadow);
    min-width: 0;
}
.article-card .entry-title { font-size: 2.4rem; margin: 0 0 .3em; }
.entry-meta { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }
.entry-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 26px; }
.entry-thumb img { display: block; width: 100%; }
.entry-content { min-width: 0; }
.entry-content img { border-radius: 12px; display: block; }
.entry-content h2 { margin-top: 1.4em; }
.entry-content a { color: var(--accent); }
.entry-content blockquote { margin: 1.4em 0; padding: 20px 26px; background: var(--bg-alt); border-left: 4px solid var(--accent); border-radius: 0 12px 12px 0; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }

/* Tables */
table { width: 100%; border-collapse: collapse; margin: 1.4em 0; }
table, th, td { border: 1px solid rgba(124,77,255,0.28); }
th, td { padding: 10px 14px; text-align: left; }
th { background: var(--bg-alt); font-weight: 700; }

/* Tags */
.entry-tags { margin-top: 28px; }
.entry-tags a { display: inline-block; margin: 0 6px 6px 0; padding: 5px 12px; background: rgba(124,77,255,0.10); border-radius: 20px; font-size: .82rem; text-decoration: none; }

/* =========================================================================
   Comments
   ====================================================================== */
.comments-area { margin-top: 40px; background: var(--card); border-radius: var(--radius); padding: 34px 38px; box-shadow: var(--shadow); min-width: 0; }
.comments-title { margin-top: 0; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list ol.children { list-style: none; margin: 0 0 0 26px; padding: 0; }
.comment-item { margin-bottom: 20px; }
.comment-inner { background: var(--bg); border-radius: 12px; padding: 18px 22px; }
.comment-head { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.comment-author { font-weight: 700; }
.comment-date { font-size: .78rem; color: var(--muted); }
.comment-reply a { font-size: .85rem; font-weight: 700; text-decoration: none; }
.comment-form label { display: block; font-weight: 600; margin: 12px 0 6px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%; padding: 12px 14px; border: 2px solid rgba(124,77,255,0.20); border-radius: 12px; background: #fff; font-family: inherit; font-size: 1rem; min-width: 0;
}
.comment-form textarea:focus,
.comment-form input:focus { border-color: var(--accent); outline: none; }
.comment-form input[type="submit"], .form-submit input { background: var(--accent); color: #fff; border: 0; padding: 13px 30px; border-radius: 12px; font-weight: 700; cursor: pointer; margin-top: 14px; }
.comment-form input[type="submit"]:hover { background: #6a3ce6; }

/* =========================================================================
   Search form
   ====================================================================== */
.search-form { display: flex; gap: 10px; min-width: 0; }
.search-form .search-field { flex: 1; min-width: 0; padding: 12px 16px; border: 2px solid rgba(124,77,255,0.22); border-radius: 12px; background: #fff; font-size: 1rem; }
.search-form .search-field:focus { border-color: var(--accent); outline: none; }
.search-form .search-submit { background: var(--accent); color: #fff; border: 0; padding: 0 24px; border-radius: 12px; font-weight: 700; cursor: pointer; }
.search-form .search-submit:hover { background: #6a3ce6; }

/* =========================================================================
   Pagination (type=plain → .page-numbers)
   ====================================================================== */
.pager { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 46px 0 0; }
.pager .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 44px; height: 44px; padding: 0 14px;
    border-radius: 12px; background: var(--card); color: var(--ink);
    text-decoration: none; font-weight: 700; box-shadow: var(--shadow);
    transition: background .2s, color .2s, transform .2s;
}
.pager a.page-numbers:hover { background: rgba(124,77,255,0.12); color: var(--accent); transform: translateY(-2px); }
.pager .page-numbers.current { background: var(--accent); color: #fff; }
.pager .page-numbers.dots { background: none; box-shadow: none; }

/* =========================================================================
   404
   ====================================================================== */
.error-404 { text-align: center; padding: 40px 0; }
.error-404 .big { font-size: 5rem; font-weight: 800; color: var(--accent); margin: 0; line-height: 1; }
.error-404 .search-form { max-width: 460px; margin: 26px auto; }

/* =========================================================================
   Footer
   ====================================================================== */
.site-footer { position: relative; background: var(--footer); color: #D8CFF0; padding: 70px 0 0; margin-top: 60px; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; width: 460px; height: 460px; right: -140px; top: -160px; background: var(--accent); opacity: 0.10; filter: blur(70px); border-radius: 50%; pointer-events: none; }
.footer-cols { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 40px; }
.footer-cols .widget { background: transparent; box-shadow: none; padding: 0; margin: 0; color: #D8CFF0; }
.footer-cols .widget-title { color: #fff; }
.footer-cols .widget-title::after { background: var(--mint); }
.footer-cols .widget a { color: #C7BCE6; }
.footer-cols .widget a:hover { color: var(--mint); }
.footer-cols .widget ul li { border-bottom-color: rgba(255,255,255,0.10); }
.footer-cols .widget .post-date { color: #9A8CB2; }
.footer-bottom { position: relative; margin-top: 54px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.10); text-align: center; font-size: .85rem; color: #9A8CB2; }

/* =========================================================================
   Cookie banner
   ====================================================================== */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
    background: rgba(42,33,64,0.97);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    color: #EDE7FF; padding: 18px 26px; font-size: .9rem;
}
.cookie-banner p { margin: 0; max-width: 70ch; }
.cookie-banner a { color: var(--mint); }
.cookie-accept { background: var(--accent); color: #fff; border: 0; padding: 11px 26px; border-radius: 12px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.cookie-accept:hover { background: #6a3ce6; }

/* =========================================================================
   Custom cursor
   ====================================================================== */
.mrls-cursor { position: fixed; top: 0; left: 0; width: 22px; height: 22px; border: 2px solid var(--accent); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width .2s, height .2s, background .2s, border-color .2s; mix-blend-mode: normal; }
.mrls-cursor.is-hover { width: 40px; height: 40px; background: rgba(124,77,255,0.18); border-color: var(--mint); }

/* =========================================================================
   Responsive
   ====================================================================== */
@media (max-width: 960px) {
    h1 { font-size: 2.7rem; }
    h2 { font-size: 1.8rem; }
    .layout-with-sidebar { grid-template-columns: 1fr; }
    .layout-single > .content-area { width: 100%; }
    .front-inner, .hero-inner { width: 92%; }
    .article-card { padding: 30px 26px; }
}

@media (max-width: 600px) {
    h1 { font-size: 2.15rem; }
    .hero { padding: 84px 0 90px; }
    .hero-frame { padding: 28px 22px; }
    .front-section { padding: 60px 0; }
    .main-nav { display: none; width: 100%; margin-left: 0; }
    .main-nav.is-open { display: block; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .nav-toggle { display: block; margin-left: auto; }
    .mrls-cursor { display: none; }

    /* timeline → single column */
    .timeline::before { left: 9px; }
    .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding: 14px 0 14px 40px; }
    .tl-item::after { left: 0 !important; right: auto !important; }

    .quote-block { padding: 44px 24px; }
    .quote-block blockquote { font-size: 1.5rem; }
    .article-card { padding: 24px 18px; }
    .comments-area { padding: 24px 18px; }
    .cookie-banner { padding: 16px 18px; }
}
