/* Featured Breaking News Section */
.featured-breaking-section {
    margin: 40px auto;
    width: 100%;
    max-width: var(--max-width);
    padding: 0 20px;
}

.featured-breaking-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 45px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-breaking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.featured-breaking-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.featured-breaking-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-breaking-card:hover .featured-breaking-img {
    transform: scale(1.02);
}

.featured-breaking-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #dc2626;
    color: #fff;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
    z-index: 10;
}

.featured-breaking-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.featured-breaking-label {
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-breaking-label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 1; }
}

.featured-breaking-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.featured-breaking-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-breaking-card:hover .featured-breaking-title a {
    color: var(--primary);
}

.featured-breaking-summary {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark-theme .featured-breaking-summary {
    color: #ccc;
}

.featured-breaking-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}

.dark-theme .featured-breaking-meta {
    color: #aaa;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.featured-breaking-btn {
    align-self: flex-start;
    background: #0A2747;
    color: #fff;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dark-theme .featured-breaking-btn {
    background: var(--primary);
    color: #fff;
}

.featured-breaking-btn:hover {
    background: var(--primary);
    transform: translateX(3px);
}

/* Responsive styles */
@media (max-width: 992px) {
    .featured-breaking-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .featured-breaking-img-wrapper {
        height: 300px;
    }
    .featured-breaking-content {
        padding: 30px;
    }
    .featured-breaking-title {
        font-size: 1.8rem;
    }
}

/* Advertisement System - Original Premium Design */
.ad-container {
    margin: 60px 0;
}

.ad-placeholder {
    background: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

body.dark-theme .ad-placeholder {
    background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%);
    border-color: #333;
}

.ad-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
    border-style: solid;
}

.ad-leaderboard {
    width: 970px;
    height: 250px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.ad-sidebar {
    width: 300px;
    height: 250px;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.real-ad, .real-ad a {
    width: 100%;
    height: 100%;
    display: block;
}

.real-ad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ad-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

body.dark-theme .ad-tagline { color: #fff; }

.ad-subtext {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    max-width: 100%;
    font-weight: 500;
}

body.dark-theme .ad-subtext { color: #aaa; }

.ad-cta-btn {
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.ad-cta-btn:hover {
    background: var(--primary-color);
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(0, 31, 63, 0.4);
    color: #fff;
}


/* Featured & Latest Grids */
.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.hero-main {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-card {
    position: relative;
    height: 237.5px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-card:hover .hero-img, .hero-main:hover .hero-img { transform: scale(1.05); }

.hero-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    color: #fff;
}

.hero-overlay h2 {
    font-size: 2.2rem;
    margin-top: 10px;
    line-height: 1.2;
    font-weight: 900;
}

.hero-card h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-top: 5px;
}

.hero-cat {
    background: var(--secondary-color);
    padding: 4px 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 900;
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.news-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.news-card-img {
    height: 220px;
    overflow: hidden;
}

.news-card-img img { width: 100%; height: 100%; object-fit: cover; }

.news-card-content { padding: 25px; }

.news-card-cat {
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--text-color);
}

.news-card-meta {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

/* Submit Story Section Centered */
.submit-story-section {
    text-align: center;
    border-radius: 0;
}

.submit-story-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: #f0f0f0;
}

/* Follow Us On Section */
.follow-section {
    background: #fdfdfd;
    border-top: 1px solid var(--border-color);
    padding: 80px 0;
}

body.dark-theme .follow-section { background: #0d0d0d; }

.follow-subtitle {
    margin: 15px auto 40px;
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

body.dark-theme .follow-subtitle { color: #aaa; }

.social-icons-large {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.social-icon {
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    color: #fff;
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.social-icon:hover {
    transform: translateY(-12px) rotate(8deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

.social-icon.fb { background: #3b5998; }
.social-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.yt { background: #ff0000; }
.social-icon.wa { background: #25d366; }
.social-icon.tg { background: #0088cc; }

@media (max-width: 768px) {
    .social-icon { width: 70px; height: 70px; font-size: 2.2rem; border-radius: 15px; }
    .social-icons-large { gap: 20px; }
}

/* Small News List (Trending & Sidebar) */
.small-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.small-news-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.small-news-img {
    width: 100px;
    height: 75px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.small-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-news-item h4 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 0;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.small-news-item h4 a:hover {
    color: var(--secondary-color);
}

/* Hero Summary visibility */
@media (max-width: 480px) {
    .hero-summary {
        display: none !important;
    }
}

