.press-container{
    padding: 10px 120px;
}

.press-teaser {
    background: #ffffff;
}

.press-teaser__container {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.press-teaser__left {
    flex: 1 1 auto;
    width:  60%;
    padding-right: 100px;
}

.press-teaser__title {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    color: #1C2258;
}

.press-teaser__text {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-navy);
    max-width: 560px;
}

.press-teaser__right {
    background: #F3F4F6;
    border-radius: 14px;
    padding: 18px 18px;
    width: 40%;
}

.press-teaser__right-title {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    color: #1F2937;
}

.press-teaser__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;
    border-radius: 999px;

    background: #1C2258;
    color: #ffffff;
    text-decoration: none;

    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
}

.press-teaser__btn:hover,
.press-teaser__btn:focus {
    background: #121742;
}

@media (max-width: 900px) {
    .press-teaser__container {
        flex-direction: column;
        align-items: stretch;
    }

    .press-teaser__right {
        flex: 1 1 auto;
        width: 100%;
        justify-content: space-between;
    }
}

.press-pagination{
    margin-top: 18px;
    display: flex;
    justify-content: center;
}
.press-pagination__list{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
}
.press-pagination__btn,
.press-pagination__page{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: #fff;
    color: #1C2258;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}
.press-pagination__page.is-active{
    background: rgba(188, 23, 34, 0.06);
}
.press-pagination__btn.is-disabled{
    opacity: .4;
    cursor: not-allowed;
}

.press-filters__row{
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}
.press-filters__select{
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 2px solid rgb(28, 34, 88);
    background: #fff;
    color: #1C2258;
    font-size: 14px;
    -webkit-appearance: auto;
    appearance: auto;
}
.press-filters__actions{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}
.filter{
    background: #BC1722;
    border-radius: 999px;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-weight: 600;
}
.reinitialiser{
    background: #1C2258;
    border-radius: 999px;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-weight: 600;
    text-decoration: none;
}
@media (max-width: 1100px){
    .press-filters__row{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
    .press-filters__row{ grid-template-columns: 1fr; }
    .press-filters__actions{ flex-direction: column; align-items: stretch; }
    .filter, .reinitialiser{ width: 100%; }
}

.press-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 10px;
}
.press-card{
    background: #fff;
    border: 1px solid rgba(28, 34, 88, 0.12);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}
.press-card__image{
    height: 140px;
    background: #f3f4f6;
}
.press-card__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.press-card__body{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;   /* 🔑 OBLIGATOIRE */
    gap: 8px;
}
.press-card__meta{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 12px 0 12px 10px
}

.press-card__tag{
    font-family: "Roboto", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    color: #1C2258;
    text-transform: uppercase;
    --tag-color: rgba(28,34,88,.35);
}

.press-card__tag{
    --tag-color: rgba(28, 34, 88, 0.35); /* fallback */
}

.press-card__tag::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--tag-color);
    display: inline-block;
}


.press-card__source{
    font-family: "Roboto", sans-serif;
    display: inline-flex;
    align-items: center;

    padding: 4px 8px;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;

    color: #1C2258;
    background: #ffffff;
    border: 1px solid rgba(28, 34, 88, 0.25);
}
.press-card__date{
    font-family: "Roboto", sans-serif;
    font-size: 0.8rem !important;
    color: #181818AB;

    padding: 0 0 12px 10px
}
.press-card__date svg{
    margin-bottom: 3px !important
}

.press-card__title{
    font-family: "Roboto", sans-serif;

    margin: 0;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
    color: #1C2258;

    padding: 0 0 0 10px
}
.press-card__excerpt{
    font-family: "Roboto", sans-serif;
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    color: #000000;
    padding: 0 0 0 10px
}
.press-card__actions{
    margin-top: auto;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;

    border-top: 1px solid rgba(28,34,88,0.12);
}
.press-card__link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #1C2258;
    justify-content: center; /* 🔑 centre le texte */
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    transition: background .2s ease;
    width: 50%
}
.press-card__link + .press-card__link{
    position: relative;
}
.press-card__link + .press-card__link::before{
    content: "";
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 18px;
    background: rgba(28,34,88,0.25);
}
.press-card__link:hover,
.press-card__link:focus{
   /* background: rgba(28,34,88,0.06);*/
}

.color-blue{
    color: #1C2258
}

@media (max-width: 1200px){
    .press-grid{ grid-template-columns: repeat(3, minmax(220px, 1fr)); }
}
@media (max-width: 900px){
    .press-grid{ grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 520px){
    .press-grid{ grid-template-columns: 1fr; }
}


.press-communiques {
    padding: 40px 0;
    text-align: left;
}

.press-communiques__title {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #1C2258;
    margin-bottom: 24px;
}

.press-communiques__box {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(28, 34, 88, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

/* Ligne */
.press-communique {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(28, 34, 88, 0.15);
}

.press-communique:last-child {
    border-bottom: none;
}

/* Contenu gauche */
.press-communique__content {
    text-align: left;
}

.press-communique__title {
    font-size: 15px;
    font-weight: 600;
    color: #1C2258;
    margin: 0 0 6px 0;
}

.press-communique__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #1C2258;
}

/* Action droite */
.press-communique__action {
    flex-shrink: 0;
}

.press-communique__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #1C2258;
    text-decoration: none;
    white-space: nowrap;
}

.ajax-link{
    font-size: 14px;
    font-weight: 500;
    color: #1C2258;
}

.press-communique__link img {
    width: 16px;
    height: 16px;
}

.press-communique__link:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .press-communiques__box {
        width: 90%;
    }

    .press-communique {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .press-communique__action {
        align-self: flex-end;
    }
    .press-container{
        padding: 0 !important
    }
    .press-teaser__left{
        width: 100% !important
    }
}


.img-card-presse{
    width: 18px;
    height:18px
}

/* ORDRE VISUEL (différent de l'ordre DOM) */

.press-card__title{
    order: 3;
}

.press-card__meta{
    order: 1;
}

.press-card__date{
    order: 2;
}

.press-card__excerpt{
    order: 4;
}

.press-card__actions{
    order: 5;
    margin-top: auto; /* tu l'as déjà, parfait */
}


.press-filters__reset{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 999px;
    border: 1px solid rgba(28,34,88,.25);
    background: #fff;
    color: #1C2258;

    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.press-filters__reset:hover,
.press-filters__reset:focus{
    background: rgba(28,34,88,.06);
    outline: none;
}

.press-filters__reset:focus-visible{
    outline: 2px solid #1C2258;
    outline-offset: 2px;
}