/* ===============================
   PAGE
=============================== */
.program-page {
    margin: 0 auto;
}

.program-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ===============================
   CARD
=============================== */
.program-card {
    border-radius: 16px;
    background: #212121;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.program-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

/* IMAGE */
.program-card__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.program-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.program-card__content {
    padding: 16px;
    flex: 1;
}

.program-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.program-card__desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CTA */
.program-card__cta {
    margin: 16px;
    padding: 12px 0;
    border-radius: 10px;
    background: #ea541a;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* EMPTY */
.program-empty {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    color: #999;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .program-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .program-list {
        grid-template-columns: 1fr;
    }
}