/* Program cards grid + intro crystal (cyber card base: agent-card.css) */

.program-cards-section {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1rem;
}

.program-cards-head {
    text-align: center;
    margin-bottom: 1.25rem;
    max-width: 42ch;
    margin-inline: auto;
}

.program-cards-head h2 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.program-cards-head p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.program-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.15rem;
    width: 100%;
    justify-items: center;
}

.program-card-wrap {
    width: 100%;
    max-width: 360px;
    display: flex;
    justify-content: center;
}

@media (min-width: 900px) {
    .program-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Blue crystal — introduction only */
.briefing-intro--crystal {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 42ch;
}

.briefing-intro-crystal {
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin-bottom: 0.55rem;
    filter: drop-shadow(0 8px 20px rgba(59, 130, 246, 0.28));
}

.info-head--crystal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-head-crystal {
    width: 76px;
    height: 76px;
    object-fit: contain;
    margin-bottom: 0.65rem;
    filter: drop-shadow(0 6px 16px rgba(59, 130, 246, 0.22));
}