.hero-tertiary {
    padding: 0 20px;
}
.hero-tertiary--container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
@media screen and (min-width: 768px) {
    .hero-tertiary .co-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.hero-tertiary .co-text .co-text--content p {
    text-align: center;
}
.hero-tertiary .co-text h1 {
    text-align: center;
    margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
    .hero-tertiary .co-text .uptitle {
        text-align: center;
    }
}
@media screen and (min-width: 768px) {
    .hero-tertiary .co-text p {
        text-align: center;
    }
}
.hero-tertiary .co-text .article-infos {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}
.hero-tertiary .co-text .article-infos span {
    font-family: var(--roboto);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: var(--neutre-60);
}
.hero-tertiary .co-text .article-infos span:not(:first-child) {
    display: flex;
    gap: 16px;
    align-items: center;
}
.hero-tertiary .co-text .article-infos span:not(:first-child)::before {
    content: "";
    display: block;
    height: 10px;
    width: 1px;
    background-color: var(--neutre-60);
}
.hero-tertiary--media {
    height: 340px;
    position: relative;
}
@media screen and (min-width: 768px) {
    .hero-tertiary--media {
        height: 434px;
    }
}
.hero-tertiary--media img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero-tertiary--media::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65.09%, rgba(0, 0, 0, 0.6) 83.41%);
    height: 100%;
    width: 100%;
}
