:root {
    --primary-color: #2c3e50;
    --accent-color: #e21a36;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--bg-light);
    font-size: 18px;
}

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 40px 30px;
}

.article-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.category {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--primary-color);
}

.author-info {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.author-info span {
    position: relative;
}

.author-info span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
}

.author {
    font-weight: 600;
    color: var(--text-color);
}

.article-body {
    margin-top: 40px;
}

.lead {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--primary-color);
}

p {
    margin-bottom: 25px;
}

h2 {
    font-size: 32px;
    line-height: 1.4;
    margin: 50px 0 25px;
    font-weight: 700;
    color: var(--primary-color);
}

strong {
    font-weight: 700;
    color: var(--primary-color);
}

em {
    font-style: italic;
}

.image-block {
    margin: 45px 0;
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.caption {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

.cta-inline {
    background: linear-gradient(135deg, #e21a36 0%, #b8152b 100%);
    padding: 35px;
    border-radius: 12px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(226, 26, 54, 0.3);
}

.cta-content h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255,255,255,0.95);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #e21a36;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.testimonial-block {
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    padding: 30px;
    margin: 45px 0;
    border-radius: 8px;
}

.quote {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.cta-final {
    background: linear-gradient(135deg, #e21a36 0%, #b8152b 100%);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0 50px;
    box-shadow: 0 15px 40px rgba(226, 26, 54, 0.3);
}

.cta-final h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-final > p {
    color: rgba(255,255,255,0.95);
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    background-color: #fff;
    color: #e21a36;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    margin-bottom: 15px;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.cta-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-top: 15px;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    background-color: var(--bg-light);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 30px 30px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e21a36 0%, #ff4757 50%, #e21a36 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-nav h4,
.footer-company h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #e21a36;
}

.footer-nav nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    padding: 6px 0;
    border-bottom: 1px solid transparent;
}

.footer-nav a:hover {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.3);
    padding-left: 8px;
}

.footer-company p {
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255,255,255,0.65);
    margin-bottom: 6px;
}

.footer-company p strong {
    color: #fff;
    font-weight: 500;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px;
    font-style: italic;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
    .editorial-content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
        margin: 40px 0 20px;
    }

    .lead {
        font-size: 20px;
    }

    body {
        font-size: 17px;
    }

    .author-info {
        flex-direction: column;
        gap: 8px;
    }

    .author-info span::after {
        display: none;
    }

    .cta-inline,
    .cta-final {
        padding: 25px 20px;
    }

    .cta-content h3,
    .cta-final h3 {
        font-size: 22px;
    }

    .cta-button,
    .cta-button-large {
        display: block;
        text-align: center;
        padding: 14px 25px;
    }

    .testimonial-block {
        padding: 20px;
    }

    .quote {
        font-size: 17px;
    }

    .site-footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-nav a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .lead {
        font-size: 19px;
    }

    body {
        font-size: 16px;
    }

    .cta-final h3 {
        font-size: 20px;
    }
}

@media print {
    .cta-inline,
    .cta-final,
    .site-footer {
        display: none;
    }
}


.contact-info {
    margin: 40px 0;
}

.contact-method {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-color);
}

.contact-method h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-method h3 i {
    color: var(--accent-color);
    font-size: 22px;
}

.contact-method p {
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.contact-method a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-method a:hover {
    color: var(--primary-color);
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.article-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body ol li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-body a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.article-body a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-method {
        padding: 20px;
    }

    .contact-method h3 {
        font-size: 18px;
    }
}
