/**
 * EZ Golf Academy - Programs Page
 *
 * Page-specific styles only. Shared tokens, buttons, and card
 * classes come from home.css (loaded as a dependency).
 *
 * @package EZGolfAcademy
 * @since   1.1.0
 */

/* =========================================
   Page shell
   ========================================= */

.pg-programs {
    background: var(--ez-surface);
}

/* =========================================
   1. Page Hero
   ========================================= */

.pg-hero {
    padding: 80px 0 60px;
    background: var(--ez-surface);
}

.pg-hero__title {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--ez-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.pg-hero__sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--ez-text-muted);
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pg-hero {
        padding: 60px 0 40px;
    }
}

/* =========================================
   2. Card Grid (2-col, not 4)
   ========================================= */

.pg-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

@media (max-width: 700px) {
    .pg-cards__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   3. Bullet list inside cards
   ========================================= */

.pg-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.pg-card-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--ez-text-muted);
    margin-bottom: 6px;
}

.pg-card-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ez-gold);
}

/* =========================================
   4. "Not sure" CTA strip
   ========================================= */

.pg-notsure {
    background: var(--ez-surface);
}

.pg-notsure__sub {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ez-text-muted);
    max-width: 520px;
    margin: 0 auto 28px;
}
