.realisation {
    display: flex;
    flex-direction: column;
    padding: 0 calc(var(--gutters));
}
.article-head {
    display: flex;
    flex-direction: column;
    background-color: var(--wp--preset--color--beige);
    padding: 2rem calc(var(--gutters) * 2) 0;
}
.realisation-head{
    display: flex;
    width: 100%;
}
.article-head-title, .realisation-head-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.article-types, .realisation-types {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.article-types p, .realisation-types p, .realisation-types a, .article-types a {
    color: var(--wp--preset--color--bleu-fonce);
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
}
.realisation-types p, .realisation-types a {
    color: var(--wp--preset--color--noir);
}
.article-types span, .realisation-types span {
    width: 5px;
    height: 5px;
    background-color: var(--wp--preset--color--bleu);
}
.article-head-title h1{
    color: var(--wp--preset--color--bleu);
    font-size: 25px;
    font-weight: 400;
}
.article-head-thumbnail{
    display: flex;
    width: 100%;
    height: 250px;
    position: relative;
    margin-top: 2rem;
}
.article-head-thumbnail img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.article-content{
    padding: calc(2rem + 250px) calc(var(--gutters) * 2) 0;
}
.single-articles, .realisations-articles{
    display: flex;
    flex-direction: column;
    background-color: var(--wp--preset--color--beige);
    gap: 4rem;
    padding: 4rem calc(var(--gutters) * 2);
}
.single-articles__header, .realisations-articles__header{
    display: flex;
    justify-content: space-between;
}
.single-articles__header-wrap, .realisations-articles__header-wrap{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.single-articles__title, .realisations-articles__title{
    display: flex;
    color: var(--wp--preset--color--bleu);
    font-size: 13px;
    font-weight: 500;
    line-height: 22.51px;
    letter-spacing: 0.39px;
    text-transform: uppercase;
    align-items: center;
    gap: 1rem;
    margin: 0;
}
.single-articles__title::before, .realisations-articles__title::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: var(--wp--preset--color--bleu);
}
.single-articles__text h3, .realisations-articles__text h3 {
    color: var(--wp--preset--color--bleu);
    font-size: 33px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}
.single-articles__text h3 strong, .realisations-articles__text h3 strong {
    font-size: 31px;
    font-family: "dunbar-tall", sans-serif;
}
.single-articles__list, .realisations-articles__list{
    display: flex;
    justify-content: space-between;
    
}
.single-articles__item, .realisations-articles__item{
    display: flex;
    width: 32%;
    background-color: var(--wp--preset--color--blanc);
    border-radius: 5px;
    min-height: 315px;
    transition: background-color 0.3s ease-in-out;
}
.single-articles__item:hover, .realisations-articles__item:hover{
    background-color: var(--wp--preset--color--bleu);
}
.single-articles__item a, .realisations-articles__item a{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 2rem;
    justify-content: space-between;
}
.single-articles__item-head, .realisations-articles__item-head{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.single-articles__category, .realisations-articles__category{
    color: var(--wp--preset--color--bleu);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}
.single-articles__item:hover .single-articles__category, .realisations-articles__item:hover .realisations-articles__category{
    color: var(--wp--preset--color--blanc);
}
.single-articles__item-title, .realisations-articles__item-title{
    color: var(--wp--preset--color--noir);
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    width: 100%;
    transition: color 0.3s ease-in-out;
}
.single-articles__item:hover .single-articles__item-title, .realisations-articles__item:hover .realisations-articles__item-title{
    color: var(--wp--preset--color--blanc);
}
.single-articles__cta, .realisations-articles__cta{
    display: flex;
    color: var(--wp--preset--color--bleu);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    width: fit-content;
    transition: color 0.3s ease-in-out;
}
.single-articles__item:hover .single-articles__cta, .realisations-articles__item:hover .realisations-articles__cta{
    color: var(--wp--preset--color--blanc);
}
.single-articles__cta::after, .realisations-articles__cta::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--bleu);
    transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.single-articles__cta:hover::after, .realisations-articles__cta:hover::after {
    width: 0;
}
.single-articles__item:hover .single-articles__cta::after, .realisations-articles__item:hover .realisations-articles__cta::after {
    background-color: var(--wp--preset--color--blanc);
}
.single-articles__date, .realisations-articles__date{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.single-articles__date-day, .realisations-articles__date-day{
    color: var(--wp--preset--color--bleu);
    font-size: 29.167px;
    font-weight: 700;
    line-height: 1;
    transition: color 0.3s ease-in-out;
}
.single-articles__item:hover .single-articles__date-day, .realisations-articles__item:hover .realisations-articles__date-day{
    color: var(--wp--preset--color--blanc);
}
.single-articles__date-month, .realisations-articles__date-month{
    color: var(--wp--preset--color--bleu);
    text-align: center;
    font-size: 12.5px;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}
.single-articles__item:hover .single-articles__date-month, .realisations-articles__item:hover .realisations-articles__date-month{
    color: var(--wp--preset--color--blanc);
}
.realisations-archive__list{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 2%;
	padding-top: 3rem;
}
.last-realisations__item{
	display: flex;
	width: 32%;
	background-color: var(--wp--preset--color--blanc);
	border-radius: 5px;
	min-height: 315px;
	margin-bottom: 1.5rem;
	transition: background-color 0.3s ease-in-out;
}
.last-realisations__item:hover{
	background-color: var(--wp--preset--color--bleu);
}
.last-realisations__item a{
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	padding: 1rem 2rem;
	justify-content: space-between;
    position: relative;
}
.last-realisations__item-title{
	color: var(--wp--preset--color--blanc);
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    position: relative;
    z-index: 1;
    margin-top: auto;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.last-realisations__item-title span:nth-child(2){
    width: 5px;
    height: 5px;
    background-color: var(--wp--preset--color--blanc);
}
.last-realisations__image{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
}
.last-realisations__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}
.last-realisations__image::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(180deg, rgba(58, 58, 58, 0.00) 72.03%, #3A3A3A 100%);
    transition: opacity 0.3s ease-in-out, background 0.3s ease-in-out;
}
.last-realisations__item:hover .last-realisations__image::after{
    opacity: 1;
    background: linear-gradient(180deg, rgba(58, 58, 58, 0.00) 0%, #3A3A3A 100%);
}
.actus-cat{
    display: none;
}
@media (max-width: 768px) {
    .single-articles, .realisations-articles{
        gap: 2rem;
    }
    .single-articles__list, .realisations-articles__list{
        flex-direction: column;
        gap: 2rem;
    }
    .single-articles__item, .realisations-archive__item{
        width: 100%;
        min-height: 250px;
    }
    .single-articles__header, .realisations-articles__header{
        flex-direction: column;
        gap: 1rem;
    }
    .single-articles__text h3, .realisations-articles__text h3 {
        font-size: 23px;
    }
    .single-articles__text h3 strong, .realisations-articles__text h3 strong {
        font-size: 21px;
    }
}