:root {
    --news-black: #111;
    --news-red: #d32f2f;
    --news-blue: #0044cc;
    --news-bg: #fff;
    --news-gray: #f4f4f4;
    --font-serif: 'Merriweather', serif;
    --font-sans: 'Roboto', sans-serif;
    --container-width: 720px;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--news-gray);
    color: var(--news-black);
    line-height: 1.5;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.news-header {
    background: var(--news-black);
    color: #fff;
    padding: 10px 0;
}

.news-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-brand {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.news-date {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Article Layout */
.news-container {
    background: var(--news-bg);
    max-width: var(--container-width);
    margin: 30px auto;
    padding: 0 0 40px 0;
    /* Adjusted for banner */
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.deadline-banner {
    background: #d32f2f;
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #b71c1c;
}

.article-header {
    padding: 40px 40px 0 40px;
}

.news-headline {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
    text-align: center;
}

.news-subheadline {
    font-size: 1.35rem;
    color: #444;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 500;
    line-height: 1.3;
}

.cta-wrapper {
    text-align: center;
    margin: 30px 0;
}

.atf {
    margin-top: 0;
}

.news-cta-button {
    display: inline-block;
    background: var(--news-red);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #922020;
    transition: transform 0.1s;
}

.news-cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #922020;
}

.news-cta-button.secondary {
    background: var(--news-blue);
    box-shadow: 0 4px 0 #003399;
    font-size: 1.2rem;
}

.news-cta-hint {
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}

/* Body Content */
.news-image {
    margin-bottom: 25px;
}

.news-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.news-brief-text {
    font-size: 1.15rem;
    margin: 0 40px 25px 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 0 40px 30px 40px;
}

.benefit-item {
    background: #f9f9f9;
    padding: 15px;
    text-align: center;
    font-size: 0.95rem;
    border: 1px solid #eee;
    border-radius: 4px;
}

.news-urgency {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    font-size: 1.1rem;
    margin: 0 40px 25px 40px;
}

/* Social Proof Sections */
.section-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #999;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.as-seen-on {
    padding: 30px 40px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.logo-strip {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0.5;
    filter: grayscale(1);
}

.logo-placeholder {
    font-weight: 800;
    font-size: 1rem;
    color: #000;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    padding: 30px 40px;
    background: #fdfdfd;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 20px 0;
}

.stat-box {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--news-red);
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonials-section {
    padding: 40px 40px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.t-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.t-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #eee;
}

.t-name {
    display: block;
    font-weight: 800;
    font-size: 1rem;
}

.t-location {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.t-stars {
    color: #ff9800;
    font-size: 0.9rem;
    margin-top: 2px;
}

.t-text {
    font-size: 1rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
}

/* Footer (Centered) */
.news-footer {
    padding: 60px 0;
    background: #f8f9fa;
    color: #999;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
}

.news-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.disclaimer {
    margin-top: 20px;
    max-width: 600px;
    font-size: 0.75rem;
    line-height: 1.5;
}

.middle-cta {
    margin: 40px 0;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(211, 47, 47, 0.4);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .news-container {
        padding: 25px 15px;
        margin: 15px auto;
    }

    .news-headline {
        font-size: 1.8rem;
    }

    .news-subheadline {
        font-size: 1.1rem;
    }

    .news-cta-button {
        width: 100%;
        font-size: 1.2rem;
        padding: 18px;
    }

    .news-benefit-grid,
    .trust-stats {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 20px;
    }

    .logo-strip {
        gap: 15px;
    }
}

.dynamic-city {
    color: var(--news-blue);
    text-decoration: underline;
    font-weight: 700;
}