/* PROGRAMMES GRID LAYOUT */
.programmes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 60px 20px; 
    max-width: 1150px;
    margin: 60px auto;
    text-align: center;
}

/* INDIVIDUAL ITEM */
.programme-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* LINK WRAPPER STYLES */
.programme-link {
    text-decoration: none !important; 
    color: inherit; /* Keeps text black/dark */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.programme-link:hover {
    transform: translateY(-5px); 
}

/* CLEAN CIRCLE CONTAINER WITHOUT BORDERS OR SHADOWS */
.circle-container {
    width: 200px; 
    height: 200px;
    border-radius: 50%; 
    overflow: hidden; 
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 15px;
    background-color: transparent;
}

.circle-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images are not distorted */
}

/* LABELS BELOW IMAGES */
.programme-label {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    text-transform: capitalize;
}

/* CENTERED TITLES */
.section-title-logo {
    text-align: center;
    display: block;
    width: 100%;
    font-size: 18px !important; 
    color: #0073a5;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.cefr-subtitle {
    text-align: center;
    display: block;
    width: 100%;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

/* RESPONSIVE FOR MOBILE DEVICES */
@media (max-width: 950px) {
    .programmes-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
}
