:root {
    --bg-primary: #F7F4EE;
    --bg-secondary: #EEE9DF;
    --bg-card: #FEFEFC;
    --bg-dark: #1B3A20;
    --bg-dark-mid: #2A5430;
    --text-primary: #2B2B28;
    --text-secondary: #5C5C52;
    --text-light: #8C8C7E;
    --text-on-dark: #F2EFE8;
    --accent-green: #355E3B;
    --accent-green-light: #4A8055;
    --accent-warm: #A0703C;
    --accent-warm-light: #C4924E;
    --border-color: #D6CCBC;
    --border-light: #E6DED0;
    --shadow-soft: 0 2px 16px rgba(53, 94, 59, 0.07);
    --shadow-card: 0 4px 22px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 32px rgba(53, 94, 59, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body: 'Nunito', -apple-system, sans-serif;
    --font-article: 'Cormorant Garamond', Georgia, serif;
    --font-nav: 'Outfit', -apple-system, sans-serif;
    --max-width: 1200px;
    --header-height: 78px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-green-light);
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-mid) 50%, #3B6B42 100%);
    z-index: 1000;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--accent-green-light), var(--accent-warm));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.logo-icon svg {
    width: 26px;
    height: 26px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.logo-subtitle {
    font-family: var(--font-nav);
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    font-family: var(--font-nav);
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    cursor: pointer;
    gap: 5px;
    transition: background 0.3s ease;
}

.burger-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.burger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: calc(100vh - var(--header-height));
    background: linear-gradient(180deg, var(--bg-dark) 0%, #162E1A 100%);
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-inner {
    padding: 28px 22px;
}

.mobile-menu-section {
    margin-bottom: 30px;
}

.mobile-menu-label {
    font-family: var(--font-nav);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 12px;
}

.mobile-menu a {
    display: block;
    font-family: var(--font-nav);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 22px;
}

.menu-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.visible {
    opacity: 1;
    visibility: visible;
}

main {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(27, 58, 32, 0.88) 0%, rgba(42, 84, 48, 0.6) 50%, rgba(59, 107, 66, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 24px 80px 0;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.9rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-family: var(--font-article);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 580px;
}

.hero-date {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.48);
    margin-top: 22px;
    letter-spacing: 0.5px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-header p {
    font-family: var(--font-article);
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 620px;
}

.section-divider {
    width: 65px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-warm));
    border-radius: 2px;
    margin-top: 18px;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.article-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.article-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.article-card.featured .card-image {
    aspect-ratio: auto;
    min-height: 330px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.04);
}

.card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-nav);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: var(--accent-green);
    padding: 6px 16px;
    border-radius: 20px;
}

.card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    font-family: var(--font-nav);
    font-size: 0.76rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-meta span::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--accent-warm);
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
}

.card-meta span:first-child::before {
    display: none;
}

.card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 12px;
}

.article-card.featured .card-body h3 {
    font-size: 1.65rem;
}

.card-body p {
    font-family: var(--font-article);
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-nav);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 10px;
    color: var(--accent-green-light);
}

.card-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-preview {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
}

.about-preview-visual {
    position: relative;
}

.about-preview-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-preview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-preview-accent {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-warm));
    border-radius: var(--radius-lg);
    opacity: 0.12;
    z-index: -1;
}

.about-preview-content h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-preview-content p {
    font-family: var(--font-article);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-nav);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-top: 12px;
    padding: 11px 28px;
    border: 2px solid var(--accent-green);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.about-link:hover {
    background: var(--accent-green);
    color: #fff;
}

.article-page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--bg-dark);
}

.article-page-hero .hero-bg {
    opacity: 0.28;
}

.article-page-hero .hero-overlay {
    background: linear-gradient(0deg, rgba(27, 58, 32, 0.95) 0%, rgba(42, 84, 48, 0.5) 55%, transparent 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    padding: 44px 0;
    width: 100%;
}

.article-hero-content .container {
    max-width: 800px;
}

.article-breadcrumb {
    font-family: var(--font-nav);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 16px;
}

.article-breadcrumb a {
    color: rgba(255, 255, 255, 0.58);
}

.article-breadcrumb a:hover {
    color: #fff;
}

.article-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.article-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-nav);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.article-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.article-body p {
    font-family: var(--font-article);
    font-size: 1.12rem;
    color: var(--text-primary);
    line-height: 1.9;
    margin-bottom: 24px;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-top: 44px;
    margin-bottom: 20px;
    padding-left: 18px;
    border-left: 4px solid var(--accent-green);
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-top: 34px;
    margin-bottom: 16px;
}

.article-body blockquote {
    margin: 34px 0;
    padding: 30px 34px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
    border-left: 4px solid var(--accent-warm);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    position: relative;
}

.article-body blockquote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-warm);
    opacity: 0.25;
    position: absolute;
    top: -10px;
    left: 18px;
    line-height: 1;
}

.article-body blockquote p {
    font-family: var(--font-article);
    font-style: italic;
    font-size: 1.08rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.article-body blockquote cite {
    display: block;
    font-family: var(--font-nav);
    font-size: 0.82rem;
    font-style: normal;
    color: var(--text-light);
    margin-top: 12px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 24px;
}

.article-body li {
    font-family: var(--font-article);
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.article-body ul li::marker {
    color: var(--accent-green);
}

.article-image-block {
    margin: 38px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.article-image-block img {
    width: 100%;
    height: auto;
}

.article-image-block figcaption {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 12px 16px;
    background: var(--bg-secondary);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.article-tags span {
    font-family: var(--font-nav);
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--accent-green);
    background: rgba(53, 94, 59, 0.07);
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(53, 94, 59, 0.12);
}

.related-articles {
    padding: 60px 0 80px;
    background: var(--bg-secondary);
}

.related-articles h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-grid .article-card {
    border: none;
}

.related-grid .card-body h3 {
    font-size: 1.1rem;
}

.info-page {
    padding: 60px 0 80px;
}

.info-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.info-page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.info-page-header p {
    font-family: var(--font-article);
    font-size: 1.08rem;
    color: var(--text-secondary);
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-content p {
    font-family: var(--font-article);
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.85;
    margin-bottom: 20px;
}

.info-content h2 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-top: 38px;
    margin-bottom: 16px;
}

.info-content h3 {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}

.info-content ul,
.info-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.info-content li {
    font-family: var(--font-article);
    font-size: 1.02rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 42px;
    margin: 34px 0;
    box-shadow: var(--shadow-soft);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 22px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-label {
    font-family: var(--font-nav);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    flex-shrink: 0;
}

.contact-value {
    font-family: var(--font-article);
    font-size: 1.02rem;
    color: var(--text-primary);
}

.contact-value a {
    color: var(--accent-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0E1F12 100%);
    color: var(--text-on-dark);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-about .logo-title {
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.footer-about p {
    font-family: var(--font-article);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-nav);
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-family: var(--font-nav);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.58);
    padding: 6px 0;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.32);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.cookie-text a {
    color: var(--accent-green);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-nav);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.cookie-accept {
    background: var(--accent-green);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--accent-green-light);
}

.cookie-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookie-reject:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.update-date {
    font-family: var(--font-nav);
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.external-sources {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.external-sources h3 {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.external-sources ul {
    list-style: none;
    padding: 0;
}

.external-sources li {
    margin-bottom: 10px;
}

.external-sources a {
    font-family: var(--font-nav);
    font-size: 0.9rem;
    color: var(--accent-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .articles-grid {
        gap: 24px;
    }

    .article-card.featured {
        grid-template-columns: 1fr;
    }

    .about-preview {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 66px;
    }

    .hero {
        min-height: 420px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.02rem;
    }

    .hero-content {
        padding: 56px 0;
    }

    .section {
        padding: 56px 0;
    }

    .section-header h2 {
        font-size: 1.65rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-card.featured {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-page-hero {
        min-height: 320px;
    }

    .article-hero-content h1 {
        font-size: 1.85rem;
    }

    .article-content-wrapper {
        padding: 40px 20px 60px;
    }

    .info-page-header h1 {
        font-size: 1.85rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .contact-row {
        flex-direction: column;
        gap: 4px;
    }

    .about-preview-image img {
        height: 260px;
    }

    .logo-subtitle {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .card-body {
        padding: 20px;
    }

    .article-hero-content h1 {
        font-size: 1.5rem;
    }

    .article-body p {
        font-size: 1.02rem;
    }

    .article-body blockquote {
        padding: 20px 24px;
    }

    .contact-info {
        padding: 24px;
    }
}
