/* ================================
   PROGRAMS GRID
   ================================ */

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.program-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-card-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.program-card h2 {
    margin: 0;
    font-size: 1.25rem;
}

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

.program-card h2 a:hover {
    text-decoration: underline;
}

.program-card-short-description {
    margin: 0;
    color: #555;
}

.program-card-link {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 0.95rem;
    border: 1px solid #333;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    text-align: center;
}

.program-card-link:hover {
    background: #333;
    color: #fff;
}

/* ================================
   MOBILE - 1 column
   ================================ */

@media ( max-width: 768px ) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}
