.content-right {
    grid-column: span 2;


}

.content-right .com,
.content-right .article {
    box-shadow: 0px 4px 4px 0px #C77F05;
    background-color: #FAFAFA;
    padding: 0 20px 20px;
    height: 279px;
    margin-bottom: 30px;
}

.content-right .article {
    height: 600px;

}

.com .rectangle {
    background: var(--clr-orange);
    width: 27px;
    height: 85px;
}

.content-right h3 {
    font-family: var(--ff-primary);
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    text-align: left;
    padding: 20px;

}

.flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.com-detail {
    text-align: left;
    padding-top: 30px;
}

.com-detail p {
    display: flex;
    gap: 10px;

    align-items: center;
    padding-bottom: 20px;
}

.com .rectangle {
    background: var(--clr-orange);
    width: 27px;
    height: 85px;
}

.article .rectangle {
    background: var(--clr-orange);
    width: 27px;
    height: 125px;
}

.article-detail {
    text-align: left;
    padding-top: 30px;
}

.article-recent {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
}

.article-recent p {

    font-weight: 400;
    font-size: 15px;
    text-align: left;

}

.article-recent span{
    font-weight: 300;
}

p.flex {
    font-size: 15px;
    color: #757575;
    padding-bottom: 10px;
}


/* Pour les tablettes (≤ 1024px) */
@media screen and (max-width: 1024px) {
    .content-right {
        grid-column: span 6;
        margin-top: 40px;
    }
}

/* Pour les mobiles (≤ 768px) */
@media screen and (max-width: 768px) {
    .content-right {
        grid-column: span 6;
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .content-right .com,
    .content-right .article {
        width: 100%;
    }

    .article-detail .article-recent {
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }

    /* .article-detail .article-recent img {
      width: 60px;
      height: auto;
    } */

    .article-detail .article-recent p {
        font-size: 14px;
    }

    .content-right h3 {
        font-size: 22px;
    }
}


@media screen and (max-width: 400px) {
    .content-right h3 {
        font-size: 20px;
    }

    .article-recent {
        flex-direction: column;
    }

    .content-right .article {
        height: 100%;
    }
}