/*
Theme Name: dds_deekellyfengshui.com
Author: Екатерина Белова
Description: Контентно-образовательный сайт с курсами, мини-программами, практическими гайдами и статьями о самообразовании, развитии навыков, продуктивности и учебных лайфхаках для взрослой аудитории.
Version: 1.1
Text Domain: ddsdkf
*/

/* ====== БАЗА ====== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Source Serif 4', 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.7;
    color: #2B2825;
    background-color: #F9F6F0;
    background-image: radial-gradient(rgba(43, 40, 37, 0.025) 1px, transparent 1px);
    background-size: 4px 4px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.25;
    color: #2B2825;
    margin: 1.4em 0 0.6em;
    letter-spacing: -0.01em;
}

h1 { font-size: 2.2rem; letter-spacing: -0.02em; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }

a {
    color: #C46A5E;
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: #A15347; }

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

blockquote {
    margin: 1.5em 0;
    padding: 1.2em 1.5em;
    background: #EFE6DA;
    border-left: 3px solid #95A78D;
    font-style: italic;
    color: #4A4642;
    border-radius: 0 10px 10px 0;
}

code {
    background: #EFE6DA;
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-family: 'Menlo', 'Consolas', monospace;
    font-size: 0.92em;
}

pre {
    background: #2B2825;
    color: #F9F6F0;
    padding: 1.2em;
    border-radius: 10px;
    overflow-x: auto;
}
pre code { background: transparent; color: inherit; padding: 0; }

hr {
    border: none;
    border-top: 1px solid #E3D9CD;
    margin: 2.5em 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    border: 1px solid #E3D9CD;
}
th, td {
    padding: 0.7em 1em;
    text-align: left;
    border: 1px solid #E3D9CD;
}
th {
    background: #EFE6DA;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

ul, ol { padding-left: 1.5em; margin: 0 0 1.1em; }
li { margin: 0.3em 0; }

/* ====== ЛЭЙАУТ ====== */
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-layout {
    display: flex;
    gap: 48px;
    padding: 40px 0 60px;
    align-items: flex-start;
}

.main-content { flex: 1; min-width: 0; }
.has-sidebar .main-content { width: 67%; flex: 0 0 67%; }
.no-sidebar .main-content { width: 85%; margin: 0 auto; flex: none; }

.sidebar {
    width: 27%;
    flex: 0 0 27%;
}

/* ====== ШАПКА ====== */
.site-header {
    background: #F9F6F0;
    border-bottom: 1px solid #E3D9CD;
    padding: 22px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    width: 54px;
    height: 54px;
    display: block;
    flex-shrink: 0;
}

.brand-text { line-height: 1.2; }

.brand-name {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2B2825;
    display: block;
    font-weight: 500;
    max-width: 520px;
}

.brand-desc {
    font-size: 0.8rem;
    color: #6E665D;
    margin-top: 4px;
    max-width: 520px;
    display: block;
}

/* ====== НАВИГАЦИЯ ====== */
.primary-nav { font-family: 'Inter', sans-serif; }
.primary-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.primary-nav li { margin: 0; }

.primary-nav a {
    color: #2B2825;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 4px 0;
    position: relative;
    display: inline-block;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #C46A5E;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after {
    transform: scaleX(1);
}
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { color: #C46A5E; }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid #E3D9CD;
    border-radius: 40px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #2B2825;
    cursor: pointer;
}
.nav-toggle:hover { border-color: #C46A5E; color: #C46A5E; }

/* ====== ПУЛЬС ДНЯ ====== */
.pulse-strip {
    background: #EFE6DA;
    border-radius: 48px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #5E5A55;
}
.pulse-strip .pulse-label {
    font-weight: 500;
    letter-spacing: 0.02em;
}
.pulse-dots {
    display: flex;
    gap: 10px;
    margin-left: auto;
}
.pulse-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #C46A5E;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
}
.pulse-dot.active { background: #C46A5E; }

/* ====== КНОПКИ ====== */
.btn-primary {
    display: inline-block;
    background: #C46A5E;
    color: #F9F6F0;
    padding: 14px 28px;
    border-radius: 48px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}
.btn-primary:hover {
    background: #A15347;
    color: #F9F6F0;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #C46A5E;
    padding: 10px 22px;
    border-radius: 48px;
    border: 1px solid #C46A5E;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}
.btn-secondary:hover {
    background: rgba(196, 106, 94, 0.1);
    color: #C46A5E;
}

/* ====== ХЛЕБНЫЕ КРОШКИ ====== */
.breadcrumbs {
    padding: 18px 0 0;
    font-size: 0.88rem;
    color: #6E665D;
    font-family: 'Inter', sans-serif;
}
.breadcrumbs a {
    color: #6E665D;
    text-decoration: none;
}
.breadcrumbs a:hover { color: #C46A5E; }
.breadcrumbs .sep { margin: 0 0.5em; color: #C3B9AD; }
.breadcrumbs .current { color: #2B2825; }

/* ====== ГЛАВНАЯ — ТЕМАТИЧЕСКИЕ БЛОКИ ====== */
.hero-section {
    padding: 60px 0 40px;
    text-align: center;
}
.hero-title {
    font-size: 2.6rem;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}
.hero-sub {
    font-size: 1.1rem;
    color: #4A4642;
    max-width: 720px;
    margin: 0 auto 28px;
}
.hero-cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.theme-section {
    padding: 56px 0;
    border-top: 1px solid #E3D9CD;
}
.theme-section:first-of-type { border-top: none; }

.section-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0.15em;
    color: #95A78D;
    display: block;
    margin-bottom: 12px;
}
.section-title {
    font-size: 1.9rem;
    margin: 0 0 14px;
}
.section-lead {
    font-size: 1.05rem;
    color: #4A4642;
    max-width: 760px;
    margin-bottom: 36px;
}

/* — 3 колонки (мини-карточки) — */
.cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.mini-card {
    background: #EFE6DA;
    border-radius: 14px;
    padding: 28px 26px;
    border-left: 4px solid #C46A5E;
}
.mini-card:nth-child(2n) { border-left-color: #95A78D; }
.mini-card h3 { margin-top: 0; font-size: 1.2rem; }
.mini-card p { margin: 0; color: #4A4642; }

/* — шаги — */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step-item {
    background: transparent;
    padding: 24px 20px;
    border: 1px solid #E3D9CD;
    border-radius: 12px;
    background: #F9F6F0;
}
.step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #95A78D;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}
.step-item h4 { margin: 0 0 8px; font-size: 1.05rem; }
.step-item p { margin: 0; color: #4A4642; font-size: 0.95rem; }

/* — формат / категории — */
.formats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.format-tile {
    padding: 30px 24px;
    border-radius: 14px;
    background: #F9F6F0;
    border: 1px solid #E3D9CD;
    position: relative;
}
.format-tile::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: #C46A5E;
}
.format-tile:nth-child(2)::before { background: #95A78D; }
.format-tile:nth-child(3)::before { background: #C46A5E; }
.format-tile h4 { margin: 0 0 8px; padding-left: 14px; font-size: 1.1rem; }
.format-tile p { margin: 0; padding-left: 14px; color: #4A4642; font-size: 0.95rem; }

/* — финальный блок (закрывающий) — */
.closing-section {
    padding: 64px 0;
    background: #EFE6DA;
    border-top: 1px solid #E3D9CD;
    border-radius: 20px;
    margin: 30px 0;
    text-align: center;
}
.closing-section .section-title { margin-bottom: 18px; }
.closing-section .section-lead { margin-left: auto; margin-right: auto; margin-bottom: 24px; }

/* ====== КАРТОЧКИ ЗАПИСЕЙ ====== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.card {
    display: flex;
    flex-direction: column;
    background: #F9F6F0;
    border: 1px solid #E3D9CD;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: #C46A5E; transform: translateY(-2px); }

.card-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #EFE6DA;
}

.card-body {
    flex: 1;
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    border-left: 3px solid transparent;
}
.card:nth-child(odd) .card-body { border-left-color: #C46A5E; }
.card:nth-child(even) .card-body { border-left-color: #95A78D; }

.card-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #95A78D;
}

.card-title {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.3;
}
.card-title a { color: #2B2825; text-decoration: none; }
.card-title a:hover { color: #C46A5E; }

.card-excerpt { color: #4A4642; font-size: 0.97rem; }
.card-excerpt p { margin: 0 0 0.5em; background: none; }
.card-excerpt p:last-child { margin-bottom: 0; }

.card-more {
    margin-top: auto;
    padding-top: 8px;
    align-self: flex-start;
}

/* — категории как чипсы — */
.post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}
.post-categories li { margin: 0; }
.post-categories a {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 40px;
    background: transparent;
    border: 1px solid #E3D9CD;
    color: #5E5A55;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.post-categories a:hover { background: #95A78D; color: #F9F6F0; border-color: #95A78D; }

/* ====== ЗАПИСЬ — ПОЛНАЯ ====== */
.entry-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E3D9CD;
}
.entry-title {
    font-size: 2.1rem;
    margin: 0 0 14px;
    line-height: 1.2;
}
.entry-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #95A78D;
}
.entry-meta a { color: #95A78D; }
.entry-meta .dot { margin: 0 0.6em; color: #C3B9AD; }

.entry-thumb {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 28px;
    display: block;
}

.entry-content p { margin-bottom: 1.2em; }
.entry-content h2 { margin-top: 1.8em; }
.entry-content h3 { margin-top: 1.6em; }
.entry-content img { border-radius: 10px; margin: 1em 0; }

.entry-footer {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #E3D9CD;
}

/* ====== САЙДБАР ====== */
.sidebar .widget {
    background: #F9F6F0;
    border: 1px solid #E3D9CD;
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 28px;
}
.sidebar .widget-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin: 0 0 14px;
    text-transform: none;
    color: #2B2825;
    letter-spacing: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #E3D9CD;
}
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar li {
    padding: 6px 0;
    border-bottom: 1px dashed #E3D9CD;
}
.sidebar li:last-child { border-bottom: none; }
.sidebar li a { color: #2B2825; }
.sidebar li a:hover { color: #C46A5E; }

/* ====== ПАГИНАЦИЯ ====== */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0 20px;
    font-family: 'Inter', sans-serif;
}
.pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background: transparent;
    border: 1px solid #E3D9CD;
    color: #5E5A55;
    text-decoration: none;
    font-size: 0.92rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pagination .page-numbers:hover {
    border-color: #C46A5E;
    color: #C46A5E;
}
.pagination .page-numbers.current {
    background: #95A78D;
    color: #F9F6F0;
    border-color: #95A78D;
}
.pagination .dots { border: none; }

/* ====== ФОРМА ПОИСКА ====== */
.search-form {
    display: flex;
    gap: 8px;
    max-width: 520px;
}
.search-form input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    border-radius: 40px;
    border: 1px solid #E3D9CD;
    background: #F9F6F0;
    font-size: 0.95rem;
    font-family: inherit;
    color: #2B2825;
}
.search-form input[type="search"]:focus {
    outline: none;
    border-color: #C46A5E;
}
.search-form button {
    background: #C46A5E;
    color: #F9F6F0;
    border: none;
    padding: 0 22px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.search-form button:hover { background: #A15347; }

/* ====== КОММЕНТАРИИ ====== */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #E3D9CD;
}
.comments-title {
    font-size: 1.4rem;
    margin: 0 0 20px;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.comment-list li {
    padding: 18px 22px;
    background: #EFE6DA;
    border-radius: 10px;
    margin-bottom: 16px;
    border: none;
    border-left: 3px solid #95A78D;
}
.comment-list li.bypostauthor { border-left-color: #C46A5E; }
.comment-list ol.children {
    list-style: none;
    padding: 16px 0 0 20px;
    margin: 16px 0 0;
    border-left: 1px solid #E3D9CD;
}
.comment-author {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 4px;
}
.comment-meta {
    font-size: 0.82rem;
    color: #6E665D;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}
.comment-body p { margin: 0 0 0.5em; }

.comment-respond {
    background: #F9F6F0;
    padding: 24px 26px;
    border-radius: 14px;
    border: 1px solid #E3D9CD;
}
.comment-respond label {
    display: block;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
}
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #E3D9CD;
    background: #F9F6F0;
    font-family: inherit;
    font-size: 0.95rem;
    margin-bottom: 14px;
    color: #2B2825;
}
.comment-respond textarea { min-height: 130px; resize: vertical; }
.comment-respond input:focus,
.comment-respond textarea:focus {
    outline: none;
    border-color: #C46A5E;
}
.comment-respond .submit {
    background: #C46A5E;
    color: #F9F6F0;
    border: none;
    padding: 12px 28px;
    border-radius: 48px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
}
.comment-respond .submit:hover { background: #A15347; }

/* ====== ПОДВАЛ ====== */
.site-footer {
    background: #EFE6DA;
    padding: 56px 0 0;
    margin-top: 60px;
    border-top: 1px solid #E3D9CD;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}
.footer-col .widget-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin: 0 0 14px;
    font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 5px 0; }
.footer-col a { color: #2B2825; }
.footer-col a:hover { color: #C46A5E; }
.footer-col p, .footer-col .textwidget { color: #4A4642; font-size: 0.95rem; }

.footer-bottom {
    border-top: 1px solid #E3D9CD;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #6E665D;
}
.footer-slogan {
    font-style: italic;
    color: #95A78D;
    font-family: 'Source Serif 4', serif;
}

/* ====== COOKIE БАННЕР ====== */
.cookie-banner {
    position: fixed;
    bottom: 18px;
    left: 18px;
    right: 18px;
    max-width: 560px;
    margin: 0 auto;
    background: #2B2825;
    color: #F9F6F0;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(43, 40, 37, 0.18);
    display: none;
    align-items: center;
    gap: 16px;
    z-index: 999;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; color: #F9F6F0; }
.cookie-banner button {
    background: #C46A5E;
    color: #F9F6F0;
    border: none;
    padding: 10px 22px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}
.cookie-banner button:hover { background: #A15347; }

/* ====== 404 ====== */
.error-404 {
    text-align: center;
    padding: 60px 20px;
}
.error-404 .code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 6rem;
    color: #C46A5E;
    line-height: 1;
    margin: 0 0 12px;
}
.error-404 h1 { margin: 0 0 14px; font-size: 1.8rem; }
.error-404 p { color: #4A4642; max-width: 540px; margin: 0 auto 24px; }
.error-404 .search-form { margin: 0 auto 24px; }

/* ====== АНИМАЦИИ ПОЯВЛЕНИЯ ====== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ====== ПОИСК: СКРЫТЫЕ ЭКРАНЫ ====== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
}

/* ====== АДАПТИВ ====== */
@media (max-width: 960px) {
    .main-layout { flex-direction: column; gap: 32px; }
    .has-sidebar .main-content,
    .no-sidebar .main-content,
    .sidebar { width: 100%; flex: none; }
    .cols-3 { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .formats-row { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2.1rem; }
}

@media (max-width: 600px) {
    body { font-size: 16px; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.45rem; }
    .hero-title { font-size: 1.7rem; }
    .section-title { font-size: 1.45rem; }
    .cards-grid { grid-template-columns: 1fr; gap: 22px; }
    .cols-3 { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; gap: 28px; }
    .nav-toggle { display: inline-block; }
    .primary-nav { width: 100%; display: none; margin-top: 14px; }
    .primary-nav.open { display: block; }
    .primary-nav ul { flex-direction: column; gap: 6px; }
    .header-inner { align-items: flex-start; }
    .brand-logo { width: 44px; height: 44px; }
    .entry-title { font-size: 1.6rem; }
    .theme-section { padding: 40px 0; }
    .closing-section { padding: 44px 18px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .wrap { padding: 0 18px; }
    .cookie-banner { flex-direction: column; align-items: stretch; text-align: left; }
    .cookie-banner button { width: 100%; }
}
