.texte-media-simple {
    color: var(--neutre-100);
    padding: 32px 20px;
    flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
    .texte-media-simple {
        padding: 64px 20px;
    }
}
.texte-media-simple.has-background {
    background: var(--ocre-20);
}
.texte-media-simple--container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
@media screen and (min-width: 992px) {
    .texte-media-simple--container {
        flex-direction: row;
        align-items: center;
        gap: clamp(32px, 9.44vw, 136px);
    }
    .texte-media-simple--container.reverse {
        flex-direction: row-reverse;
    }
}
.texte-media-simple--content p {
    color: #646363;
}
.texte-media-simple--content .co-text--content ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.texte-media-simple--content .co-text--content ul li{
    font-family: var(--roboto);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.texte-media-simple--content .co-text--content ul + h2 {
    margin-top: 32px;
}

.texte-media-simple--content .co-text--content ul + p {
    margin-top: 32px;
}

.texte-media-simple--media {
    height: 400px;
    position: relative;
}
@media screen and (min-width: 992px) {
    .texte-media-simple--media {
        min-height: 480px;
        /* height: auto; */
        width: 100%;
        max-width: 592px;
        flex-shrink: 0;
    }
}
.texte-media-simple--media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    border-radius: 20px;
}
.texte-media-simple--link {
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 8px 16px;
    border-radius: 5px;
    background: var(--white);
    display: flex;
    gap: 8px;
}
@media screen and (min-width: 992px) {
    .texte-media-simple--link {
        left: 32px;
        top: 32px;
    }
}
.texte-media-simple--link .picto {
    width: 24px;
    height: 24px;
    background: var(--ocre-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.texte-media-simple--link .picto::before {
    content: "";
    width: 12px;
    height: 12px;
    -webkit-mask: url("../../../../../../themes/apo/resources/images/icons/arrow-right.svg") no-repeat center;
    mask: url("../../../../../../themes/apo/resources/images/icons/arrow-right.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--white);
}
.texte-media-simple--link .title {
    font-family: var(--robotoSlab);
    color: var(--ocre-100);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.texte-media-simple--link .desc {
    font-family: var(--robotoSlab);
    color: #646363;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.keynumbers {
    padding: 0 20px;
    width: 100%;
    margin: 32px auto 0 auto;
}
@media screen and (min-width: 768px) {
    .keynumbers {
        padding: 0 20px 0 20px;
        margin: 64px auto 0 auto;
    }
}
.keynumbers.has-background {
    background-color: var(--ocre-20);
}
.th-dark .keynumbers {
    background: none;
}
.th-light .keynumbers {
    background: var(--ocre-20);
}
.keynumbers--container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media screen and (min-width: 1024px) {
    .keynumbers--container {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}
.keynumbers--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
@media screen and (min-width: 992px) {
    .keynumbers--item {
        flex: 1;
        padding: 16px 30px;
    }
}
.keynumbers--item .number {
    font-family: var(--robotoSlab);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    color: var(--ocre-100);
}
@media screen and (min-width: 992px) {
    .keynumbers--item .number {
        font-size: 1.75rem;
        line-height: 36px;
    }
}
.th-dark .keynumbers--item .number,
.th-light .keynumbers--item .number {
    color: var(--ocre-100);
}
.keynumbers--item p {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--neutre-60);
}
.th-dark .keynumbers--item p,
.th-light .keynumbers--item p {
    color: var(--neutre-60);
}
