/* CSS Variables & Design System - Editorial/Advertorial Mode */
:root {
    /* Colors - Editorial Theme */
    --color-bg-body: #F5F5F5;
    /* Light Grey background */
    --color-bg-article: #FFFFFF;
    /* White Card */
    --color-text-main: #333333;
    /* Dark Grey (Not Black) */
    --color-text-meta: #666666;

    /* Accents */
    --color-header: #003366;
    /* Trust Blue (News/Facebook/LinkedIn vibe) */
    --color-link: #0000EE;
    /* Standard Blue Link */
    --color-link-visited: #551A8B;
    --color-divider: #EEEEEE;

    /* Typography */
    --font-heading: 'Georgia', 'Playfair Display', 'Times New Roman', serif;
    /* Authority */
    --font-body: 'Arial', 'Helvetica', sans-serif;
    /* Readability */
    --font-size-base: 20px;
    /* Large for seniors */

    /* Spacing */
    --container-width: 800px;
    /* Reading column width */
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

/* News Header */
.news-header {
    background-color: #FFFFFF;
    border-bottom: 2px solid var(--color-header);
    padding: 10px 0;
    /* Reduced padding */
    margin-bottom: 10px;
    /* Reduced margin */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.news-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    /* Slightly smaller */
    font-weight: 700;
    color: var(--color-header);
    letter-spacing: -0.5px;
}

.news-tagline {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    display: block;
    margin-top: -2px;
}

/* Article Container */
.main-article {
    background-color: var(--color-bg-article);
    max-width: var(--container-width);
    margin: 0 auto 40px;
    padding: 20px 20px;
    /* Reduced padding top/bottom */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

/* Meta & Breadcrumbs */
.article-meta {
    max-width: var(--container-width);
    margin: 0 auto 5px;
    /* Tight margin */
    padding: 0 15px;
    font-size: 11px;
    color: var(--color-text-meta);
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

.current-cat {
    font-weight: 700;
    color: var(--color-header);
}

/* Typography */
.main-headline {
    font-family: var(--font-heading);
    font-size: 28px;
    /* Compact headline */
    font-weight: 700;
    color: #111;
    line-height: 1.15;
    margin-bottom: 10px;
}

.subheadline {
    display: none;
    /* Hide subheadline on mobile/desktop to prioritize video */
}

.article-divider {
    border: 0;
    border-top: 1px solid var(--color-divider);
    margin: 10px 0 15px;
    /* Tight spacing around divider */
}

/* Author */
.author-byline {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #555;
}

.author-info strong {
    display: inline;
    color: var(--color-header);
}

/* Article Body */
.intro-text {
    font-size: 18px;
    margin-bottom: 15px;
}

.warning-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    font-style: italic;
    color: #856404;
}

/* Video */
.video-wrapper {
    margin: 30px 0;
}

.video-container {
    background: #000;
    /* No shadow, plain embed look */
}

.video-caption-text {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

/* CTA "Offer" Box */
.offer-box {
    background-color: #e8f4fd;
    border: 1px solid #b6e0fe;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    margin-top: 10px;
    /* Closer to video */
}

.offer-box h3 {
    font-family: var(--font-heading);
    color: var(--color-header);
    margin-bottom: 25px;
}

.cta-button {
    background-color: #2e7d32;
    color: white;
    border: 3px solid #4caf50;
    /* Initial border */
    padding: 20px 35px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    position: relative;
    overflow: hidden;

    /* Animations */
    animation: btnPulse 2s infinite, borderShimmy 3s infinite linear;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    transition: transform 0.2s;
}

.cta-button:hover {
    background-color: #1b5e20;
    transform: scale(1.02);
}

.guarantee-text {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

/* Button Animations */
@keyframes btnPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

@keyframes borderShimmy {
    0% {
        border-color: #4caf50;
    }

    33% {
        border-color: #81c784;
    }

    66% {
        border-color: #2e7d32;
    }

    100% {
        border-color: #4caf50;
    }
}


/* Comments Section - Facebook Style */
.comments-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.comments-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #444;
}

.fb-comment {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    /* Distinct font for comments */
}

.comment-avatar {
    width: 32px;
    height: 32px;
    background-color: #ccc;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.comment-content {
    background-color: #f0f2f5;
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 15px;
    color: #050505;
}

.comment-name {
    font-weight: 700;
    font-size: 13px;
    color: #050505;
    margin-bottom: 2px;
}

.comment-time {
    font-weight: 400;
    color: #65676b;
    font-size: 12px;
}

.comment-actions {
    font-size: 12px;
    color: #65676b;
    margin-left: 10px;
    margin-top: 2px;
    font-weight: 600;
}

.comment-actions span.likes {
    font-weight: 400;
    margin-left: 5px;
}

/* Footer (Editorial) */
.editorial-footer {
    padding: 30px 0;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.editorial-footer a {
    color: #888;
    text-decoration: none;
    margin: 0 5px;
}

/* Responsive */
@media (max-width: 600px) {
    .main-article {
        padding: 20px;
    }

    .main-headline {
        font-size: 26px;
    }

    .intro-text,
    p {
        font-size: 18px;
    }
}