/* Style pour les communiqués de presse */
@font-face {
    font-family: 'EuclidFlexRegular';
    src: url("/wp-content/themes/Episens/assets/fonts/EuclidFlex.otf") format("opentype");
}

.episens-cp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.episens-cp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 980px) {
    .episens-cp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .episens-cp-grid {
        grid-template-columns: 1fr;
    }
}

.episens-cp-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s ease;
    height: 100%;
}

.episens-cp-card:hover {
    transform: translateY(-5px);
}

.episens-cp-date {
    /*font-family: 'EuclidFlex' ,sans-serif !important;*/
    padding: 15px 15px 0 15px;
    font-size: 14px;
    color: #0A517C;
}

.episens-cp-image {
    height: 200px;
    overflow: hidden;
}

.episens-cp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.episens-cp-card:hover .episens-cp-image img {
    transform: scale(1.05);
}

.episens-cp-title {
    font-family: "EuclidFlexBold", sans-serif;
    color: #cf9955;
    padding: 15px;
    margin: 0;
    font-size: 21px;
    flex-grow: 1;
}

.episens-cp-download {
    display: flex;
    align-items: center;
    padding: 15px;
    /*font-family: "EuclidFlex", sans-serif;*/
    font-size: 14px;
    color: #0A517C;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.episens-cp-download:hover {
    /*background-color: #f9f9f9;*/
}

.episens-cp-download-icon {
    display: inline-block;
    width: 28px;
    margin-right: 8px;
    /*background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23c49a6c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="7 10 12 15 17 10"></polyline><line x1="12" y1="15" x2="12" y2="3"></line></svg>');*/
    background-size: contain;
    background-repeat: no-repeat;
}

.episens-cp-download-icon svg {
    fill: #cf9955;
}

/* Pagination */
.episens-cp-pagination {
    margin-top: 40px;
    text-align: center;
}

.episens-cp-pagination-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.episens-cp-page-link {
    font-family: EuclidFlexBold, sans-serif;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    padding: 5px 10px;
    border-radius: 99px;
    /*background-color: #f5f5f5;*/
    color: #0A517C;
    text-decoration: none;
    transition: all 0.3s ease;
}

.episens-cp-page-link.current {
    background-color: #0A517C;
    color: #fff;
}

.episens-cp-page-link:hover:not(.current) {
    background-color: rgba(10, 81, 124, .7);
    color: #ffffff;
}

.episens-cp-page-link.next,
.episens-cp-page-link.prev {
    font-family: "EuclidFlexRegular", sans-serif;
    padding: 5px 15px;
    margin: 0 10px;
    background: none;
}

.episens-cp-page-link.prev {
    order: -1;
}


/** CTA ACTUALITES **/
.tb_see_more_btn {
    border-color: #0A517C;
    border-radius: 99px;
    background: #0A517C;
    color: #ffffff;
    font-family: EuclidFlexBold, sans-serif;
    text-transform: uppercase;
}

.tb_see_more_btn:hover {
    background: #ffffff;
    color: #0A517C;
    border-color: #0A517C;
}