@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Playfair+Display:wght@600;700&family=Lato:wght@300;400;700&family=Merriweather:wght@300;400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #4a90a4;
    --primary-dark: #357a8a;
    --accent: #f0956a;
    --accent-light: #fde9dc;
    --bg: #f5f0eb;
    --bg-card: #ffffff;
    --text: #2c3e50;
    --text-light: #6b7d8f;
    --border: #e0d6cc;
    --section-bg: #eef6f9;
    --footer-bg: #2c3e50;
    --header-bg: #ffffff;
    --green: #5aaa6e;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

a { color: var(--primary); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
    background: var(--header-bg);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-tagline {
    font-size: 0.72rem;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.04em;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-nav a {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== PAGE LOADER ===== */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s;
}

#page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #4a90a4 0%, #2d7d92 50%, #1e6070 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
}

.hero-text p {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin-bottom: 28px;
    line-height: 1.8;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 40px;
    transition: background 0.25s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(240,149,106,0.35);
}

.hero-btn:hover {
    background: #e07d52;
    color: #fff;
    transform: translateY(-2px);
}

.hero-img {
    position: relative;
}

.hero-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    object-fit: cover;
    height: 340px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 36px;
    font-family: 'Lato', sans-serif;
}

.section-header { margin-bottom: 36px; }
.section-header .section-title { margin-bottom: 8px; }

/* ===== FEATURED ARTICLES ===== */
.featured-section { padding: 60px 0; }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}

.card-img {
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.article-card:hover .card-img img { transform: scale(1.06); }

.card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.card-link {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-link:after { content: ' →'; }
.card-link:hover { color: var(--primary-dark); }

/* ===== INFO STRIP ===== */
.info-strip {
    background: var(--section-bg);
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.info-item {
    padding: 24px 16px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.info-item h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.info-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== TIPS SECTION ===== */
.tips-section { padding: 60px 0; }

.tips-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.tips-img img {
    border-radius: 18px;
    width: 100%;
    height: 360px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.tips-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.tips-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tip-num {
    min-width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
}

.tip-text h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 4px;
}

.tip-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== NEWSLETTER STRIP ===== */
.newsletter-strip {
    background: linear-gradient(135deg, var(--accent) 0%, #e07d52 100%);
    padding: 50px 0;
    text-align: center;
}

.newsletter-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-strip p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.newsletter-strip a {
    display: inline-block;
    background: #fff;
    color: var(--accent);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 40px;
    transition: transform 0.2s;
}

.newsletter-strip a:hover { transform: translateY(-2px); }

/* ===== ARTICLE PAGE ===== */
.article-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0 40px;
    color: #fff;
}

.article-header .breadcrumb {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.article-header .breadcrumb a { color: rgba(255,255,255,0.7); }
.article-header .breadcrumb a:hover { color: #fff; }

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 700;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 50px 0;
}

.article-content { min-width: 0; }

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text);
    margin: 32px 0 14px;
}

.article-content h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 24px 0 10px;
}

.article-content p {
    margin-bottom: 18px;
    color: var(--text);
    line-height: 1.8;
    font-family: 'Merriweather', serif;
    font-size: 0.97rem;
    font-weight: 300;
}

.article-content ul, .article-content ol {
    margin: 0 0 18px 22px;
    color: var(--text);
}

.article-content li {
    margin-bottom: 8px;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

.article-content .lead {
    font-size: 1.1rem;
    color: var(--primary);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    border-left: 4px solid var(--primary);
    padding-left: 18px;
    margin-bottom: 24px;
}

.article-img {
    border-radius: 14px;
    overflow: hidden;
    margin: 28px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.article-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.article-img figcaption {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 8px 12px;
    background: #f8f8f8;
    font-style: italic;
}

/* SIDEBAR */
.sidebar {}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.widget-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.related-list { list-style: none; }
.related-list li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.related-list li:last-child { border-bottom: none; }
.related-list a {
    font-size: 0.9rem;
    color: var(--text);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.related-list a::before { content: '→'; color: var(--primary); min-width: 16px; }
.related-list a:hover { color: var(--primary); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
    background: var(--section-bg);
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: all 0.2s;
}
.tag-cloud a:hover { background: var(--primary); color: #fff; }

/* ===== ABOUT PAGE ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-section { padding: 60px 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.about-img img {
    border-radius: 18px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 16px;
    color: var(--text);
}

.about-text p {
    font-family: 'Merriweather', serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 14px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    border-top: 4px solid var(--primary);
}

.value-card h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    margin-bottom: 16px;
    color: var(--text);
}

.contact-info p {
    font-family: 'Merriweather', serif;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.contact-details { list-style: none; }
.contact-details li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
}

.contact-icon svg { width: 20px; height: 20px; fill: #fff; }

.contact-detail-text strong {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-detail-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-detail-text a { color: var(--primary); }
.contact-detail-text a:hover { color: var(--primary-dark); }

.contact-card {
    background: var(--bg-card);
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.contact-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--text);
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.topics-list { list-style: none; }
.topics-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text);
}
.topics-list li::before { content: '→'; color: var(--primary); font-weight: 700; }
.topics-list li:last-child { border-bottom: none; }

/* ===== POLICY PAGE ===== */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: var(--text);
    margin: 32px 0 14px;
}

.policy-content p {
    font-family: 'Merriweather', serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.policy-content ul {
    margin: 0 0 16px 22px;
    color: var(--text);
}

.policy-content li {
    font-size: 0.93rem;
    font-family: 'Merriweather', serif;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--footer-bg);
    color: #fff;
    padding: 18px 20px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookie-banner.visible { transform: translateY(0); }

#cookie-banner p {
    flex: 1;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    min-width: 200px;
}

#cookie-banner a { color: var(--accent); text-decoration: underline; }

.cookie-actions { display: flex; gap: 10px; }

.btn-accept {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 9px 22px;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-accept:hover { background: #4a9460; }

.btn-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 9px 22px;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-reject:hover { border-color: #fff; color: #fff; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.8);
    padding: 54px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-top: 14px;
}

.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

.footer-bottom a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
    .burger-btn { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -4px 0 20px rgba(0,0,0,0.12);
        padding: 80px 30px 30px;
        transition: right 0.35s ease;
        z-index: 999;
    }

    .main-nav.open { right: 0; }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-nav ul li { width: 100%; }

    .main-nav a {
        display: block;
        padding: 13px 0;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 998;
    }
    .nav-overlay.visible { display: block; }

    .articles-grid { grid-template-columns: 1fr 1fr; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .tips-layout { grid-template-columns: 1fr; }
    .tips-img { order: -1; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-img { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .articles-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .hero-text h1 { font-size: 1.9rem; }
    .section-title { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    #cookie-banner { flex-direction: column; gap: 12px; }
    .cookie-actions { width: 100%; justify-content: flex-end; }
}
