/* PROGRAM BANNER SECTION */
.program-updates {
    padding: 2rem 1.5rem;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
}

.program-updates__container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.program-updates__banner {
    display: block;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    /* Subtle box shadow for premium feel, matching existing cards but very light */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.program-updates__banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Ensure focus states look good for accessibility */
.program-updates__banner:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 4px;
}

.program-updates__banner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain; /* Prevents distortion */
    border-radius: inherit; /* Follows the parent's border radius */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .program-updates {
        padding: 2rem 1rem;
    }
    
    .program-updates__banner {
        border-radius: 12px; /* Slightly smaller radius on mobile */
    }
}

@media (max-width: 480px) {
    .program-updates {
        padding: 1.5rem 12px; /* Small horizontal margin on mobile */
    }
    
    .program-updates__banner {
        border-radius: 8px;
    }
}
