.itsolu-program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.itsolu-program-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(31, 43, 85, .10);
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(31, 43, 85, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.itsolu-program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(31, 43, 85, .13);
}

.itsolu-program-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

.itsolu-program-card__body {
    padding: 24px;
}

.itsolu-program-card__badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef1ff;
    color: #4964db;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.itsolu-program-card h3 {
    margin: 0 0 12px;
}

.itsolu-program-card h3 a {
    color: inherit;
    text-decoration: none;
}

.itsolu-program-card__meta {
    margin-top: 18px;
    color: #667085;
    font-size: 14px;
}

.itsolu-program-card__link {
    display: inline-block;
    margin-top: 18px;
    font-weight: 700;
    text-decoration: none;
}

.itsolu-empty {
    padding: 20px;
    border: 1px dashed #c9d0e4;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .itsolu-program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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