.bottom-resources {
    display: flex;
    gap: 3%;
    align-items: flex-start;
}

.officer-side {
    padding-left: 3%;
    border-left: 2px solid #E2E3E5;
    width: 300px;
    flex: none;
}

.officer-side a {
    color: #35383B;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6; 
    text-decoration: none;
}

.officer-side img {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.resources {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
}

.resources.officer-side-on {
    align-items: flex-start;
}

.bottom-resources .resource-item {
    width: 31%;
    min-height: 100px;
}

.bottom-resources.no-officer-side .resource-item {
    width: 23.3%;
    min-height: 100px;
}

.resource-item a {
    border-radius: 8px;
    background: var(--Lightest-Blue, #E5F0F5);
    padding: 25px;
    color: var(--Neutral-20, #35383B);
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6; 
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 94px;
}

.resource-item a:hover {
    background: #0060A0;
    color: #fff;
}

@media (max-width: 1000px) {
    .bottom-resources {
        flex-direction: column-reverse;
    }

    .officer-side {
        width: 100%;
        border: none;
        padding: 0;
        margin-bottom: 50px;
    }

    .officer-side .officer-item {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .officer-side .officer-item img {
        width: 45%;
    }


    /* .officer-side .officer-item a  */
    .officer-side .officer-item a {
        width: 45%;
    }
    .officer-side .officer-item a img {
        width: 100%
    }

    .officer-side .officer-item .officer-info {
        width: 50%;
    }

    .bottom-resources.no-officer-side .resource-item {
        width: 48%;
    }

}

@media (max-width: 768px) {
    .bottom-resources .resource-item {
        width: 100%;
    }
    .bottom-resources.no-officer-side .resource-item {
        width: 100%;
    }
}