/* ============================================
   Blue Chip Analytics - Home Page Styles
   Used by: index_home.php
   ============================================ */

/* ── Identity / intro ─────────────────────────────────────────────────────── */

.home-intro-section {
    margin-bottom: 12px;
}

/* .home-h1 replaced by base.css h1.page-title */

.home-identity {
    font-size: 0.95em;
    color: var(--color-text-body);
    line-height: 1.6;
}

/* ── Section headings (tools, games) ─────────────────────────────────────── */

.home-section-heading {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--color-brand-dark);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--color-border-mid);
}

/* ── Freshness strip ─────────────────────────────────────────────────────── */

.home-freshness-strip {
    margin-bottom: 12px;
}

.home-freshness-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.home-freshness-item {
    font-size: 0.9em;
    color: var(--color-text-body);
    line-height: 1.5;
}

.home-freshness-icon {
    margin-right: 6px;
}

.home-freshness-label {
    font-weight: 600;
    color: var(--color-brand-dark);
    margin-right: 4px;
}

.home-freshness-link {
    margin-left: 6px;
    font-size: 0.85em;
    white-space: nowrap;
}

.home-freshness-updated {
    font-size: 0.8em;
    color: #888;
    margin-top: 8px;
}

.home-freshness-offseason {
    font-size: 0.9em;
    color: #666;
}

/* ── Tools grid ──────────────────────────────────────────────────────────── */

.home-tools-section {
    margin-bottom: 12px;
}

.home-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.home-tool-card .section-title {
    margin-bottom: 8px;
}

.home-tool-card .section-title a {
    color: inherit;
    text-decoration: none;
}

.home-tool-card .section-title a:hover {
    text-decoration: underline;
}

.home-tool-card p {
    font-size: 0.875em;
    color: var(--color-text-body);
    line-height: 1.55;
}

/* ── Top games table ─────────────────────────────────────────────────────── */

.home-games-section {
    margin-bottom: 12px;
}

.home-games-intro {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 8px;
}

.home-games-table {
    width: 100%;
    margin-bottom: 10px;
}

.home-games-hub-link {
    font-size: 0.875em;
    text-align: right;
}

/* ── About / teams blocks ────────────────────────────────────────────────── */

.home-about-section,
.home-teams-section {
    margin-bottom: 12px;
}

.home-about-section p,
.home-teams-section p {
    font-size: 0.9em;
    color: var(--color-text-body);
    line-height: 1.6;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
    .home-tools-grid {
        grid-template-columns: 1fr;
    }

    .home-games-table th:nth-child(3),
    .home-games-table td:nth-child(3) {
        display: none; /* hide Line column on very small screens */
    }
}
