/*
Theme Name: dds_ericksoncoachingquebec.com
Author: Анна Соколова
Description: Мультиформатный блог-журнал о практиках образования взрослых, карьерных переходах и инструментах саморазвития. Спокойная эстетика осознанного минимализма с мягкой органикой.
Version: 1.1
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: ericksoncoachingquebec
*/

/* ==========================================================================
   Шрифты
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;1,8..60,400&display=swap');

/* ==========================================================================
   Переменные
   ========================================================================== */
:root {
    --bg-cream: #FEF9F0;
    --bg-ash: #F1EFE9;
    --ink: #1E2A2E;
    --terracotta: #C45C3E;
    --terracotta-deep: #A44228;
    --saffron: #E3B87C;
    --eucalyptus: #8AA39B;
    --notice: #F0CFB6;
    --soft-fill: #F4EDE3;
    --line: #E2DCCF;
    --footer-bg: #1E2A2E;
    --radius: 8px;
}

/* ==========================================================================
   Сброс и база
   ========================================================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-cream);
    color: var(--ink);
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--terracotta);
    text-decoration: none;
}
a:hover { color: var(--terracotta-deep); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    letter-spacing: 0.01em;
    line-height: 1.25;
    margin: 1.4em 0 0.6em;
}
h1 { font-size: 2.05rem; letter-spacing: 0.015em; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }

blockquote {
    margin: 1.5em 0;
    padding: 0.4em 0 0.4em 1.3em;
    border-left: 3px solid var(--saffron);
    font-style: italic;
    color: #3a4a4e;
}

code, pre {
    font-family: ui-monospace, Menlo, Consolas, monospace;
    background: var(--bg-ash);
    border-radius: 4px;
}
pre {
    padding: 1em;
    overflow-x: auto;
}
code { padding: 0.1em 0.35em; font-size: 0.9em; }

/* ==========================================================================
   Контейнер ширины — задаётся в одном месте
   ========================================================================== */
.shell {
    width: min(92%, 1180px);
    margin-inline: auto;
}

/* ==========================================================================
   Кнопки
   ========================================================================== */
.btn {
    display: inline-block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.65em 1.5em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.btn-primary {
    background-color: var(--terracotta);
    color: #fff;
    border: 1px solid var(--terracotta);
    box-shadow: 0 0 0 0 var(--saffron);
}
.btn-primary:hover {
    background-color: var(--terracotta-deep);
    border-color: var(--terracotta-deep);
    color: #fff;
    box-shadow: inset 0 -3px 0 0 var(--saffron);
}
.btn-secondary {
    background-color: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}
.btn-secondary:hover {
    background-color: var(--soft-fill);
    border-color: var(--terracotta);
    color: var(--ink);
}

/* ==========================================================================
   Шапка
   ========================================================================== */
.site-header {
    background-color: rgba(254, 249, 240, 0.92);
    border-bottom: 1px solid var(--line);
}
.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: 0.9rem;
    min-width: 0;
}
.brand-logo,
.brand-svg {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: block;
}
.brand-text { min-width: 0; }
.brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.3;
    display: block;
}
.brand-name a { color: var(--ink); }
.brand-desc {
    font-size: 0.82rem;
    color: var(--eucalyptus);
    line-height: 1.4;
    margin-top: 0.2rem;
    display: block;
    max-width: 540px;
}

/* ==========================================================================
   Навигация
   ========================================================================== */
.main-nav { min-width: 0; }
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}
.main-nav li {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}
.main-nav li + li::before {
    content: "•";
    color: var(--terracotta);
    margin-right: 0.5rem;
    font-size: 0.7rem;
    vertical-align: middle;
}
.main-nav a {
    color: var(--ink);
    padding: 0.3em 0.2em;
    display: inline-block;
}
.main-nav a:hover { color: var(--terracotta); }
.main-nav .current-menu-item > a {
    color: var(--terracotta);
    background-image: radial-gradient(circle, var(--terracotta) 1.5px, transparent 1.5px);
    background-size: 7px 7px;
    background-repeat: repeat-x;
    background-position: left bottom;
    padding-bottom: 0.55em;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    padding: 0.45em 0.7em;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    cursor: pointer;
}

/* ==========================================================================
   Раскладки страниц
   ========================================================================== */
.site-main { padding: 2.4rem 0 3rem; }

.layout-with-sidebar {
    display: grid;
    grid-template-columns: 67% 27%;
    gap: 6%;
    align-items: start;
}
.layout-single .content-area {
    display: block;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.content-area { min-width: 0; }
.sidebar { min-width: 0; }

/* ==========================================================================
   Сайдбар
   ========================================================================== */
.sidebar .widget {
    background-color: var(--bg-ash);
    border-radius: var(--radius);
    padding: 1.3rem 1.4rem;
    margin-bottom: 1.6rem;
    color: var(--ink);
}
.sidebar .widget-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    margin: 0 0 0.9rem;
    color: var(--ink);
    border-bottom: 2px solid var(--saffron);
    padding-bottom: 0.4rem;
}
.sidebar .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar .widget li {
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--line);
}
.sidebar .widget li:last-child { border-bottom: none; }
.sidebar .widget a { color: var(--terracotta); }
.sidebar .widget a:hover { color: var(--terracotta-deep); }
.sidebar .widget,
.sidebar .widget p { color: var(--ink); }
.sidebar .post-date,
.sidebar .rss-date,
.sidebar .widget .post-date {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--eucalyptus);
}

/* Личный блок Анны */
.anna-card {
    background-color: var(--soft-fill);
    border-radius: var(--radius);
    padding: 1.4rem;
    margin-bottom: 1.6rem;
    text-align: center;
}
.anna-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 0.7rem;
    background-color: var(--eucalyptus);
}
.anna-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--ink);
}
.anna-quote {
    font-style: italic;
    font-size: 0.95rem;
    color: #3a4a4e;
    margin: 0.5rem 0 0;
    transform: rotate(-0.6deg);
}

/* ==========================================================================
   Карточки записей
   ========================================================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    border-left: 5px solid var(--eucalyptus);
}
.card.cat-warm { border-left-color: var(--terracotta); }
.card.cat-neutral { border-left-color: var(--saffron); }
.card.cat-cool { border-left-color: var(--eucalyptus); }

.card-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.card-thumb-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--bg-ash), var(--soft-fill));
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.1rem 1.2rem 1.3rem;
    min-width: 0;
}
.card-tag {
    display: inline-block;
    align-self: flex-start;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--eucalyptus);
    margin-bottom: 0.5rem;
}
.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--terracotta); }
.card-excerpt {
    font-size: 0.94rem;
    color: #3a4a4e;
}
.card-excerpt p {
    margin: 0 0 0.5em;
    background: none;
}
.card-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--eucalyptus);
    margin: 0.3rem 0 0.9rem;
}
.card-footer { margin-top: auto; }

/* Горизонтальные карточки (лента блога) */
.card-row {
    display: flex;
    flex-direction: row;
}
.card-row .card-thumb-wrap {
    flex: 0 0 280px;
    position: relative;
    overflow: hidden;
}
.card-row .card-thumb-wrap a {
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
.card-row .card-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-row .card-thumb-wrap .card-thumb-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
}

/* ==========================================================================
   Записи и страницы — контент
   ========================================================================== */
.entry-header { margin-bottom: 1.4rem; }
.entry-title { margin-top: 0.3rem; }
.entry-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--eucalyptus);
}
.featured-image {
    display: block;
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 1.6rem;
}
.entry-content { font-size: 1.05rem; }
.entry-content img { border-radius: var(--radius); }

/* Блок контекста под постом */
.context-note {
    background-color: #E9EFEC;
    border-radius: var(--radius);
    padding: 1.3rem 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--eucalyptus);
}
.context-note h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    color: var(--ink);
}
.context-note p { margin: 0; color: #3a4a4e; }

/* ==========================================================================
   Хлебные крошки
   ========================================================================== */
.breadcrumbs {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--eucalyptus);
    padding: 1rem 0 0.4rem;
}
.breadcrumbs a { color: var(--terracotta); }
.breadcrumbs .sep { margin: 0 0.35rem; color: var(--eucalyptus); }
.breadcrumbs span { color: var(--ink); }

/* ==========================================================================
   Главная
   ========================================================================== */
.home-section {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}
.section-head {
    margin-bottom: 1.4rem;
}
.section-head h2 {
    margin: 0;
    color: var(--terracotta);
}
.section-head p {
    margin: 0.5rem 0 0;
    color: var(--eucalyptus);
}

.intro-block {
    background-color: var(--bg-ash);
    border-radius: var(--radius);
    padding: 2.2rem;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}
.concept-card {
    position: relative;
    background-color: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem 1.4rem;
    overflow: hidden;
}
.concept-card::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--soft-fill);
    opacity: 0.6;
    z-index: 0;
}
.concept-card > * { position: relative; z-index: 1; }
.concept-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.8rem;
    color: var(--terracotta);
}
.concept-card h3 { margin: 0 0 0.4rem; }
.concept-card p { margin: 0; font-size: 0.95rem; color: #3a4a4e; }

.steps-list {
    counter-reset: step;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}
.steps-list li {
    background-color: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.3rem;
    counter-increment: step;
}
.steps-list li::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--terracotta);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.steps-list h3 { margin: 0 0 0.3rem; }
.steps-list p { margin: 0; font-size: 0.95rem; color: #3a4a4e; }

/* Слайдер на главной */
.hero-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--bg-ash);
}
.slide {
    display: none;
    padding: 3rem 2.4rem;
    min-height: 220px;
}
.slide.is-active { display: block; }
.slide h2 { margin-top: 0; color: var(--terracotta); }
.slide p { color: #3a4a4e; max-width: 640px; }
.slider-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding-bottom: 1.2rem;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: var(--line);
    cursor: pointer;
    padding: 0;
}
.slider-dot.is-active { background-color: var(--terracotta); }

/* ==========================================================================
   Архивы — watermark
   ========================================================================== */
.archive-banner {
    position: relative;
    overflow: hidden;
    padding: 1.4rem 0 0.4rem;
}
.archive-watermark {
    position: absolute;
    left: -0.02em;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 12vw, 7rem);
    color: var(--bg-ash);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}
.archive-banner h1 {
    position: relative;
    z-index: 1;
    margin: 0;
}
.archive-list { padding-left: 1.5rem; }

/* ==========================================================================
   Пагинация
   ========================================================================== */
.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin: 2.4rem 0 0.5rem;
}
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.7rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1;
    color: var(--ink);
    background-color: #fff;
    text-decoration: none;
    transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}
.pagination a.page-numbers:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}
.pagination .page-numbers.current {
    background-color: var(--saffron);
    color: var(--terracotta-deep);
    border-color: var(--saffron);
    font-weight: 700;
}
.pagination .page-numbers.dots {
    min-width: auto;
    padding: 0 0.25rem;
    border-color: transparent;
    background: transparent;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    padding: 0 1rem;
    font-weight: 600;
}

/* ==========================================================================
   Комментарии
   ========================================================================== */
.comments-area {
    margin-top: 2.6rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
}
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.comment-list li {
    margin-bottom: 1.2rem;
}
.comment-body {
    background-color: var(--bg-ash);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
}
.comment-list .children {
    list-style: none;
    margin: 1rem 0 0 1.5rem;
    padding: 0;
}
.comment-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--eucalyptus);
    margin-bottom: 0.4rem;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.6em 0.8em;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #fff;
    color: var(--ink);
}
.comment-form textarea { min-height: 120px; }
.comment-form p { margin-bottom: 0.9rem; }

/* ==========================================================================
   Форма поиска
   ========================================================================== */
.search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 480px;
}
.search-form .search-field {
    flex: 1;
    min-width: 0;
    padding: 0.6em 0.8em;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #fff;
    color: var(--ink);
}
.search-form .search-submit {
    background-color: var(--terracotta);
    color: #fff;
    border: 1px solid var(--terracotta);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0 1.2em;
    cursor: pointer;
}
.search-form .search-submit:hover { background-color: var(--terracotta-deep); }

/* ==========================================================================
   Таблицы
   ========================================================================== */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.entry-content table,
.entry-content th,
.entry-content td {
    border: 1px solid var(--line);
}
.entry-content th,
.entry-content td {
    padding: 0.6em 0.8em;
    text-align: left;
}
.entry-content th {
    background-color: var(--bg-ash);
    font-family: 'Inter', sans-serif;
}

/* ==========================================================================
   Подвал
   ========================================================================== */
.site-footer {
    background-color: var(--footer-bg);
    color: #D7DEDB;
    margin-top: 3rem;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding: 2.8rem 0 2rem;
}
.footer-col { min-width: 0; }
.footer-col .widget { margin-bottom: 1rem; }
.footer-col .widget-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #fff;
    margin: 0 0 0.8rem;
    border-bottom: 2px solid var(--terracotta);
    padding-bottom: 0.4rem;
}
.footer-col,
.footer-col p,
.footer-col li,
.footer-col .widget {
    color: #D7DEDB;
}
.footer-col a { color: var(--saffron); }
.footer-col a:hover { color: #fff; }
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-col li {
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col li:last-child { border-bottom: none; }
.footer-col .post-date,
.footer-col .rss-date {
    display: block;
    font-size: 0.78rem;
    color: var(--eucalyptus);
}
.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.2rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #9FB0AB;
    text-align: center;
}

/* ==========================================================================
   Cookie-баннер
   ========================================================================== */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--ink);
    color: #E6EBE9;
    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: 0.9rem;
    flex: 1;
    min-width: 220px;
}
.cookie-inner a { color: var(--saffron); }

/* ==========================================================================
   404
   ========================================================================== */
.error-404 {
    width: 85%;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}
.error-404 .big-code {
    font-family: 'Inter', sans-serif;
    font-size: clamp(4rem, 16vw, 9rem);
    font-weight: 700;
    color: var(--saffron);
    line-height: 1;
}
.error-404 .search-form { margin: 1.5rem auto; }

/* Уведомления */
.notice-box {
    background-color: var(--notice);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    color: var(--ink);
}

/* ==========================================================================
   Адаптив
   ========================================================================== */
@media (max-width: 960px) {
    .layout-with-sidebar {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
    .layout-single .content-area,
    .home-section,
    .error-404 { width: 100%; }
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .concept-grid,
    .steps-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    body { font-size: 17px; }
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.35rem; }

    .header-inner { justify-content: space-between; }
    .nav-toggle { display: inline-block; }
    .main-nav {
        flex-basis: 100%;
        display: none;
    }
    .main-nav.is-open { display: block; }
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    .main-nav li + li::before { content: none; }
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--line);
    }

    .card-grid,
    .concept-grid,
    .steps-list { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }

    .card-row { flex-direction: column; }
    .card-row .card-thumb-wrap {
        flex: none;
        width: 100%;
        position: static;
    }
    .card-row .card-thumb-wrap a {
        position: static;
    }
    .card-row .card-thumb-wrap img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .card-row .card-thumb-wrap .card-thumb-placeholder {
        aspect-ratio: 16 / 9;
    }

    .btn { display: block; width: 100%; text-align: center; }
    .cookie-inner .btn { width: auto; }

    .slide { padding: 2rem 1.4rem; }
    .intro-block { padding: 1.5rem; }
}
