/* Base Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: #f7f9fa;
    color: #1a202c;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Red Accent Top Strip */
.top-bar {
    height: 6px;
    background-color: #dc2626;
}

/* Header Styles */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 0;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    font-size: 28px;
    font-weight: 800;
    color: #dc2626;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #dc2626;
}

/* Two-Column Responsive Layout Grid */
.main-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 25px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .main-layout {
        grid-template-columns: 2fr 1fr;
    }
}

/* Generic Image / Box Placeholders */
.image-placeholder {
    background-color: #eddcd9;
    border: 2px dashed #b91c1c;
    color: #991b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
}

/* Left Content Area Style details */
.category-tag {
    background-color: #dc2626;
    color: #ffffff;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 10px;
}

.main-headline h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #111827;
}

.meta-date {
    font-size: 12px;
    color: #718096;
    margin-bottom: 15px;
}

/* Mock Audio Player Component */
.audio-player-mock {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    padding: 10px 15px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #991b1b;
    cursor: pointer;
    margin-bottom: 20px;
}

.play-icon {
    margin-right: 8px;
    font-size: 14px;
}

/* Headline Structural News Collage */
.featured-collage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
    margin-top: 0px;
}

@media (min-width: 576px) {
    .featured-collage {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.sub-feat-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 35px 0;
}

/* Related Content Row Layout */
.section-title {
    font-size: 18px;
    color: #dc2626;
    border-left: 4px solid #dc2626;
    padding-left: 10px;
    margin-bottom: 20px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 576px) {
    .grid-3-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card h3 {
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.4;
    color: #2d3748;
}

/* Sidebar Styling & Widgets */
.sidebar-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ad-placeholder {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
}

.ad-placeholder p {
    font-size: 11px;
    color: #a0aec0;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.widget {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid #dc2626;
    border-radius: 4px;
    padding: 15px;
}

.widget-header {
    font-weight: bold;
    font-size: 16px;
    color: #111827;
    margin-bottom: 15px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 8px;
}

/* Ranking Numeric Ordered List Styling */
.trending-list {
    list-style: none;
}

.trending-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #edf2f7;
}

.trending-list li:last-child {
    border-bottom: none;
}

.rank-num {
    background-color: #fee2e2;
    color: #dc2626;
    font-weight: bold;
    font-size: 14px;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.trending-list p {
    font-size: 13px;
    color: #4a5568;
    cursor: pointer;
}

.trending-list p:hover {
    color: #dc2626;
}

/* Footer Section styling */
.main-footer {
    background-color: #1a202c;
    color: #a0aec0;
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    margin-top: auto;
}