/*
Theme Name: dds_videovaz.ru
Author: Денис Зубов
Description: Информационный видеоблог-журнал о технологиях и автомобилях. Дизайн-концепция «Лабораторный гараж»: индустриальный лофт и лабораторная точность.
Version: 1.1
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: dds_videovaz
*/

/* ============================================================ *
 *  Переменные и сброс
 * ============================================================ */
:root {
    --bg:        #F5F2EB;
    --bg-alt:    #E8E2D7;
    --dark:      #1A1D20;
    --ink:       #2C2E33;
    --accent:    #D94A38;
    --accent-2:  #3A6B8F;
    --muted:     #8C857B;
    --line:      #D9D2C6;
    --grid:      #D9D2C6;
    --heading-font: "Arial Narrow", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --body-font: system-ui, -apple-system, "Segoe UI", Roboto, "Open Sans", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--body-font);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--bg);
    background-image:
        linear-gradient(var(--grid) 0.5px, transparent 0.5px),
        linear-gradient(90deg, var(--grid) 0.5px, transparent 0.5px);
    background-size: 40px 40px;
    overflow-x: hidden;
    position: relative;
}

/* Чертёжный силуэт седана в правом нижнем углу */
body::after {
    content: "";
    position: fixed;
    right: -20px;
    bottom: -10px;
    width: 360px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'%3E%3Cpath d='M8 58 L28 58 Q33 38 54 36 L92 34 Q102 23 124 25 L156 30 Q176 33 186 54 L194 58' fill='none' stroke='%232C2E33' stroke-width='1.4'/%3E%3Cpath d='M40 36 L58 24 L112 24 L124 36' fill='none' stroke='%232C2E33' stroke-width='1.4'/%3E%3Ccircle cx='58' cy='60' r='10' fill='none' stroke='%232C2E33' stroke-width='1.4'/%3E%3Ccircle cx='150' cy='60' r='10' fill='none' stroke='%232C2E33' stroke-width='1.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

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

a { color: var(--accent-2); text-decoration: none; }

/* Ссылки в тексте статей — пунктирное подчёркивание при наведении */
.entry-content a,
.widget-text a,
.textwidget a {
    color: var(--accent-2);
    text-decoration: none;
    transition: border-color .15s ease;
    border-bottom: 1px dashed transparent;
}
.entry-content a:hover,
.widget-text a:hover,
.textwidget a:hover {
    border-bottom: 1px dashed var(--accent-2);
}

/* Двойное подчёркивание для терминов */
.entry-content .term,
.entry-content dfn {
    border-bottom: 3px double var(--accent-2);
    font-style: normal;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: .01em;
    font-weight: 700;
}

p { margin: 0 0 1.1em; }

/* ============================================================ *
 *  Контейнер
 * ============================================================ */
.shell {
    width: min(92%, 1180px);
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

/* ============================================================ *
 *  Кнопки — квадрат с одним скошенным углом
 * ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .02em;
    padding: .7em 1.5em;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease, transform .12s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-2);
    color: #fff;
    transform: translateY(2px);
}
.btn-ghost {
    background: transparent;
    color: var(--accent-2);
    box-shadow: inset 0 0 0 2px var(--accent-2);
}
.btn-ghost:hover {
    background: var(--accent-2);
    color: #fff;
    transform: translateY(2px);
}

/* ============================================================ *
 *  Заголовки секций — тонкая красная линия вправо
 * ============================================================ */
.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    margin: 0 0 1.4rem;
    text-transform: uppercase;
    min-width: 0;
}
.section-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--accent);
    min-width: 24px;
}

/* ============================================================ *
 *  Шапка
 * ============================================================ */
.site-header {
    background: var(--dark);
    color: #fff;
    border-bottom: 3px solid var(--accent);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.1rem 0;
    flex-wrap: wrap;
}
.brand {
    display: flex;
    align-items: center;
    gap: .9rem;
    min-width: 0;
}
.brand-logo, .brand-mark { flex: 0 0 auto; display: block; }
.brand-mark svg { display: block; }
.brand-text { min-width: 0; }
.brand-title {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.2;
    color: #fff;
    text-decoration: none;
    display: block;
    max-width: 42ch;
}
.brand-desc {
    margin: .25rem 0 0;
    font-size: .82rem;
    color: #b9b2a8;
    max-width: 52ch;
}

/* Меню (не липкое) */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: .3rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.main-nav a {
    display: block;
    color: #e7e2d9;
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: .02em;
    padding: .5rem .85rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}
.main-nav a:hover,
.main-nav .current-menu-item > a {
    color: #fff;
    border-bottom-color: var(--accent);
}
.nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--accent);
    color: #fff;
    font-family: var(--heading-font);
    font-weight: 700;
    padding: .45rem .8rem;
    cursor: pointer;
}

/* ============================================================ *
 *  Раскладки
 * ============================================================ */
.site-main { padding: 2.5rem 0 3rem; position: relative; z-index: 1; }

.layout-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 67fr) minmax(0, 27fr);
    gap: 3%;
    align-items: start;
}
.layout-single .content-area,
.layout-narrow {
    width: 100%;
}
.content-area { min-width: 0; }

.sidebar {
    min-width: 0;
    background: var(--bg);
}
.sidebar .widget { margin-bottom: 2rem; }

/* Ширина 85% для главной и одноколоночных */
.is-front .site-main .shell,
.layout-single {
    /* контент внутри shell */
}
.narrow-85 {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
@media (max-width: 960px) {
    .narrow-85 { width: 100%; }
}

/* ============================================================ *
 *  Хлебные крошки
 * ============================================================ */
.breadcrumbs {
    font-size: .85rem;
    color: var(--muted);
    margin: 0 0 1.5rem;
    padding: .6rem .9rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
}
.breadcrumbs a { color: var(--accent-2); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { color: var(--muted); margin: 0 .2rem; }

/* ============================================================ *
 *  Карточки записей
 * ============================================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.6rem;
}
.card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 7px 7px 0 rgba(44, 46, 51, .14);
    transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.card:hover {
    border-color: var(--accent);
    box-shadow: 10px 12px 0 rgba(217, 74, 56, .22);
    transform: translateY(-2px);
}
.card-thumb {
    position: relative;
    display: block;
    overflow: hidden;
}
.card-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 10;
}
/* «Красный уголок» */
.card-thumb::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    border-width: 0 22px 22px 0;
    border-style: solid;
    border-color: transparent var(--accent) transparent transparent;
    z-index: 2;
    transform: rotate(90deg);
}
.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.1rem 1.2rem 1.3rem;
    min-width: 0;
}
.card-cat {
    display: inline-block;
    align-self: flex-start;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .2rem .55rem;
    margin-bottom: .6rem;
    border: 1.5px solid var(--accent-2);
    color: var(--accent-2);
}
.card-title {
    font-size: 1.2rem;
    margin: 0 0 .5rem;
    line-height: 1.25;
}
.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: .6rem;
}
.card-excerpt {
    color: #4a4c52;
    font-size: .95rem;
    margin-bottom: 1rem;
}
.card-excerpt p { margin: 0 0 0.5em; background: none; }
.card-more { margin-top: auto; }
.card-more a {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .02em;
}
.card-more a:hover { color: var(--accent-2); }

/* ============================================================ *
 *  Пагинация (.page-numbers, type => plain)
 * ============================================================ */
.pager {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: 2.5rem 0 0;
    justify-content: center;
}
.pager .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 .7rem;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.pager a.page-numbers:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.pager .page-numbers.current {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.pager .page-numbers.dots {
    border-color: transparent;
    background: transparent;
}

/* ============================================================ *
 *  Записи и страницы
 * ============================================================ */
.entry-header { margin-bottom: 1.4rem; }
.entry-title { font-size: 2.4rem; margin: 0 0 .5rem; line-height: 1.12; }
.page-hero-title { font-size: 2.6rem; margin: 0 0 1.2rem; }
.entry-meta { font-size: .85rem; color: var(--muted); }
.entry-thumb { margin: 0 0 1.6rem; position: relative; }
.entry-thumb img { width: 100%; display: block; border: 1px solid var(--line); }
.entry-content { font-size: 1.05rem; }
.entry-content h2 { font-size: 1.7rem; margin: 1.8rem 0 .7rem; }
.entry-content h3 { font-size: 1.35rem; margin: 1.5rem 0 .6rem; }
.entry-content img { border: 1px solid var(--line); display: block; }
.entry-content blockquote {
    margin: 1.5rem 0;
    padding: 1.2rem 1.4rem;
    background: var(--bg-alt);
    border-left: 4px solid var(--accent);
}
.entry-content blockquote p:last-child { margin-bottom: 0; }

/* Стикеры категорий в мете */
.post-tags { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.post-tags a {
    font-size: .78rem;
    font-weight: 700;
    padding: .25rem .6rem;
    border: 1.5px solid var(--accent-2);
    color: var(--accent-2);
    text-decoration: none;
}

/* Таблицы */
.entry-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 1.4rem 0;
}
.entry-content table,
.entry-content th,
.entry-content td {
    border: 1px solid var(--line);
}
.entry-content th, .entry-content td { padding: .6rem .8rem; text-align: left; }
.entry-content th { background: var(--bg-alt); }

/* ============================================================ *
 *  Главная
 * ============================================================ */
.front-section { padding: 3rem 0; position: relative; }
.front-section.bg-alt { background: var(--bg-alt); }

/* Блок 1 — Hero */
.hero {
    position: relative;
    color: #fff;
    padding: 0;
    overflow: hidden;
    border-bottom: 3px solid var(--accent);
}
.hero-media {
    position: absolute;
    inset: 0;
    background-image: url("images/hero-workshop.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(2px) saturate(.9);
    transform: scale(1.05);
    z-index: 0;
}
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,29,32,.92) 0%, rgba(26,29,32,.65) 60%, rgba(26,29,32,.45) 100%);
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 4.5rem 0;
    min-width: 0;
}
.hero-copy { max-width: 60ch; min-width: 0; }
.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.05;
    text-transform: uppercase;
}
.hero-line {
    height: 6px;
    width: 130%;
    background: var(--accent);
    margin: 0 0 1.3rem;
}
.hero p { font-size: 1.15rem; color: #e4ded4; margin: 0 0 1.6rem; }
.hero-emblem { flex: 0 0 auto; opacity: .9; }
.hero-emblem svg { display: block; width: 160px; height: 160px; }

/* Блок 2 — Таймлайн */
.timeline { position: relative; margin-top: 1.5rem; padding-left: 2rem; }
.timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--accent-2);
}
.tl-item { position: relative; margin-bottom: 1.8rem; }
.tl-item::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 6px;
    width: 15px;
    height: 15px;
    margin-left: -0.5px;
    background: var(--accent);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 1px var(--accent);
}
.tl-card {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--line);
    padding: 1rem 1.3rem;
    box-shadow: 5px 5px 0 rgba(44,46,51,.12);
    transform: rotate(-.5deg);
    min-width: 0;
    max-width: 640px;
}
.tl-year {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--accent);
    font-size: 1.25rem;
    display: block;
    margin-bottom: .2rem;
}
.tl-card p { margin: 0; color: #4a4c52; }

/* Блок 3 — Цитата на тёмном фоне */
.quote-block {
    background-color: var(--dark);
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 14px 14px;
    color: #fff;
    padding: 3.2rem 3rem 3.2rem 4.5rem;
    position: relative;
    border-radius: 0;
}
.quote-block::before {
    content: "«";
    position: absolute;
    top: -.2rem;
    left: 1.1rem;
    font-size: 120px;
    line-height: 1;
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
}
.quote-stripe {
    position: absolute;
    left: 2.9rem;
    top: 3.4rem;
    bottom: 2rem;
    width: 4px;
    background-image: radial-gradient(var(--muted) 1.5px, transparent 1.5px);
    background-size: 4px 10px;
}
.quote-block blockquote {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 1.9rem;
    line-height: 1.3;
    font-weight: 700;
}
.quote-block cite {
    display: block;
    margin-top: 1.2rem;
    font-style: normal;
    font-size: .95rem;
    color: var(--muted);
    font-family: var(--body-font);
    font-weight: 400;
}

/* Блок 4 — Карта тем / рубрикатор */
.topic-map {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 1.4rem;
    margin-top: 1.5rem;
}
.topic-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    text-align: center;
    padding: 2.2rem 1.4rem;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
    min-width: 0;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.topic-tile svg { width: 56px; height: 56px; display: block; }
.topic-tile .tile-name {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.topic-tile:hover {
    border-color: var(--accent);
    background: var(--bg-alt);
    transform: translateY(-2px);
}

/* Блок «последние записи» на главной */
.front-latest { padding: 3rem 0; }

/* ============================================================ *
 *  Виджеты
 * ============================================================ */
.widget-title {
    font-size: 1.15rem;
    margin: 0 0 .9rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--accent);
    text-transform: uppercase;
    display: inline-block;
}
/* Сайдбар — светлый фон, тёмный текст */
.sidebar .widget {
    background: #fff;
    border: 1px solid var(--line);
    padding: 1.2rem 1.3rem;
    color: var(--ink);
}
.sidebar .widget-title { color: var(--ink); }
.sidebar a { color: var(--accent-2); }
.sidebar a:hover { text-decoration: underline; }
.sidebar ul { list-style: none; margin: 0; padding: 0; }
.sidebar li { padding: .35rem 0; border-bottom: 1px dashed var(--line); }
.sidebar li:last-child { border-bottom: 0; }
.sidebar .post-date { display: block; font-size: .78rem; color: var(--muted); }

/* ============================================================ *
 *  Подвал
 * ============================================================ */
.site-footer {
    background: var(--dark);
    color: #cfc9bf;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
    border-top: 3px solid var(--accent);
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}
.footer-cols .widget { color: #cfc9bf; min-width: 0; }
.footer-cols .widget-title { color: #fff; }
.footer-cols a { color: #e7e2d9; }
.footer-cols a:hover { color: var(--accent); }
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols li { padding: .3rem 0; }
.footer-copyright {
    margin-top: 2.2rem;
    padding-top: 1.3rem;
    border-top: 1px solid #34383d;
    font-size: .85rem;
    color: #9a9389;
    text-align: center;
}

/* ============================================================ *
 *  Форма поиска
 * ============================================================ */
.search-form {
    display: flex;
    gap: .5rem;
    min-width: 0;
}
.search-form .search-field {
    flex: 1;
    min-width: 0;
    padding: .55rem .8rem;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 1rem;
    font-family: var(--body-font);
}
.search-form .search-submit {
    background: var(--accent-2);
    color: #fff;
    border: 0;
    padding: .55rem 1.1rem;
    font-family: var(--heading-font);
    font-weight: 700;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.search-form .search-submit:hover { background: var(--accent); }

/* ============================================================ *
 *  Комментарии
 * ============================================================ */
.comments-area { margin-top: 2.5rem; }
.comments-title { font-size: 1.5rem; margin-bottom: 1.2rem; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .children { list-style: none; margin: 0 0 0 1.5rem; padding: 0; }
.comment-body {
    background: #fff;
    border: 1px solid var(--line);
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
}
.comment-meta { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .5rem; flex-wrap: wrap; }
.comment-author { font-weight: 700; color: var(--ink); }
.comment-date { font-size: .8rem; color: var(--muted); }
.comment-awaiting { color: var(--accent); font-size: .85rem; }
.comment-reply a { font-weight: 700; font-size: .85rem; }
.comment-form { margin-top: 1.5rem; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: .6rem .8rem;
    border: 1px solid var(--line);
    background: #fff;
    font-family: var(--body-font);
    font-size: 1rem;
}
.comment-form textarea { min-height: 130px; }
.comment-form .submit {
    background: var(--accent);
    color: #fff;
    border: 0;
    padding: .7em 1.5em;
    font-family: var(--heading-font);
    font-weight: 700;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.comment-form .submit:hover { background: var(--accent-2); }

/* ============================================================ *
 *  404
 * ============================================================ */
.error-404 { text-align: center; padding: 2rem 0 3rem; }
.error-404 .code { font-size: 6rem; color: var(--accent); font-family: var(--heading-font); line-height: 1; margin: 0; }
.error-404 .search-form { max-width: 460px; margin: 1.5rem auto; }

/* ============================================================ *
 *  Cookie-баннер  (правило [hidden] — ДО основного блока, см. A11)
 * ============================================================ */
.cookie-banner[hidden] { display: none !important; }

.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--dark);
    color: #e7e2d9;
    border-top: 3px solid var(--accent);
    padding: 1rem 0;
}
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.cookie-inner p { margin: 0; font-size: .9rem; min-width: 0; flex: 1; }
.cookie-inner a { color: var(--accent); }

/* ============================================================ *
 *  Адаптив
 * ============================================================ */
@media (max-width: 960px) {
    .layout-with-sidebar { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-inner { flex-direction: column; align-items: flex-start; }
    .hero h1 { font-size: 2.6rem; }
    .hero-emblem { align-self: center; }
    .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.8rem; }
    .entry-title { font-size: 2rem; }
}

@media (max-width: 600px) {
    body { font-size: 16px; }
    .header-inner { flex-direction: column; align-items: flex-start; }
    .main-nav { width: 100%; }
    .nav-toggle { display: block; align-self: flex-end; margin-top: -2.4rem; }
    .main-nav ul { display: none; flex-direction: column; width: 100%; }
    .main-nav.is-open ul { display: flex; }
    .main-nav a { padding: .7rem .2rem; border-bottom: 1px solid #34383d; }
    .section-title { font-size: 1.5rem; }
    .hero h1 { font-size: 2.1rem; }
    .hero-inner { padding: 3rem 0; }
    .quote-block { padding: 2.4rem 1.4rem 2.4rem 2.6rem; }
    .quote-block::before { font-size: 80px; left: .4rem; }
    .quote-stripe { display: none; }
    .quote-block blockquote { font-size: 1.4rem; }
    .footer-cols { grid-template-columns: 1fr; }
    .front-section { padding: 2.2rem 0; }
    .front-latest { padding: 2.2rem 0; }
}
