/* css/reviews-news.css */

/* Hero Showcase Banner Layout */
.news-hero-showcase {
    background: var(--bg-secondary);
    padding: 30px 0;
}

.hero-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.main-featured-story {
    position: relative;
    height: 440px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.main-featured-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 25px 25px 25px;
    background: linear-gradient(transparent, rgba(18, 24, 38, 0.95));
    color: #fff;
    box-sizing: border-box;
}

.news-badge-tag {
    background: var(--primary-color);
    color: var(--text-on-primary, #000);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.story-overlay h1 {
    font-size: 28px;
    margin: 12px 0 8px 0;
    font-weight: 700;
    line-height: 1.3;
}

.story-overlay p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 15px;
    line-height: 1.5;
}

.meta-date {
    font-size: 12px;
    opacity: 0.7;
}

/* Side Stories Stack Columns */
.side-stories-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-story-card {
    position: relative;
    height: 210px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mini-story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-story-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px 15px 15px;
    background: linear-gradient(transparent, rgba(18, 24, 38, 0.9));
    color: #fff;
    box-sizing: border-box;
}

.tag-alert {
    background: var(--primary-color);
    color: var(--text-on-primary, #000);
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
}

.mini-story-content h3 {
    font-size: 14px;
    margin: 6px 0 0 0;
    font-weight: 600;
    line-height: 1.4;
}

/* Main Two-Column Magazine Grid Layout */
.magazine-layout-area {
    padding: 50px 0;
    background: var(--bg-primary);
}

.magazine-grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.sub-magazine-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    color: var(--text-primary);
}

/* News Article Feed Cards */
.news-stream-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-row-card {
    display: flex;
    gap: 20px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.news-row-card img {
    width: 200px;
    height: 125px;
    object-fit: cover;
    border-radius: 6px;
    background: var(--bg-secondary);
}

.news-row-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-row-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.4;
}

.news-row-details p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Review Aside Cards Styling */
.reviews-stream-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-aside-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.review-aside-img-box {
    position: relative;
    height: 130px;
}

.review-aside-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-score-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--text-on-primary, #000);
    padding: 3px 8px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 4px;
}

.review-aside-details {
    padding: 15px;
}

.review-aside-details h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.review-verdict {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Responsive Scaling Overrides */
@media (max-width: 991px) {
    .hero-news-grid, .magazine-grid-container {
        grid-template-columns: 1fr;
    }
    .main-featured-story {
        height: 320px;
    }
    .story-overlay h1 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .news-row-card {
        flex-direction: column;
    }
    .news-row-card img {
        width: 100%;
        height: 160px;
    }
}