/* =========================================
   RELATED ASSETS
========================================= */

.custom-post-resources {
    width: 100%;
    margin: 50px 0;
    padding: 0;
}
.custom-post-resources-container a{text-decoration:none!important;}
 
.custom-post-resources-title {
    margin: 0 0 35px 0;
    padding: 0;

    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;

    color: #191720;
}


/* =========================================
   GRID
========================================= */

.custom-post-resources-container {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 40px;

    width: 100%;
}


/* =========================================
   CARD
========================================= */

.custom-resource-card {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 197px;

    width: 100%;

    overflow: hidden;

    border-radius: 7px;

    background: #191720;

    text-decoration: none !important;

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================
   IMAGE
========================================= */

.custom-resource-card-image {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;

    z-index: 1;

    transition: transform 0.4s ease;
}


/* =========================================
   DARK OVERLAY
========================================= */

.custom-resource-card-overlay {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        to bottom,
        rgba(25, 23, 32, 0.25),
        rgba(25, 23, 32, 0.92)
    );

    z-index: 2;
}


/* =========================================
   CONTENT
========================================= */

.custom-resource-card-content {
    position: absolute;
bottom: 0;
    z-index: 3;

    width: 100%;

    padding: 20px;

    box-sizing: border-box;

    text-align: center;
}


.custom-resource-card-content h3 {
    margin: 0;

    padding: 0;

    color: #ffffff !important;

    font-size: 16px !important;

    line-height: 1.3 !important;

    font-weight: 700 !important;

    text-align: center;

    text-decoration: none !important;
}


/* =========================================
   HOVER
========================================= */

.custom-resource-card:hover {
    transform: translateY(-5px);

    text-decoration: none !important;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}


.custom-resource-card:hover
.custom-resource-card-image {
    transform: scale(1.05);
}





/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {

    .custom-post-resources-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 30px;
    }

}


/* =========================================
   TABLET SMALL
========================================= */

@media (max-width: 900px) {

    .custom-post-resources-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .custom-post-resources {
        margin: 35px 0;
    }


    .custom-post-resources-title {
        font-size: 21px;
        margin-bottom: 25px;
    }


    .custom-post-resources-container {
        grid-template-columns: 1fr;

        gap: 20px;
    }


   


    .custom-resource-card-content {
        padding: 25px;
    }


    .custom-resource-card-content h3 {
        font-size: 21px !important;
    }

}