/* =========================================================
   BLOG GRID FCC55D24
   ========================================================= */

.blog-grid-fcc55d24 {
    width: 100%;
    box-sizing: border-box;
}


/* =========================================================
   FILTROS - LÍNEA FULL WIDTH
   ========================================================= */

.blog-grid-fcc55d24__filters {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-wrap: wrap;

    width: 100%;

    margin: 0;

    padding-top: 0;
    padding-bottom: 30px;

    padding-left: max(
        20px,
        calc((100% - 1200px) / 2)
    );

    padding-right: max(
        20px,
        calc((100% - 1200px) / 2)
    );

    border-bottom: 1px solid #dddddd;

    box-sizing: border-box;
}


/* =========================================================
   BOTONES DE FILTRO
   ========================================================= */

.blog-grid-fcc55d24__filter {
    appearance: none;
    -webkit-appearance: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    flex: 0 0 auto;

    min-height: 37px;

    margin: 0;
    padding: 10px 18px;

    background: #ffffff;

    border: 1px solid #d9d9d9;

    border-radius: 0;

    color: #222222;

    font-family: inherit;

    font-size: 11px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    cursor: pointer;

    box-sizing: border-box;

    transition:
        color .25s ease,
        background-color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


/* =========================================================
   FILTRO - HOVER
   ========================================================= */

.blog-grid-fcc55d24__filter:not(.is-active):hover {
    cursor: pointer;
}


/* =========================================================
   FILTRO - ACTIVO
   ========================================================= */

.blog-grid-fcc55d24__filter.is-active {
    cursor: default;
}


/* =========================================================
   CONTADOR
   ========================================================= */

.blog-grid-fcc55d24__filter-count {
    display: inline-block;

    font-weight: 400;

    line-height: 1;

    opacity: .8;

    transition:
        color .25s ease,
        opacity .25s ease;
}


/* =========================================================
   NOMBRE DEL FILTRO
   ========================================================= */

.blog-grid-fcc55d24__filter-name {
    display: inline-block;

    line-height: 1;
}


/* =========================================================
   CONTENEDOR DE BLOG
   ========================================================= */

.blog-grid-fcc55d24__posts {
    display: grid;

    grid-template-columns: repeat(
        3,
        minmax(0, 1fr)
    );

    column-gap: 30px;

    row-gap: 30px;

    width: min(
        calc(100% - 40px),
        1200px
    );

    margin-left: auto;
    margin-right: auto;

    margin-top: 100px;

    box-sizing: border-box;
}


/* =========================================================
   CARD
   ========================================================= */

.blog-card-fcc55d24 {
    display: flex;
    flex-direction: column;

    min-width: 0;

    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dcdcdc;

    border-radius: 0;

    box-shadow: none;

    box-sizing: border-box;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


/* =========================================================
   CARD HOVER
   ========================================================= */

.blog-card-fcc55d24:hover {
    border-color: #c9c9c9;
}


/* =========================================================
   IMAGEN
   ========================================================= */

.blog-card-fcc55d24__image-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #eeeeee;
}


.blog-card-fcc55d24__image-link {
    display: block;

    width: 100%;
    height: 100%;

    text-decoration: none;
}


.blog-card-fcc55d24__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .45s cubic-bezier(
            .2,
            .65,
            .3,
            1
        );
}


.blog-card-fcc55d24:hover
.blog-card-fcc55d24__image {
    transform: scale(1.035);
}


/* =========================================================
   PLACEHOLDER
   ========================================================= */

.blog-card-fcc55d24__image-placeholder {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    background: #eeeeee;

    color: #999999;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.blog-card-fcc55d24__content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 28px 30px 30px;

    box-sizing: border-box;
}


/* =========================================================
   META
   ========================================================= */

.blog-card-fcc55d24__meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin: 0 0 18px;
}


.blog-card-fcc55d24__category {
    color: #f52b23;

    font-size: 11px;

    font-weight: 500;

    line-height: 1.2;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.blog-card-fcc55d24__separator {
    color: #777777;

    font-size: 12px;
}


.blog-card-fcc55d24__date {
    color: #777777;

    font-size: 11px;

    font-weight: 400;

    line-height: 1.2;

    letter-spacing: .7px;

    text-transform: uppercase;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.blog-card-fcc55d24__title {
    margin: 0 0 12px;

    padding: 0;

    font-size: 19px;

    font-weight: 700;

    line-height: 1.45;

    letter-spacing: -.2px;
}


.blog-card-fcc55d24__title a {
    display: block;

    color: #242424;

    text-decoration: none;

    transition: color .2s ease;
}


.blog-card-fcc55d24__title a:hover {
    color: #f52b23;
}


/* =========================================================
   EXTRACTO
   ========================================================= */

.blog-card-fcc55d24__excerpt {
    margin: 0;

    color: #777777;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   LEER ARTÍCULO
   ========================================================= */

.blog-card-fcc55d24__read-more {
    display: inline-flex;

    align-items: center;

    width: fit-content;

    margin-top: auto;

    padding-top: 22px;

    gap: 8px;

    color: #222222;

    font-size: 11px;

    font-weight: 500;

    line-height: 1;

    letter-spacing: 1.5px;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        color .2s ease,
        gap .2s ease;
}


.blog-card-fcc55d24__read-more:hover {
    color: #f52b23;

    gap: 12px;
}


.blog-card-fcc55d24__arrow {
    display: inline-block;

    font-size: 18px;

    font-weight: 400;

    line-height: 1;
}


/* =========================================================
   FILTRO OCULTO
   ========================================================= */

.blog-card-fcc55d24.is-hidden {
    display: none;
}


/* =========================================================
   SIN RESULTADOS
   ========================================================= */

.blog-grid-fcc55d24__empty {
    width: min(
        calc(100% - 40px),
        1200px
    );

    margin: 100px auto 0;

    padding: 40px 20px;

    border: 1px solid #dddddd;

    color: #777777;

    text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .blog-grid-fcc55d24__filters {
        padding-left: 20px;

        padding-right: 20px;

        overflow-x: auto;

        flex-wrap: nowrap;

        scrollbar-width: none;
    }


    .blog-grid-fcc55d24__filters::-webkit-scrollbar {
        display: none;
    }


    .blog-grid-fcc55d24__posts {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        width: calc(100% - 40px);

        margin-top: 70px;
    }


    .blog-card-fcc55d24__content {
        padding: 25px;
    }


    .blog-card-fcc55d24__title {
        font-size: 18px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .blog-grid-fcc55d24__filters {
        gap: 6px;

        padding-left: 15px;

        padding-right: 15px;

        padding-bottom: 20px;

        margin: 0;

        overflow-x: auto;

        flex-wrap: nowrap;

        scrollbar-width: none;
    }


    .blog-grid-fcc55d24__filters::-webkit-scrollbar {
        display: none;
    }


    .blog-grid-fcc55d24__filter {
        flex: 0 0 auto;

        min-height: 34px;

        padding: 9px 13px;

        font-size: 10px;
    }


    .blog-grid-fcc55d24__posts {
        grid-template-columns: 1fr;

        width: calc(100% - 30px);

        margin-top: 45px;

        row-gap: 20px;
    }


    .blog-card-fcc55d24__content {
        padding: 23px 22px 25px;
    }


    .blog-card-fcc55d24__meta {
        margin-bottom: 14px;
    }


    .blog-card-fcc55d24__title {
        font-size: 18px;

        line-height: 1.4;
    }


    .blog-card-fcc55d24__excerpt {
        font-size: 14px;
    }

}