.program-button > a:not(:last-child) {
    margin-bottom: 6px;
}
.program-button>a.active {
    background-color: var(--color-secondary);
    color: var(--white);
}

.program-desc {
    margin-bottom: 20px;
}
@media (min-width: 992px) {
    .program-desc {
        padding-right: 50px;
    }
}

.program-list {
    background-color: var(--gray-200);
    border-radius: 32px;
    padding: 22px 32px;
}
.program-list:not(:last-child) {
    margin-bottom: 30px;
}
    .program-list h3{
        margin-bottom: 10px;
        line-height: 116%;
    }

.program-titre {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.program-titre::after {
    content: "\e91f";
    font-family: icomoon;
    flex: 0 0 36px;
    height: 36px;
    background-color: var(--gray-400);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    border-radius: 50%;
    transform: rotate(90deg);
}
    .program-titre > span{
        font-size: 2rem;
        font-weight: bold;
        color: var(--gray-600);
        margin-right: 24px;
    }
    .program-titre > img{
        flex: 0 0 94px;
        width: 94px;
        height: 94px;
        object-fit: cover;
        border-radius: 50%;
        margin-right: 24px;
    }

.program-titre-item {
    flex: 0 0 100%;
    order: 4;
}
@media (min-width: 768px) {
    .program-titre-item {
        flex: 1;
        margin-right: 12px;
        order: initial;
    }
}
    .program-titre-item > span{
        font-size: 1.4rem;
        background-color: var(--white);
        padding: 2px 8px;
        border-radius: 32px;
        margin-bottom: 4px;
        display: inline-block;
    }
    .program-titre-item > h4{
        margin: 0;
        font-size: 1.8rem;
        color: var(--black);
        line-height: 122%;
    }
    .program-titre-item > p{
        font-size: 1.4rem;
    }

.program-contenu {
    font-size: 1.4rem;
    display: none;
    padding-top: 22px;
}

.program-content {
    border-top: 1px solid var(--gray-400);
    padding: 12px 0;
}
.program-content:last-child {
    border-bottom: 1px solid var(--gray-400);
}

.program-info {
    margin-bottom: 38px;
}
@media (min-width: 992px) {
    .program-info {
        position: sticky;
        top: 0;
        margin-bottom: 0;
    }
}
