.actualite-evenement {
    padding: 32px 20px;
}

@media screen and (min-width: 768px) {
    .actualite-evenement {
        padding: 64px 20px;
    }
}

.th-dark .actualite-evenement .tag {
    --border: var(--neutre-100);
    --color: var(--neutre-100);
    --bg: transparent;
    --border-hover: var(--neutre-100);
    --color-hover: var(--white);
    --bg-hover: var(--neutre-100);
}

.th-dark .actualite-evenement .link {
    --color: var(--neutre-100);
    --color-hover: var(--ocre-100);
}

.th-dark .actualite-evenement .link.current {
    --color: var(--ocre-100);
    text-decoration: underline;
}

.th-dore .actualite-evenement .tag {
    --border: var(--ocre-100);
    --color: var(--ocre-100);
    --bg: var(--ocre-20);
    --border-hover: var(--ocre-100);
    --color-hover: var(--white);
    --bg-hover: var(--ocre-100);
}

.th-dore .actualite-evenement .link {
    --color: var(--ocre-100);
    --color-hover: var(--ocre-60);
}

.th-dore .actualite-evenement .link.current {
    --color: var(--ocre-60);
    text-decoration: underline;
}

.th-light .actualite-evenement .tag {
    --border: var(--neutre-100);
    --color: var(--neutre-100);
    --bg: transparent;
    --border-hover: var(--neutre-100);
    --color-hover: var(--white);
    --bg-hover: var(--neutre-100);
}

.th-light .actualite-evenement .link {
    --color: var(--neutre-100);
    --color-hover: var(--ocre-100);
}

.th-light .actualite-evenement .link.current {
    --color: var(--ocre-100);
    text-decoration: underline;
}

.actualite-evenement--container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width:768px) {
    .actualite-evenement--container {
        gap: 48px;
    }
}

.actualite-evenement--container>.btn {
    margin: auto;
}

@media screen and (min-width: 768px) {
    .actualite-evenement--container>.btn {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .actualite-evenement .co-text {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.actualite-evenement .co-text--content:first-child {
    max-width: 592px;
    margin: auto;
}

@media screen and (min-width: 768px) {
    .actualite-evenement .co-text--content:first-child {
        margin: 0;
    }
}

.actualite-evenement .co-text--content:last-child {
    display: none;
}

@media screen and (min-width: 768px) {
    .actualite-evenement .co-text--content:last-child {
        display: flex;
    }
}

.actualite-evenement--list {
    display: flex;
    gap: 32px;
}

.actualite-evenement .owl-dots {
    position: relative;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .actualite-evenement .owl-dots {
        margin-top: 32px;
    }
}

.th-dark .actualite-evenement .owl-dots {
    --dot: var(--neutre-40);
    --current: var(--neutre-100);
}

.th-dore .actualite-evenement .owl-dots {
    --dot: var(--ocre-60);
    --current: var(--ocre-100);
}

.th-light .actualite-evenement .owl-dots {
    --dot: var(--neutre-40);
    --current: var(--neutre-100);
}

@media screen and (min-width: 1024px) {
    .actualite-evenement .owl-dots {
        margin-top: -10px;
        top: -16px;
    }
}

.actualite-evenement .owl-dots .owl-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--dot);
    transition: background-color 0.3s ease;
}

.actualite-evenement .owl-dots .owl-dot.active {
    background-color: var(--current);
}

@media screen and (min-width:1024px) {
    .actualite-evenement .card-actu-event {
        width: calc(100% / 3);
    }
}

@media (hover: hover) {
    .actualite-evenement .card-actu-event {
        cursor: pointer;
    }
}