.post.default-section {
        padding: 16px var(--margin-section);
}
.post .default-grid {
        margin-top: 16px;
}
.post-column.left {
        position: relative;
        align-self: start;
        grid-column: 1 / span 7;
}
.post-column.right {
        display: flex;
        flex-direction: column;
        row-gap: 16px;
        grid-column: 8 / span 5;
}
.post-column .form {
        top: initial;
        left: 104px;
        bottom: -164px;
}
.post-column.left .post-img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
}
.post-column.right .post-tags{
        display: flex;
        flex-direction: row;
        align-items: center;
        column-gap: 8px;
}
.post-column.right .post-tags .post-tag{
        padding: 2px 10px;
        background-color: var(--pink-color);
        color: var(--dark-pink-color);
        font-size: 14px;
        text-transform: lowercase;
}
.post-column.right .post-tags .post-tag.dans-lhemicycle{
        background-color: var(--green-blue-color);
        color: #fff;
}
.post-column.right .post-tags .post-tag.votre-circonscription{
        background-color: var(--green-color);
        color: var(--dark-color);
}
.post-column.right .post-tags .post-tag.en-commission{
        background-color: var(--dark-pink-color);
        color: #fff;
}
.post-column.right h1 {
        color: var(--dark-pink-color);
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 34px;
}
.post-column.right .post-content h2{
        font-weight: 800;
        margin-top: 16px;
        margin-bottom: 16px;
        font-size: 24px;
        color: var(--dark-pink-color);
}
.post-column.right .post-content h2::after{
        display: none;
}
.post-column.right .post-content h3{
        font-weight: 600;
        font-size: 18px;
        margin-top: 24px;
        margin-bottom: 12px;
}
.post-column.right .post-content h4{
        font-weight: 500;
        font-size: 16px;
        margin-top: 24px;
        margin-bottom: 12px;
}
.post-column.right .post-date {
        color: var(--dark-pink-color);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
}
.post-column.right .chapeau {
        display: block;
        margin-bottom: 16px;
}
.post-column.right .post-content {
        color: var(--dark-color);
        font-family: 'scandia-web';
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
}
.post-content > p {
        font-weight: normal;
}

.single-post h2{
        position: relative;
        display: inline-block;
        color: var(--dark-pink-color);
        text-align: center;
        font-size: 36px;
        font-weight: 500;
        line-height: normal;
        margin: 0;
}
.single-post h2::after{
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: var(--pink-color);
}
.agenda-img {
        width: 100%;
}

.single-post .medias-slider .slide-item .caption{
        display: none;
}

@media (max-width: 992px) {
        .post-column.left {
                grid-column: 2 / span 10;
        }
        .post-column.right {
                grid-column: 2 / span 10;
        }

        .slider-posts .slider-arrows {
                aspect-ratio: 25/9.25;
        }
        .slider-posts .slider-arrow.prev{
                left: 16px;
        }
        .slider-posts .slider-arrow.next {
                right: 16px;
        }

        .slider-posts .slider-track .post-item {
                flex: 0 0 calc((100% - 24px) / 2);
        }
}

@media (max-width: 768px) {
        .post.default-section {
                padding: 16px var(--margin-section) 48px;
        }

        .post-column.left {
                grid-column: 1 / span 12;
        }
        .post-column.right {
                grid-column: 1 / span 12;
        }
}

@media (max-width: 576px) {
        .slider-posts .slider-arrows {
                aspect-ratio: 4/3;
        }
        .slider-posts .slider-track .post-item {
                flex: 0 0 100%;
        }
}