/*
Theme Name: dds_naturentreprises.com
Theme URI: https://naturentreprises.com
Author: Анна Королёва
Author URI: https://naturentreprises.com
Description: Редакционный информационный ресурс о современной рабочей среде: командная работа, стресс-менеджмент, продуктивность и развитие мягких навыков.
Version: 1.1
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: dds_naturentreprises.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* === RESET & BASE === */
:root {
    --color-olive: #2F3E2E;
    --color-cream: #F9F7F0;
    --color-terra: #C26A5A;
    --color-aqua: #8FBCB3;
    --color-olive-light: #4A5D49;
    --color-terra-hover: rgba(194, 106, 90, 0.8);
    --color-aqua-light: rgba(143, 188, 179, 0.25);
    --color-border-dotted: rgba(194, 106, 90, 0.4);
    --radius-btn: 14px;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', 'Georgia', serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.72;
    color: var(--color-olive);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--color-terra);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--color-olive);
}

p {
    margin: 0 0 1.15em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-olive);
    line-height: 1.3;
    margin: 0 0 0.6em;
}

h1 { font-size: 2.1rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

ul, ol {
    margin: 0 0 1.15em 1.4em;
}

blockquote {
    border-left: 4px solid var(--color-aqua);
    padding: 0.8em 1.4em;
    margin: 1.5em 0;
    font-style: italic;
    line-height: 1.85;
    color: var(--color-olive-light);
    background: var(--color-aqua-light);
    border-radius: 0 8px 8px 0;
}

blockquote p {
    margin-bottom: 0.4em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

table th, table td {
    border: 1px solid rgba(47, 62, 46, 0.2);
    padding: 0.6em 0.9em;
    text-align: left;
}

table th {
    background: rgba(143, 188, 179, 0.15);
    font-weight: 600;
}

/* === BUTTONS === */
.btn,
.dds-btn {
    display: inline-block;
    padding: 0.6em 1.6em;
    border-radius: var(--radius-btn);
    border: 1.5px solid var(--color-terra);
    background: rgba(194, 106, 90, 0.07);
    color: var(--color-olive);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.5;
}

.btn:hover,
.dds-btn:hover {
    background: var(--color-terra-hover);
    color: var(--color-cream);
    transform: translateY(-1px);
}

/* === LAYOUT === */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main-area {
    flex: 1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-wide {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-sidebar-wrap {
    display: flex;
    gap: 4%;
    padding: 2.5em 0;
}

.content-area {
    flex: 0 0 67%;
    min-width: 0;
}

.sidebar-area {
    flex: 0 0 27%;
    min-width: 0;
}

.content-area.full-width {
    flex: 0 0 85%;
    margin: 0 auto;
}

/* === HEADER === */
.site-header {
    background: var(--color-cream);
    border-bottom: 1px solid rgba(47, 62, 46, 0.08);
    padding: 1.1em 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
}

.brand-group {
    display: flex;
    align-items: center;
    gap: 1em;
    flex-shrink: 0;
    max-width: 40%;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.brand-logo-svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.brand-text .site-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-olive);
    line-height: 1.3;
    margin: 0;
}

.brand-text .site-title a {
    color: var(--color-olive);
    text-decoration: none;
}

.brand-text .site-description {
    font-size: 0.72rem;
    color: var(--color-olive-light);
    line-height: 1.35;
    margin: 0.15em 0 0;
    max-width: 320px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === NAVIGATION === */
.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.main-nav li {
    position: relative;
}

.main-nav li + li::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 18px;
    background: var(--color-aqua);
    vertical-align: middle;
    margin: 0 0.2em;
    opacity: 0.6;
}

.main-nav a {
    display: inline-block;
    padding: 0.45em 1em;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-olive);
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.25s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
    background: rgba(143, 188, 179, 0.2);
    color: var(--color-olive);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5em;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-olive);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* === BREADCRUMBS === */
.breadcrumbs-wrap {
    padding: 1em 0 0.5em;
    font-size: 0.84rem;
    color: var(--color-olive-light);
}

.breadcrumbs-wrap a {
    color: var(--color-aqua);
    font-weight: 500;
}

.breadcrumbs-wrap a:hover {
    color: var(--color-terra);
}

.breadcrumbs-sep {
    margin: 0 0.45em;
    opacity: 0.5;
}

/* === CARDS === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2em;
}

.card {
    display: flex;
    flex-direction: column;
    border-bottom: 2px dotted var(--color-border-dotted);
    padding-bottom: 1.8em;
    margin-bottom: 0.5em;
    overflow: hidden;
}

.card-thumb-wrap {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1em;
}

.card-thumb-wrap a {
    display: block;
}

.card-thumb-wrap img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.card:hover .card-thumb-wrap img {
    transform: scale(1.03);
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-variant: small-caps;
    letter-spacing: 0.12em;
    color: var(--color-aqua);
    font-weight: 600;
    margin-bottom: 0.4em;
    text-transform: lowercase;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5em;
    line-height: 1.35;
}

.card-title a {
    color: var(--color-olive);
}

.card-title a:hover {
    color: var(--color-terra);
}

.card-excerpt {
    font-size: 0.92rem;
    color: var(--color-olive-light);
    line-height: 1.65;
    margin-bottom: 0.8em;
    flex: 1;
}

.card-excerpt p {
    margin: 0 0 0.5em;
    background: none;
}

.card-meta {
    font-size: 0.8rem;
    color: rgba(47, 62, 46, 0.55);
    display: flex;
    align-items: center;
    gap: 1em;
    margin-top: auto;
}

.card-readmore {
    margin-top: 0.8em;
}

.card-readmore a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-terra);
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}

.card-readmore a:hover {
    gap: 0.6em;
}

/* Horizontal card variant */
.card-horizontal {
    flex-direction: row;
    gap: 1.5em;
}

.card-horizontal .card-thumb-wrap {
    flex: 0 0 280px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.card-horizontal .card-thumb-wrap a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.card-horizontal .card-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: auto;
    border-radius: 10px;
}

/* === FRONT PAGE === */
.front-section {
    padding: 3.5em 0;
}

.front-section:nth-child(even) {
    background: rgba(143, 188, 179, 0.07);
}

.section-heading {
    font-family: var(--font-heading);
    font-variant: small-caps;
    letter-spacing: 0.1em;
    font-size: 1.55rem;
    color: var(--color-olive);
    margin-bottom: 1.2em;
    text-align: center;
}

.section-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-terra);
    margin: 0.5em auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 640px;
    margin: -0.5em auto 2em;
    color: var(--color-olive-light);
    font-size: 1rem;
}

/* Feature columns */
.feature-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
}

.feature-item {
    text-align: center;
    padding: 2em 1.5em;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 1em;
    color: var(--color-aqua);
}

.feature-item h3 {
    font-variant: small-caps;
    letter-spacing: 0.08em;
    font-size: 1.1rem;
    margin-bottom: 0.6em;
}

.feature-item p {
    font-size: 0.92rem;
    color: var(--color-olive-light);
}

/* Steps */
.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
    counter-reset: step-counter;
}

.step-card {
    text-align: center;
    padding: 1.5em 1em;
    counter-increment: step-counter;
    position: relative;
}

.step-card::before {
    content: counter(step-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-terra);
    color: var(--color-cream);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 0.8em;
}

.step-card h4 {
    font-variant: small-caps;
    letter-spacing: 0.06em;
    margin-bottom: 0.4em;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--color-olive-light);
}

/* Value cards */
.value-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
}

.value-card {
    padding: 1.8em;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border-left: 4px solid var(--color-aqua);
}

.value-card h3 {
    font-variant: small-caps;
    letter-spacing: 0.08em;
    font-size: 1.05rem;
    margin-bottom: 0.5em;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-olive-light);
    margin-bottom: 0;
}

/* === PULSE BLOCK (footer) === */
.pulse-block {
    padding: 2em 0 1em;
    margin-top: 1.5em;
    border-top: 1px solid rgba(47, 62, 46, 0.08);
}

.pulse-title {
    font-family: var(--font-heading);
    font-variant: small-caps;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    margin-bottom: 1.2em;
    color: var(--color-olive);
    text-align: center;
}

.pulse-bar-group {
    max-width: 400px;
    margin: 0 auto;
}

.pulse-bar-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.9em;
    gap: 0.8em;
}

.pulse-bar-label {
    flex: 0 0 130px;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: right;
    color: var(--color-olive-light);
}

.pulse-bar-track {
    flex: 1;
    height: 10px;
    background: rgba(47, 62, 46, 0.08);
    border-radius: 5px;
    overflow: hidden;
}

.pulse-bar-fill {
    height: 100%;
    border-radius: 5px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pulse-bar-fill.burnout {
    background: var(--color-terra);
}

.pulse-bar-fill.cohesion {
    background: var(--color-aqua);
}

.pulse-bar-fill.awareness {
    background: var(--color-olive-light);
}

.pulse-bar-value {
    flex: 0 0 36px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-olive);
}

/* === BOOKMARK BUTTON === */
.bookmark-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.bookmark-btn:hover {
    transform: scale(1.1);
}

.bookmark-btn svg {
    width: 22px;
    height: 22px;
}

.bookmark-btn.saved .bm-outline {
    display: none;
}

.bookmark-btn:not(.saved) .bm-filled {
    display: none;
}

/* === PAGINATION === */
.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4em;
    padding: 2.5em 0;
    flex-wrap: wrap;
}

.pagination-wrap a,
.pagination-wrap span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.6em;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.pagination-wrap a {
    color: var(--color-olive);
    background: rgba(143, 188, 179, 0.12);
}

.pagination-wrap a:hover {
    background: var(--color-terra-hover);
    color: var(--color-cream);
}

.pagination-wrap span.current {
    background: var(--color-terra);
    color: var(--color-cream);
}

.pagination-wrap .dots {
    background: none;
    color: var(--color-olive-light);
}

/* === SIDEBAR === */
.sidebar-area .widget {
    margin-bottom: 2em;
    padding: 1.5em;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.sidebar-area .widget-title,
.sidebar-area .widgettitle {
    font-family: var(--font-heading);
    font-variant: small-caps;
    letter-spacing: 0.08em;
    font-size: 1.05rem;
    margin-bottom: 0.8em;
    padding-bottom: 0.5em;
    border-bottom: 2px dotted var(--color-border-dotted);
}

.sidebar-area .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-area .widget ul li {
    padding: 0.4em 0;
    border-bottom: 1px solid rgba(47, 62, 46, 0.06);
}

.sidebar-area .widget ul li:last-child {
    border-bottom: none;
}

.sidebar-area .widget ul li a {
    font-size: 0.9rem;
    color: var(--color-olive);
}

.sidebar-area .widget ul li a:hover {
    color: var(--color-terra);
}

/* === FOOTER === */
.site-footer {
    background: var(--color-olive);
    color: rgba(249, 247, 240, 0.85);
    padding: 3em 0 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5em;
    padding-bottom: 2em;
}

.footer-col .widget-title,
.footer-col .widgettitle {
    font-family: var(--font-heading);
    font-variant: small-caps;
    letter-spacing: 0.1em;
    color: var(--color-cream);
    font-size: 1rem;
    margin-bottom: 0.8em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid rgba(249, 247, 240, 0.12);
}

.footer-col a {
    color: var(--color-aqua);
}

.footer-col a:hover {
    color: var(--color-cream);
}

.footer-col .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col .widget ul li {
    padding: 0.3em 0;
}

.footer-col .widget ul li a {
    font-size: 0.88rem;
}

.footer-col p,
.footer-col .textwidget p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(249, 247, 240, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(249, 247, 240, 0.1);
    padding: 1.2em 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(249, 247, 240, 0.5);
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-olive);
    color: var(--color-cream);
    padding: 1em 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
}

.cookie-accept {
    flex-shrink: 0;
    padding: 0.5em 1.5em;
    border-radius: var(--radius-btn);
    border: 1.5px solid var(--color-terra);
    background: var(--color-terra);
    color: var(--color-cream);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cookie-accept:hover {
    background: transparent;
    color: var(--color-cream);
    border-color: var(--color-cream);
}

.cookie-banner.hidden {
    display: none;
}

/* === COMMENTS === */
.comments-section {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 2px dotted var(--color-border-dotted);
}

.comments-section .comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comments-section .comment {
    padding: 1.2em 0;
    border-bottom: 1px solid rgba(47, 62, 46, 0.06);
}

.comments-section .comment-author {
    font-weight: 600;
    margin-bottom: 0.3em;
}

.comments-section .comment-meta {
    font-size: 0.82rem;
    color: var(--color-olive-light);
    margin-bottom: 0.6em;
}

.comment-respond label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.3em;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    padding: 0.6em 0.9em;
    border: 1.5px solid rgba(47, 62, 46, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 0.92rem;
    margin-bottom: 1em;
    transition: border-color 0.25s;
}

.comment-respond input:focus,
.comment-respond textarea:focus {
    outline: none;
    border-color: var(--color-aqua);
}

.comment-respond .submit {
    padding: 0.6em 1.6em;
    border-radius: var(--radius-btn);
    border: 1.5px solid var(--color-terra);
    background: rgba(194, 106, 90, 0.07);
    color: var(--color-olive);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-respond .submit:hover {
    background: var(--color-terra-hover);
    color: var(--color-cream);
    transform: translateY(-1px);
}

/* === SEARCH FORM === */
.search-form-wrap {
    display: flex;
    gap: 0;
    max-width: 480px;
}

.search-form-wrap input[type="search"] {
    flex: 1;
    padding: 0.6em 1em;
    border: 1.5px solid rgba(47, 62, 46, 0.15);
    border-radius: var(--radius-btn) 0 0 var(--radius-btn);
    font-family: var(--font-body);
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.6);
    outline: none;
}

.search-form-wrap input[type="search"]:focus {
    border-color: var(--color-aqua);
}

.search-form-wrap button {
    padding: 0.6em 1.2em;
    border: 1.5px solid var(--color-terra);
    border-left: none;
    border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
    background: var(--color-terra);
    color: var(--color-cream);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s;
}

.search-form-wrap button:hover {
    background: var(--color-olive);
}

/* === 404 === */
.error-404-content {
    text-align: center;
    padding: 4em 0;
}

.error-404-content h1 {
    font-size: 4rem;
    color: var(--color-terra);
    margin-bottom: 0.3em;
}

.error-404-content p {
    font-size: 1.1rem;
    color: var(--color-olive-light);
    margin-bottom: 1.5em;
}

.error-404-content .search-form-wrap {
    margin: 0 auto 2em;
}

/* === SINGLE / PAGE === */
.entry-header {
    margin-bottom: 1.5em;
}

.entry-title {
    font-size: 2rem;
    margin-bottom: 0.4em;
}

.entry-meta {
    font-size: 0.84rem;
    color: var(--color-olive-light);
    display: flex;
    gap: 1.2em;
    flex-wrap: wrap;
}

.entry-content {
    line-height: 1.78;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 1.5em;
}

.entry-content img {
    border-radius: 10px;
}

.entry-tags {
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid rgba(47, 62, 46, 0.08);
    font-size: 0.88rem;
}

.entry-tags a {
    display: inline-block;
    padding: 0.2em 0.7em;
    background: var(--color-aqua-light);
    border-radius: 6px;
    margin: 0.2em;
    font-size: 0.82rem;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .brand-group {
        max-width: 60%;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li + li::before {
        display: none;
    }

    .main-nav a {
        display: block;
        padding: 0.7em 0;
        border-bottom: 1px solid rgba(47, 62, 46, 0.06);
    }

    .content-sidebar-wrap {
        flex-direction: column;
    }

    .content-area,
    .content-area.full-width,
    .sidebar-area {
        flex: none;
        width: 100%;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .feature-cols {
        grid-template-columns: 1fr;
    }

    .steps-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-cards {
        grid-template-columns: 1fr;
    }

    .container-wide {
        width: 92%;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.35rem; }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card-horizontal {
        flex-direction: column;
    }

    .card-horizontal .card-thumb-wrap {
        flex: none;
        width: 100%;
        position: static;
    }

    .card-horizontal .card-thumb-wrap a {
        position: static;
    }

    .card-horizontal .card-thumb-wrap img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .steps-row {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.8em;
    }

    .entry-title {
        font-size: 1.5rem;
    }

    .error-404-content h1 {
        font-size: 2.5rem;
    }
}
