.resources-main {
    padding: 36px 30px;
}

.resources-main .resources-header {
    display: flex;
    flex-direction: column;
    color: #363841;
}

.resources-main .resources-header .resources-header-title {
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
}

.resources-main .resources-header .resources-header-description {
    font-family: "Inter", serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 30px;
}

.resources-main .resources-content {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.resources-main .resources-content .resource-item {
    width: 345px;
    height: 372px;
    border-radius: 8px;
    border: #e6e6e7 solid 1px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.resources-main .resources-content .resource-item .resource-item-title {
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26.38px;
    color: #363841;
}

.resources-main .resources-content .resource-item .resource-item-description {
    font-family: "Roboto Slab", serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18.46px;
    letter-spacing: 0.15px;
    height: 190px;
    color: #363841;
}

.resources-main .resources-content .resource-item .resources-link {
    width: -webkit-fill-available;
    height: 48px;
    border-radius: 8px;
    padding: 12px 22px;
    background-color: #487CFF;
    color: #FFFFFF;

    font-family: "Inter", serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;

    &:hover {
        background-color: #4170E5;
        cursor: pointer;
    }
}