/* RESOURCES HERO SECTION */
.resources-hero {
    display: flex;
    width: 100%;
    padding: 150px 150px 80px;
    /* height: 874px; */
    margin-top: -6rem;
    background: url('../images/hero-bg-3.png'), radial-gradient(85.94% 85.94% at 90.64% 7.81%, #FF9937 0%, #FE6A2E 89.5%);
    background-size: cover;
    background-position: center;
    border-bottom: 15px solid var(--Neutral-N900);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    position: relative;
}

.resources-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-top: 4rem;
    width: 100%;
}

.resources-hero-container h2 {
    color: var(--Neutral-N900);
    font-family: Clash Display;
    font-size: 60px;
    font-weight: 600;
    line-height: 78px;
    letter-spacing: -3%;
    max-width: 817px;
}

.resources-hero-container p {
    color: var(--Neutral-N900);
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

/* END OF RESOURCES HERO SECTION */

/* RESOURCES SECTION */
.resources-section {
    display: flex;
    width: 100%;
    padding: 46px 90px;
    justify-content: center;
    align-content: center;
}

.resources-section .resources-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.resources-container .resources-contents {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 1280px;
    width: 100%;
}

.resources-contents .navigation {
    display: flex;
    gap: 20px;
    max-width: 1120px;
    width: 100%;
    flex-wrap: wrap;
    align-self: center;
    justify-content: center;
}

.resources-contents .navigation a {
    display: flex;
    min-width: 70px;
    max-width: 230px;
    height: 44px;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid var(--Neutral-N40);
    box-shadow: 0px 1px 2px 0px #1018280D;
    color: var(--Neutral-N400);
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    text-align: center;
}

.resources-contents .navigation a.active {
    color: var(--Neutral-N0);
    border: 1px solid var(--Primary-300);
    background-color: var(--Primary-300);
}

.resources-contents .navigation-contents {
    display: flex;
    flex-direction: column;
    gap: 64px;
    flex-wrap: wrap;
}

.navigation-contents .latest-event {
    display: flex;
    width: 100%;
    height: 600px;
    background: url('../images/blog/latest.svg') no-repeat center/cover;
    border-radius: 16px;
    border: 1px solid var(--Neutral-N30);
    position: relative;
}

.navigation-contents .latest-event .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    position: absolute;
    bottom: 0;
}

.navigation-contents .latest-event .content .info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--Neutral-N0);
    font-family: Montserrat;
}

.navigation-contents .latest-event .content .info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;

}

.navigation-contents .latest-event .content .info .sub-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.navigation-contents .latest-event .content .info .sub-info h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 140%;
    max-width: 900px;
}

.navigation-contents .latest-event .content .info .sub-info p {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.navigation-contents .latest-event .content .btn-bg-dark {
    background-color: var(--Neutral-N0);
    color: var(--Neutral-N400);
    font-size: 14px;
    line-height: 20px;
    max-width: 135px;
    padding: 8px 14px;
}

.navigation-contents .latest-event .content .btn-bg-dark:hover {
    background-color: var(--Primary-300);
    color: var(--Neutral-N0);
}

.navigation-contents .blog-cards.new {
    display: none;
}

.navigation-contents .blog-cards {
    display: flex;
    gap: 32px;
}

.navigation-contents .blog-cards .blog-card {
    height: 630px;
}

.navigation-contents .blog-cards .blog-card .subcontent h3 {
    font-size: 28px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1%;
}

/* END OF RESOURCES SECTION */

/* MOBILE RESPONSIVE  */

@media only screen and (max-width: 1122px) {
    .resources-hero {
        padding: 100px 10px;
    }

    .resources-hero-container {
        gap: 30px;
    }

    .resources-hero-container h2 {
        font-size: 36px;
        line-height: 42px;
        max-width: 500px;
    }

    .resources-hero-container p {
        font-size: 16px;
        line-height: 24px;
    }

    .resources-section {
        padding: 50px 10px;
    }

    .resources-contents .navigation {
        align-self: start;
        justify-content: start;
    }

    .navigation-contents .latest-event {
        display: none;
    }

    .navigation-contents .latest-event .content .info .sub-info h2 {
        font-size: 24px;
        line-height: 120%;
    }

    .navigation-contents .latest-event .content .info .sub-info p {
        font-size: 14px;
    }

    .navigation-contents .blog-cards.new {
        display: flex;
    }

    .navigation-contents .blog-cards {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .navigation-contents .blog-cards .blog-card {
        height: auto;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .navigation-contents .blog-cards .blog-card .subcontent h3 {
        font-size: 26px;
        font-weight: 600;
    }
}

/* END OF MOBILE RESPONSIVE  */