.resource_blocks {
    background-color: #ffffff;
}

/* Section header: small uppercase label + large sub-headline */
.resource_blocks_header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.resource_blocks_title {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    color: #1B1788;
    display: block;
    margin-bottom: 20px!important;
}

.resource_blocks_sub_title {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 700;
    color: #002446;
    margin: 0;
    line-height: 1.2;
}

/* Grid: 5 columns on large screens to match design */
.resource_blocks .resource_blocks_grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.resource_blocks .resource_card {
    position: relative;
    padding: 0 0 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

/* Split background: blue top, yellow bottom - behind image area only */




.resource_blocks .resource_card_image {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resource_blocks .resource_card_image img {
    display: block;
    max-width: 100%;
    height: auto;
    width: 100%;
}

.resource_blocks .resource_card_label {
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
    color: #5C5C5C;
    margin: 0 0 12px;
    padding: 0 8px;
    font-family: "Inter", sans-serif;
}

.resource_blocks .resource_card_content {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    color: #333333;
    font-size: 15px;
    line-height: 1.5;
    padding: 0 8px;
}

.resource_blocks .resource_card_content p {
    margin: 0 0 12px;
    font-weight: 400;
    font-size: inherit;
    line-height: inherit;
    text-align: center;
    color: inherit;
}


.resource_blocks .resource_card_cta {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 8px;
}

/* Download button: white bg, blue border, blue text, rounded */
.resource_blocks .resource_card_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1A2C59;
    background-color: #ffffff;
    border: 2px solid #1A2C59;
    border-radius: 500px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.resource_blocks .resource_card_btn:hover {
    background-color: #1A2C59;
    color: #ffffff;
}

.resource_blocks_arrows {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.resource_blocks_arrows .slick-prev,
.resource_blocks_arrows .slick-next {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1B1788;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.resource_blocks_arrows .slick-prev.slick-disabled,
.resource_blocks_arrows .slick-next.slick-disabled {
    background: transparent;
}

.resource_blocks_arrows .slick-prev:before,
.resource_blocks_arrows .slick-next:before {
    display: none;
}

.resource_blocks_arrows .slick-prev svg,
.resource_blocks_arrows .slick-next svg {
    width: 36px;
    height: 36px;
    display: block;
}

.resource_blocks_arrows .slick-prev .circle-path,
.resource_blocks_arrows .slick-next .circle-path {
    fill: none;
    stroke: #DCDCDC;
    stroke-width: 1;
}

.resource_blocks_arrows .slick-prev .arrow-path,
.resource_blocks_arrows .slick-next .arrow-path {
    fill: #DCDCDC;
}

.resource_blocks_arrows .slick-prev:not(.slick-disabled) .circle-path,
.resource_blocks_arrows .slick-next:not(.slick-disabled) .circle-path {
    fill: #1B1788;
    stroke: none;
}

.resource_blocks_arrows .slick-prev:not(.slick-disabled) .arrow-path,
.resource_blocks_arrows .slick-next:not(.slick-disabled) .arrow-path {
    fill: #fff;
}

.resource_blocks_arrows .slick-prev.slick-disabled,
.resource_blocks_arrows .slick-next.slick-disabled {
    cursor: not-allowed;
    opacity: 1;
}

.resource_blocks_arrows .slick-prev.slick-disabled .circle-path,
.resource_blocks_arrows .slick-next.slick-disabled .circle-path {
    fill: none;
    stroke: #DCDCDC;
    stroke-width: 1;
}

.resource_blocks_arrows .slick-prev.slick-disabled .arrow-path,
.resource_blocks_arrows .slick-next.slick-disabled .arrow-path {
    fill: #DCDCDC;
}

@media (max-width: 1199px) {
    .resource_blocks .resource_blocks_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }
}

@media (max-width: 991px) {
    .resource_blocks .resource_blocks_grid {
        display: block !important;
    }

    .resource_blocks .resource_card_image img {
        transform: none;
    }
}

@media (max-width: 640px) {
    .resource_blocks .resource_blocks_grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .resource_blocks .resource_card {
        padding-bottom: 24px;
    }

    .resource_blocks .resource_card_btn {
        min-width: 120px;
        padding: 10px 20px;
        font-size: 11px;
    }
}
