.agencies-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}.agency-item {
    background-color: #F7F7F7;
    padding: 32px 24px;
    border-radius: 24px;
}.agency-item .agency-item__title {
    font-size: 25px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -1.25px;
    margin-bottom: 0;
}.agency-item__expertises {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style-type: none;
    padding: 0;
    margin: 16px 0;
}.agency-item__expertise {
    color: #A8A29E;
    font-size: 12px;
    font-weight: 500;
    line-height: 140%;
}.agency-item__flex {
    display: flex;
    gap: 8px;
    margin: 24px 0;
}.agency-item__flex, .agency-item__flex a {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    color: var(--e-global-color-text);
}.agency-item__flex svg {
    width: 19px;
    height: 19px;
    min-width: 19px;
    min-height: 19px;
    margin-top: 3px;
}

@media ( max-width: 1024px ) {
    .agencies-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
@media ( max-width: 767px ) {
    .agencies-grid {
        grid-template-columns: repeat(1,1fr);
    }
    .agency-item .agency-item__title {
        font-size: 20px;
    }
}
/* PAGINATION */
.elementor-widget-allez-agences-posts-widget .navigation.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}.elementor-widget-allez-agences-posts-widget .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
}.elementor-widget-allez-agences-posts-widget .page-numbers {
    padding: 15px;
    text-decoration: none;
    position: relative;
}.elementor-widget-allez-agences-posts-widget .page-numbers:is(.prev, .next) {
    line-height: 0;
    fill: var(--e-global-color-text);
    padding: 8px;
}.elementor-widget-allez-agences-posts-widget span.page-numbers:is(.prev, .next) {
    fill: rgba(118, 118, 118, 1);
    padding: 8px;
}.elementor-widget-allez-agences-posts-widget .page-numbers.current::after {
    content: '';
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--e-global-color-primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
}.elementor-widget-allez-agences-posts-widget .page-numbers.current {
    color: #fff;
}