
.wrap-resource {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.resource {
    margin: 0 12px;
    width: calc(25% - 24px);
    min-height: 100%;
    background-color: #E0E8F3;
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 20px;
}
.resource:hover {
    background-color: #F0F4F9;
}
.resource-title {
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(1.125rem, 1.034rem + 0.3883vw, 1.5rem);
}
.resource-year {
    font-size: clamp(0.625rem, 0.5643rem + 0.2589vw, 0.875rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.resource .link-arrow {
    width: 28px;
    height: 18px;
    display: inline-block;
    margin-top: 4px;
    margin-left: auto;
}
.resource .link-arrow:hover {
     background-image: url(../../../assets/img/icons/arrow-bold.svg);
}

@media (max-width: 1199px) {
    .wrap-resource {
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
        justify-content: left;
    }
    .resource {
        width: 280px;
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {
    .resource {
        width: 216px;
        padding: 20px;
    }
    .resource .link-arrow {
        width: 20px;
        height: 12px;
        margin-top: 16px;
    }
}


.resource-decor1 {
    top: 5%;
    width: 276px;
    left: -2%;
    max-width: 80%;
}
.resource-decor2 {
    bottom: 0;
    right: -2%;
    width: 174px;
    max-width: 60%;
}