.programmes {
}
.programmes .wrapper {
}
.programmes h2 {
    font-size: 59px;
    color: var(--color-title);
    font-weight: 900;
}
.programmes .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.programmes .card {
    position: relative;
    width: 520px;
    max-width: 100%;
    min-height: 342px;
    background: white;
    box-shadow: 0 0 30px rgb(0 0 0 / 15%);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 100px;
    text-decoration: none;
    color: #222;
    transition: 0.2s;
}
.programmes .card:hover {
    transform: scale(1.05);
}
.programmes .card-image {
    height: 185px;
    width: 100%;
    object-fit: cover;
    border-bottom: 10px solid var(--color-card);
}
.programmes h3 {
    font-size: 27px;
    margin: 0;
    margin-top: 15px;
    padding: 0 26px;
    color: var(--color-card);
    font-weight: 900;
    line-height: 1;
}
.programmes p {
    font-size: 13px;
    padding: 0 26px;
    max-width: 416px;
    font-family: var(--font-osans);
}
.programmes .arrow {
    position: absolute;
    z-index: 1;
    bottom: 35px;
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 32px;
    transition: 0.2s;
}
.programmes .arrow:hover {
    filter: brightness(0.8);
}
.programmes .arrow svg,
.programmes .arrow svg path {
    fill: var(--color-card);
}

@media screen and (max-width: 1100px) {
    .programmes .card {
        width: auto;
        flex: 0 48%;
    }
    .programmes p {
        margin-right: 90px;
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .programmes .card {
        flex: 0 100%;
    }
    .programmes h2 {
        font-size: 49px;
    }
}
