/* ============================================
   THE RINK REPORT — Index / Archive Styles
   Homepage only
   ============================================ */

.intro-section {
    margin-bottom: 60px;
    text-align: center;
}

.intro-headline {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.intro-text {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Weekly Archive Grid */
.archive-section {
    margin-top: 60px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 40px;
    text-align: center;
}

.week-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.week-card {
    background: var(--off-white);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.week-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.15);
    border-color: var(--electric-pink);
}

.week-card .week-badge {
    margin-bottom: 20px;
}

.week-headline {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.2;
}

.week-date {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.week-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.week-highlight {
    font-size: 14px;
    color: var(--electric-pink);
    font-weight: 700;
}

/* Responsive — Index */
@media (max-width: 768px) {
    .week-grid {
        grid-template-columns: 1fr;
    }
}
