/* CSS Original pour desktop */
.actus__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
}
.actusMain {
    grid-area: 1 / 1 / 3 / 3;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    background-color: var(--color-rouge);
}
.actusSub {
    position: relative;
    grid-area: 1 / 3 / 2 / 4;
    overflow: hidden;
    border: none;
    border-radius: 20px;
}
.actusSub:nth-child(3) {
    grid-area: 2 / 3 / 3 / 4;
}
.actusMain img {
    height: 410px;
    width: 100%;
    object-fit: cover;
}
.actusMain h3 {
    color: white;
    text-transform: none;
    font-family: 'Karma', sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1;
    display: flex;
    padding: 0 .75rem;
    height: 190px;
    align-items: center;
    margin-bottom: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.actusMain h3 a{
    color: #fff;
    text-decoration: none;
}
.actusSub h3 {
    font-size: 1.25rem;
    font-weight: 700;
}
.actusSub h3 a {
    color: var(--color-gris);
    text-decoration: none;
}
.actusSub p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gris);
    transition: all .8s;
}
.actusSub .hover {
    overflow: hidden;
}
.actu__text {
    padding: .875rem;
}
.item {
    cursor: pointer;
}
.item:hover img {
    transform: scale(1.1);
}
.item:hover a,
.item:hover p {
    color: var(--color-rouge);
}
.paragraph__actus .actusMain:hover h3 a {
    color: #fff;
}
.actusMain .hover {
    border-radius: 0;
}
.actusSub p.theme {
    background-color: var(--color-rouge);
    padding: .75rem .875rem .5rem;
    min-height: 45px;
    width: 100%;
    display: flex;
    align-items: center;
    font-family: 'Karma';
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}
.actusSub::after {
    height: calc(100% - 110px);
}
@media (max-width: 800px){
    .actus__wrapper {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .list__actus .col-md-4 {
        flex-basis: 100%;
    }
}

/* ================================
   BREAKPOINTS RESPONSIVE
   ================================ */

/* Breakpoint 1440px et moins */
@media (max-width: 1440px) {
    .actus__wrapper {
        gap: 20px;
    }
    
    .actusMain img {
        height: 380px;
    }
    
    .actusMain h3 {
        font-size: 2rem;
        height: 170px;
        padding: 0 .6rem;
    }
    
    .actusSub h3 {
        font-size: 1.2rem;
    }
    
    .actusSub p {
        font-size: 0.85rem;
    }
}

/* Breakpoint 1200px et moins */
@media (max-width: 1200px) {
    .actus__wrapper {
        gap: 18px;
    }
    
    .actusMain img {
        height: 350px;
    }
    
    .actusMain h3 {
        font-size: 1.8rem;
        height: 150px;
        padding: 0 .5rem;
    }
    
    .actusSub h3 {
        font-size: 1.1rem;
    }
    
    .actusSub p {
        font-size: 0.8rem;
    }
    
    .actu__text {
        padding: .75rem;
    }
    
    .actusSub p.theme {
        font-size: 0.95rem;
        padding: .65rem .75rem .45rem;
    }
}

/* Breakpoint 800px et moins */
@media (max-width: 800px) {
    .actus__wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .actusMain {
        grid-area: unset;
        order: 1;
    }
    
    .actusSub {
        grid-area: unset;
        order: 2;
    }
    
    .actusSub:nth-child(3) {
        grid-area: unset;
        order: 3;
    }
    
    .actusMain img {
        height: 250px;
    }
    
    .actusMain h3 {
        font-size: 1.5rem;
        height: 120px;
        padding: 0 .75rem;
    }
    
    .actusSub h3 {
        font-size: 1rem;
    }
    
    .actusSub p {
        font-size: 0.875rem;
    }
    
    .actu__text {
        padding: .65rem;
    }
    
    .actusSub p.theme {
        font-size: 0.9rem;
        padding: .6rem .65rem .4rem;
    }
}

/* Breakpoint 600px et moins */
@media (max-width: 600px) {
    .actus__wrapper {
        gap: 15px;
    }
    
    .actusMain img {
        height: 200px;
    }
    
    .actusMain h3 {
        font-size: 1.25rem;
        height: 100px;
        padding: 0 .5rem;
        line-height: 1.2;
    }
    
    .actusSub h3 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .actusSub p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .actu__text {
        padding: .5rem;
    }
    
    .actusSub p.theme {
        font-size: 0.85rem;
        padding: .5rem .5rem .35rem;
        min-height: 40px;
    }
    
    .actusMain,
    .actusSub {
        border-radius: 15px;
    }
    
    .actusMain h3 {
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }
}