.section-other_resources {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-block: 80px;

    h2 {
        text-align: center;
    }
}

.other_resources__cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.other_resources__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--border-color-gray);
    border-radius: var(--border-radius-15);
    min-height: 300px;
    width: clamp(300px, 100%, 576px);
    background: var(--background-color-white);
    transition: box-shadow var(--transition-normal);

    p {
        font-size: 22px;
        line-height: 30px;
    }

    &:hover {
        box-shadow: var(--shadow-md);
    }
}

.other_resources__card-top {
    display: flex;
    gap: 17px;

    img {
        width: 80px;
        height: 80px;
    }

    h3 {
        font-size: 22px;
        color: var(--color-text-gray);
        font-weight: 400;
    }

    h4 {
        font-size: 40px;
        color: var(--color-text-black);
        font-weight: 700;
        line-height: 100%;
    }
}

.other_resources__card-title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


@media (width<768px) {
    .other_resources__cards {
        flex-direction: column;
    }

    .other_resources__card {
        min-height: 250px;
    }

    .other_resources__card-top {
        display: flex;
        gap: 17px;

        img {
            width: 60px;
            height: 60px;
        }

        h3 {
            font-size: 18px;
            color: var(--color-text-gray);
            font-weight: 400;
        }

        h4 {
            font-size: 24px;
            color: var(--color-text-black);
            font-weight: 700;
            line-height: 100%;
        }
    }
}