/* Shared layout for listing pages (Latest + Trending) */
:root {
    --primary-red: #d92525;
    --dark-red: #b31e1e;
    --text-light: #1c1c1e;
    --text-muted: #6b6b6b;
    --bg-card: #ffffff;
    --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.page-hero {
    padding: 90px 0 60px;
    background: linear-gradient(135deg, #fdfdfd, #f1f1f1);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 35px;
    align-items: center;
}

.hero-copy-block h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin: 12px 0 14px;
    font-weight: 800;
}

.hero-subhead {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
}

.eyebrow {
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-red);
    font-size: 0.9rem;
}

.hero-actions {
    margin-top: 20px;
}

.hero-actions .hero-btn {
    background: var(--primary-red);
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-actions .hero-btn:hover {
    background: var(--dark-red);
    transform: translateY(-1px);
}

.feature-panel {
    background: var(--bg-card);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    min-height: 260px;
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-placeholder {
    display: grid;
    place-items: center;
    background: #f3f3f3;
    color: var(--primary-red);
    font-size: 2rem;
}

.feature-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-title a {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
}

.feature-title a:hover {
    color: var(--primary-red);
}

.feature-summary {
    color: var(--text-muted);
    line-height: 1.6;
}

.read-more {
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    margin-top: 6px;
}

.read-more:hover {
    color: var(--dark-red);
}

.page-section {
    padding: 55px 0 100px;
    background: #ffffff;
}

.page-articles .article-grid {
    margin-top: 0;
}

.page-articles .article-card {
    background: #fff;
    border: 1px solid #ebebeb;
    color: var(--text-light);
    box-shadow: var(--shadow-soft);
}

.page-articles .article-icon {
    background: #f1f1f1;
    color: var(--primary-red);
}

.page-articles .article-summary {
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-copy-block h1 {
        font-size: 2.1rem;
    }

    .feature-panel {
        grid-template-columns: 1fr;
    }
}
