:root {
    --primary-blue: #1a2b4d;
    --accent-red: #d32f2f;
    --text-white: #ffffff;
    --text-dark: #2c3e50;
    --text-gray: #6c757d;
    --bg-light: #f8f9fa;
    --border-light: #e0e0e0;
    --hover-red: #b71c1c;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-left: none !important;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.disclaimer {
    background-color: #fff3cd;
    border-bottom: 2px solid #ffc107;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    color: #856404;
    position: relative;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header {
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px var(--shadow);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.header-date {
    font-size: 14px;
    opacity: 0.9;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.header-logo a:hover {
    opacity: 0.9;
}

.header-logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--text-white);
}

.header-logo-text {
    letter-spacing: 2px;
}

.header-info {
    display: flex;
    gap: 20px;
    font-size: 13px;
    opacity: 0.9;
}

.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 0 40px 5px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    position: relative;
    transition: opacity 0.3s ease;
    padding: 5px 0;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link::after {
    content: '•';
    margin-left: 25px;
    opacity: 0.5;
}

.nav-link:last-child::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    margin-top: 5px;
    justify-content: flex-end;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
    position: relative;
    padding: 5px;
    transition: transform 0.3s ease;
}

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

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-red);
    color: var(--text-white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-btn {
    background-color: var(--text-white);
    color: var(--primary-blue);
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.subscribe-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow);
}

.breaking-news {
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    z-index: 1;
}

.breaking-news-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.breaking-news-content {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    padding-right: 50px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.news-separator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--text-white);
    margin: 0 20px;
    vertical-align: middle;
}

.breaking-news-link {
    color: var(--text-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.breaking-news-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 0;
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.featured-section {
    display: flex;
    flex-direction: column;
}

.featured-article {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 5px;
}

.article-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 15px var(--shadow);
}

.article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    padding: 30px 25px 25px;
    color: var(--text-white);
    border-radius: 0 0 5px 5px;
    z-index: 1;
}

.article-tag {
    display: inline-block;
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-title-overlay {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 12px;
}

.article-meta-overlay {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.article-content {
    margin-top: 20px;
}

.article-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.author-info {
    font-size: 14px;
    color: var(--text-gray);
}

.read-more {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--hover-red);
}

.article-headline {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-square {
    width: 12px;
    height: 12px;
    background-color: var(--accent-red);
    display: inline-block;
}

.see-all-link {
    color: var(--accent-red);
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    margin-left: auto;
    transition: color 0.3s ease;
}

.see-all-link:hover {
    color: var(--hover-red);
}

.story-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.story-item:hover {
    transform: translateX(5px);
}

.story-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.story-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.story-content {
    flex: 1;
}

.story-category {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: inline-block;
}

.story-date {
    color: var(--text-gray);
    font-size: 12px;
}

.story-headline {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-dark);
    line-height: 1.4;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.story-item:hover .story-headline {
    color: var(--accent-red);
}

.category-sections {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.category-section {
    width: 100%;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.category-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.category-articles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .category-articles {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 24px;
    }
}

.article-card {
    background-color: var(--text-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-tag {
    display: inline-block;
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-meta {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-header {
    margin-bottom: 30px;
}

.article-page-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-page-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-light);
}

.article-page-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px var(--shadow);
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-body h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
    padding-top: 20px;
}

.article-body h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-dark);
    margin: 30px 0 15px 0;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px var(--shadow);
}

.article-related-links {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.article-related-links-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.article-related-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.article-related-links-list li a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 16px;
}

.article-related-links-list li a:hover {
    text-decoration: underline;
}

/* Bloques interactivos en artículos (estilo suave por defecto) */
.article-steps {
    display: grid;
    gap: 12px;
    margin: 22px 0;
    list-style: none;
    padding-left: 0;
    counter-reset: step;
}

.article-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px 14px 20px;
    background: #fafbfc;
    border-radius: 8px;
    counter-increment: step;
}

.article-steps li::before {
    content: counter(step);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #5a6c7d;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 22px 0;
}

.article-compare-card {
    padding: 18px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #fcfcfc;
}

.article-compare-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #d0d7de;
    color: var(--text-dark);
}

.article-compare-card ul {
    margin: 0;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.65;
}

.article-compare-card li {
    margin-bottom: 6px;
}

.article-checklist {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 18px 22px;
    margin: 22px 0;
}

.article-checklist h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.article-checklist ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.article-checklist li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.55;
}

.article-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: #64748b;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
}

.article-callout {
    background: #fefce8;
    border-radius: 8px;
    padding: 18px 22px;
    margin: 22px 0;
}

.article-callout h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #6b5b1f;
}

.article-callout ul {
    margin: 0;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.article-callout li {
    margin-bottom: 6px;
}

.article-summary-box {
    background: #374151;
    color: #f3f4f6;
    border-radius: 10px;
    padding: 22px 26px;
    margin: 26px 0;
}

.article-summary-box h4 {
    font-size: 17px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.article-summary-box p,
.article-summary-box ul {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

.article-summary-box ul {
    padding-left: 20px;
    margin-top: 10px;
}

.article-summary-box li {
    margin-bottom: 5px;
}

.article-summary-box a {
    color: #93c5fd;
    text-decoration: underline;
}

.article-summary-box a:hover {
    color: #bfdbfe;
}

/* Estilo destacado solo para artículo featured (acta) */
.article-page--featured .article-steps {
    gap: 16px;
    margin: 28px 0;
}

.article-page--featured .article-steps li {
    gap: 16px;
    padding: 20px 20px 20px 24px;
    background: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-page--featured .article-steps li:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px var(--shadow);
}

.article-page--featured .article-steps li::before {
    width: 36px;
    height: 36px;
    background: var(--primary-blue);
    font-size: 18px;
}

.article-page--featured .article-compare {
    gap: 24px;
    margin: 28px 0;
}

.article-page--featured .article-compare-card {
    padding: 24px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    background: var(--text-white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.article-page--featured .article-compare-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 6px 20px var(--shadow);
}

.article-page--featured .article-compare-card h4 {
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-red);
    color: var(--primary-blue);
}

.article-page--featured .article-compare-card ul {
    font-size: 16px;
}

.article-page--featured .article-checklist {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border: 1px solid #c5d9f0;
    border-radius: 10px;
    padding: 24px 28px;
    margin: 28px 0;
}

.article-page--featured .article-checklist h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.article-page--featured .article-checklist li {
    padding: 10px 0 10px 36px;
    font-size: 16px;
}

.article-page--featured .article-checklist li::before {
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    font-size: 14px;
    line-height: 24px;
}

.article-page--featured .article-callout {
    background: #fff8e6;
    border-radius: 10px;
    padding: 22px 26px;
    margin: 28px 0;
}

.article-page--featured .article-callout h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #8b6914;
}

.article-page--featured .article-callout ul {
    font-size: 16px;
    padding-left: 22px;
}

.article-page--featured .article-summary-box {
    background: var(--primary-blue);
    color: var(--text-white);
    border-radius: 12px;
    padding: 28px 32px;
    margin: 32px 0;
}

.article-page--featured .article-summary-box h4 {
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.article-page--featured .article-summary-box p,
.article-page--featured .article-summary-box ul {
    font-size: 16px;
}

.article-page--featured .article-summary-box ul {
    padding-left: 22px;
    margin-top: 12px;
}

.article-page--featured .article-summary-box a {
    color: #8ab4f8;
}

.article-page--featured .article-summary-box a:hover {
    color: #b8d4ff;
}

@media (max-width: 640px) {
    .article-compare {
        grid-template-columns: 1fr;
    }
}

.footer {
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 50px 40px 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

.footer-disclaimer {
    max-width: 1000px;
    margin: 0 auto 25px;
    text-align: left;
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-disclaimer p {
    margin-bottom: 15px;
}

.footer-disclaimer strong {
    font-weight: bold;
    opacity: 1;
}

.footer-warning {
    background-color: rgba(211, 47, 47, 0.15);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.footer-warning p {
    margin-bottom: 10px;
}

.footer-warning p:last-child {
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 20px 40px;
    box-shadow: 0 -2px 10px var(--shadow);
    z-index: 1000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner.show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.cookie-accept {
    background-color: var(--accent-red);
    color: var(--text-white);
}

.cookie-accept:hover {
    background-color: var(--hover-red);
    transform: translateY(-2px);
}

.cookie-decline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.cookie-decline:hover {
    background-color: rgba(255,255,255,0.1);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a3f5f 100%);
    color: var(--text-white);
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.categories-section {
    background-color: #faf8f5;
    padding: 60px 40px;
    margin-bottom: 50px;
    border-radius: 8px;
}

.categories-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    gap: 20px;
}

.category-item:last-child {
    border-bottom: none;
}

.category-description {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 400;
}

.category-name {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-dark);
    text-align: left;
    font-family: 'Georgia', 'Times New Roman', serif;
}

@media (max-width: 768px) {
    .categories-section {
        padding: 40px 20px;
        margin-bottom: 30px;
    }
    
    .categories-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .category-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }
    
    .category-name {
        font-size: 26px;
        order: -1;
    }
    
    .category-description {
        font-size: 14px;
    }
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

@media (min-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px;
    font-size: 16px;
    line-height: 1.8;
}

.content-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
    padding-top: 20px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    margin: 30px 0 15px 0;
}

.content-section p {
    margin-bottom: 20px;
}

.content-section ul, .content-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: var(--accent-red);
    color: var(--text-white);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--hover-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .header-top {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 16px;
        margin-bottom: 4px;
    }
    
    .header-date {
        order: 1;
        font-size: 12px;
        flex: 0 0 auto;
    }
    
    .header-logo {
        order: 2;
        font-size: 22px;
        margin: 0 auto;
    }
    
    .header-logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .header-info {
        order: 3;
        font-size: 11px;
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 6px 0;
    }
    
    .header-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 12px;
        padding: 6px 16px 8px;
        justify-items: center;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 4px 8px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .article-title-overlay {
        font-size: 24px;
    }
    
    .article-page-title {
        font-size: 32px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-disclaimer {
        font-size: 12px;
        padding: 0 10px;
    }
    
    .footer-warning {
        padding: 12px 15px;
        margin: 15px 0;
    }
    
    .cookie-banner {
        padding: 15px 20px;
    }
    
    .cookie-text {
        min-width: 100%;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
    }
}

.seo-featured-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.seo-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    min-height: 500px;
}

.seo-block:last-child {
    margin-bottom: 0;
}

.seo-block-left .seo-content {
    order: 1;
}

.seo-block-left .seo-image-wrapper {
    order: 2;
}

.seo-block-right .seo-content {
    order: 2;
}

.seo-block-right .seo-image-wrapper {
    order: 1;
}

.seo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.seo-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.seo-title {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.seo-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.seo-link {
    color: var(--accent-red);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Arial', sans-serif;
}

.seo-link:hover {
    color: var(--hover-red);
    transform: translateX(5px);
}

.seo-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.seo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.seo-image-wrapper:hover .seo-image {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .seo-block {
        gap: 40px;
        min-height: 400px;
    }
    
    .seo-title {
        font-size: 32px;
    }
    
    .seo-description {
        font-size: 16px;
    }
    
    .seo-image-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .seo-featured-section {
        padding: 60px 15px;
    }
    
    .seo-block {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        min-height: auto;
    }
    
    .seo-block-left .seo-content,
    .seo-block-left .seo-image-wrapper,
    .seo-block-right .seo-content,
    .seo-block-right .seo-image-wrapper {
        order: unset;
    }
    
    .seo-content {
        padding: 20px 0;
    }
    
    .seo-title {
        font-size: 28px;
    }
    
    .seo-description {
        font-size: 15px;
    }
    
    .seo-image-wrapper {
        min-height: 300px;
    }
}

.newsletter-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.newsletter-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.newsletter-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 66.67%;
    z-index: 1;
    overflow: hidden;
}

.newsletter-bg svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    min-height: 267px;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.newsletter-text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px 40px;
    background-color: #ffffff;
    color: #434242;
}

.newsletter-button-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 40px 50px;
    position: relative;
    z-index: 3;
}

.newsletter-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #434242;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.newsletter-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    color: #434242;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.newsletter-subscribe-btn {
    background-color: #ffffff;
    color: #434242;
    border: 2px solid #434242;
    padding: 16px 50px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.newsletter-subscribe-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #2c3e50;
}

.newsletter-side-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 3;
}

.side-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.side-btn svg {
    flex-shrink: 0;
}

.side-btn-white {
    background-color: var(--text-white);
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
}

.side-btn-white:hover {
    background-color: var(--bg-light);
    transform: translateX(3px);
}

.side-btn-red {
    background-color: var(--accent-red);
    color: var(--text-white);
}

.side-btn-red:hover {
    background-color: var(--hover-red);
    transform: translateX(3px);
}

.side-btn-blue {
    background-color: var(--primary-blue);
    color: var(--text-white);
}

.side-btn-blue:hover {
    background-color: #2a3f5f;
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .newsletter-title {
        font-size: 32px;
    }
    
    .newsletter-description {
        font-size: 16px;
    }
    
    .newsletter-text-section {
        padding: 50px 30px 30px;
    }
    
    .newsletter-button-section {
        padding: 25px 30px 40px;
    }
}

.subscribe-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.subscribe-modal.show {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 2001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.subscribe-modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-gray);
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.modal-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.modal-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group-modal {
    margin-bottom: 25px;
}

.modal-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal-input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.modal-input.error {
    border-color: var(--accent-red);
}

.error-message {
    display: block;
    color: var(--accent-red);
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

.modal-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--accent-red);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modal-submit-btn:hover {
    background-color: var(--hover-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.modal-submit-btn:active {
    transform: translateY(0);
}

.already-subscribed {
    padding: 20px 0;
}

.subscribed-info {
    text-align: center;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 8px;
    border: 2px solid #4caf50;
}

.subscribed-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #4caf50;
    color: var(--text-white);
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    line-height: 50px;
    margin-bottom: 15px;
}

.subscribed-message {
    font-size: 18px;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 10px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.subscribed-email {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    word-break: break-all;
}

.subscribe-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #2e7d32;
    color: var(--text-white);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    opacity: 0;
    transition: all 0.4s ease;
    min-width: 300px;
    max-width: 90%;
}

.subscribe-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    font-size: 20px;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-message {
    font-size: 15px;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .header-top {
        padding: 0 12px;
    }
    
    .header-date {
        font-size: 11px;
    }
    
    .header-logo {
        font-size: 20px;
    }
    
    .header-logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .header-info {
        font-size: 10px;
    }
    
    .header-nav {
        padding: 4px 12px 6px;
        gap: 4px 8px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 3px 4px;
    }
    
    .article-image {
        height: 300px;
    }
    
    .article-overlay {
        padding: 20px;
    }
    
    .article-title-overlay {
        font-size: 20px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-section {
        padding: 50px 15px;
    }
    
    .newsletter-banner {
        min-height: 350px;
    }
    
    .newsletter-content {
        min-height: 350px;
    }
    
    .newsletter-text-section {
        padding: 40px 20px 30px;
    }
    
    .newsletter-button-section {
        padding: 20px 20px 35px;
    }
    
    .newsletter-title {
        font-size: 28px;
    }
    
    .newsletter-description {
        font-size: 15px;
    }
    
    .newsletter-subscribe-btn {
        padding: 14px 40px;
        font-size: 16px;
    }
    
    .modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-description {
        font-size: 14px;
    }
    
    .subscribe-toast {
        min-width: auto;
        width: calc(100% - 40px);
        padding: 14px 20px;
    }
}

