/* ===== PROGRAMS (VISUAL LIKE IMAGE) ===== */
.programs-section {
    background: #fff;
    padding: 70px 0 0;
}

/* blok background gelap seperti “panggung” */
.programs-stage {
    margin-top: 22px;
    padding: 46px 0 70px;
    background: radial-gradient(
            1200px 500px at 50% 0%,
            rgba(255, 255, 255, 0.12),
            transparent 55%
        ),
        linear-gradient(180deg, #2b2b2b 0%, #1f1f1f 55%, #8f8f8f 100%);
}

/* grid 4 kolom */
.program-grid-visual {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

/* card putih rounded besar */
.program-card-visual {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    min-height: 680px;
}

/* area gambar atas */
/* .program-visual{
  padding: 18px 18px 0;
} */

.program-visual {
    width: 100%;
    height: 210px;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.program-visual img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 18px 0px;
    display: block;
}

/* body */
.program-content {
    padding: 18px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.program-title {
    text-align: center;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: #111827;
    margin: 12px 0 12px;
}

.program-desc {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 18px;
    flex: 1; /* dorong tombol ke bawah */
}

/* tombol gold pill */
.program-btn {
    background: #c78a2a;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 800;
    width: 100%;
}

.program-btn:hover {
    background: #b77a1e;
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .program-grid-visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .program-card-visual {
        min-height: 640px;
    }
}

@media (max-width: 576px) {
    .program-grid-visual {
        grid-template-columns: 1fr;
    }
    .program-card-visual {
        min-height: auto;
    }
    .program-title {
        font-size: 20px;
    }
}
