/*
 * tnt-pastblasts.css
 * TNT | TechNoviceTools | Past Blasts page
 * Used by: past_blasts.html
 */

#hero {
    min-height: 46vh;
    background:
        linear-gradient(135deg, rgba(14,10,6,0.88) 0%, rgba(92,34,8,0.70) 100%),
        url('../images/blast.png') center center / cover no-repeat;
    padding: 4.5rem 1rem;
}

.hero-content { max-width: 760px; }

#pastIntro {
    background: #f4f5f7;
    padding: 4.25rem 0 3rem;
}

#pastIntro p {
    color: #424242;
    line-height: 1.72;
}

.past-callout {
    background: var(--tnt-dark);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 1.25rem 1.2rem;
}

.past-callout h3 {
    font-family: var(--boogaloo);
    font-size: 1.35rem;
    color: var(--tnt-amber);
    margin-bottom: 0.6rem;
}

.past-callout p {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

#snapshotGrid {
    background: #f4f5f7;
    padding: 0 0 5rem;
}

.snapshot-sub {
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.snapshot-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    background: #fff;
    border: 1.5px solid #d9dce2;
    border-radius: 10px;
    padding: 0.75rem 0.8rem;
    color: var(--tnt-dark);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    min-height: 60px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.snapshot-card i {
    width: 1.1rem;
    text-align: center;
    color: var(--tnt-red);
}

.snapshot-card:hover {
    color: var(--tnt-dark);
    text-decoration: none;
    border-color: var(--tnt-red);
    box-shadow: 0 8px 18px rgba(216,24,39,0.13);
    transform: translateY(-2px);
}
