@import url(about.css?version=1.0.1.7);
@import url(article.css?version=1.0.1.3);
@import url(bb2026.css?version=1.0.1.3);
@import url(carousel.css?version=1.0.1.3);
@import url(default.css?version=1.0.1.4);
@import url(fonts.css?version=1.0.1.3);
@import url(footer.css?version=1.0.1.3);
@import url(header.css?version=1.0.1.5);


.hero {
    min-height: 800px;
    height: 100vh;
}
.hero img {
    width: 734.75px;
    object-fit: cover;
}

.tablet-mobile {
    width: 940px;
}

.intro {
    width: 100%;
    height: 296px;
}
.intro p {
    letter-spacing: -2%;
    text-align: justify;
}

.bg-card {
    border-radius: 8px;
    background-size:
        1280px 600px,
        auto;
    background-position: left top;
    background-image:
        image-set(
            url(../images/card_bg_small.png) 1x,
            url(../images/card_bg_large.png) 2x
        ),
        none;
    background-color: rgb(245, 245, 245);

    color: var(--main-dark);
}

.about_bb {
    width: 100%;
    flex-direction: column;
    gap: 40px;
}

.about_bb h1 {
    text-align: center;
}
.about_bb p {
    color: var(--main-dark);
    text-align: justify;
    letter-spacing: -2%;
}

.future p {
    letter-spacing: -2%;
    text-align: justify;
}

.main.advisory__board article
{
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    padding: 0 80px 120px;
    margin: 0 auto;
}
.main.advisory__board article .article__img
{
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}
.main.advisory__board article .article-img img
{
    width: 100%;
    object-fit: cover;
}

.main.advisory__board article .article__content
{
    display: flex;
    padding-left: 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1 0 0;
    align-self: stretch;
}
.main.advisory__board article .article__content h3
{
    font-family: 'Geist', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 56px */
    letter-spacing: -0.8px;
}
.main.advisory__board article .article__content .director_fullname
{
    font-family: 'Geist', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 44.8px */
    letter-spacing: -0.64px;
}
.main.advisory__board article .article__content .content_kulapat
{
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 28px */
    letter-spacing: -0.4px;
}



.advisory {
    margin: auto;
    width: 100%;
    max-width: 1260px;
    padding: 40px 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.advisory h2
{
    text-align: center;
}
.advisory .content
{
    max-width: 940px;
    width: 100%;
    text-align: center;
    color: #0F0E0E;
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 28px */
    letter-spacing: -0.4px;
}
.advisory-view-all {
    position: relative;
    max-width: 1260px;
    width: 100%;
    margin: 10px auto 0;
    padding: 16px 24px 16px 24px;
    cursor: pointer;
    background-color: rgb(245, 245, 245);
    background-image: url(../images/card_bg_hover.png);
    border-radius: 8px;
}
.advisory-view-all::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-size:
        1280px 600px,
        auto;
    background-position: left top;
    background-image:
        image-set(
            url(../images/card_bg_small.png) 1x,
            url(../images/card_bg_large.png) 2x
        ),
        none;
    background-color: rgb(245, 245, 245);
    opacity: 1;
    z-index: 1;
    transition: var(--transition);
}
.advisory-view-all:hover::before {
    opacity: 0;
}
.advisory-view-all a,
.advisory-view-all button {
    position: relative;
    display: block;
    width: 100%;
    color: var(--main-dark);
    text-align: center;
    transition: var(--transition);
    z-index: 2;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;

    font-family: 'Geist', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 38px */
    letter-spacing: -1.6px;
}
.advisory-view-all:hover a,
.advisory-view-all:hover button {
    color: #fff;
}
.advisory-view-all button:disabled {
    opacity: 0.6;
    cursor: wait;
}

@media (max-width: 1280px) {
    .tablet-mobile {
        width: 620px;
    }
    .intro p {
        letter-spacing: -2%;
        text-align: justify;
    }

    .advisory {
        max-width: 780px;
    }
    .advisory .article__img {
        display: none;
    }
    .advisory .advisory-list .labels p:nth-child(1),
    .advisory .advisory-list article p:nth-child(1) {
        max-width: 360px;
        min-width: 360px;
        margin: 0;
    }
    .advisory .advisory-list .labels p:nth-child(2),
    .advisory .advisory-list article p:nth-child(2) {
        width: stretch;
        min-width: 0;
        margin: 0;
    }
    .advisory .advisory-list article {
        justify-content: flex-start;
        gap: 0;
    }
    .advisory-view-all {
        max-width: 780px;
        width: 100%;
    }
    .advisory-view-all p {
        font-size: 64px;
    }
    .main.advisory__board article
    {
        padding: 0 40px 64px 40px;
    }
}

@media (max-width: 768px) {
    .p-120-64 {
        padding: 64px 0;
    }

    .hero img {
        width: 315px;
    }
    .tablet-mobile {
        min-width: 275px;
        width: 100%;
    }

    .intro p {
        letter-spacing: -2%;
    }
    .intro {
        padding: 0px 40px 64px 40px;
    }
    .future,
    .about_bb {
        padding: 64px 40px 64px 40px;
    }
    .about_bb h1 {
        min-width: 275px;
        width: 100%;
        text-align: left;
    }

    .advisory {
        padding: 40px 40px 60px 40px;
    }
    .advisory .article__img {
        display: block;
    }
    .advisory .advisory-list article {
        justify-content: space-between;
        min-height: 82px;
    }
    .advisory-list article .article__img {
        width: 100px;
    }
    .advisory p.about,
    .advisory .labels p:nth-child(2) {
        display: none;
    }
    .advisory .advisory-list .labels p:nth-child(1),
    .advisory .advisory-list article p:nth-child(1) {
        max-width: 225px;
        min-width: 0;
    }

    .advisory-view-all p {
        font-size: 40px;
    }
}

@media (max-width: 425px) {
    .advisory .advisory-list .labels {
        justify-content: center;
        text-align: center;
    }
    .advisory .advisory-list article {
        justify-content: center;
        flex-direction: column-reverse;
        min-height: 82px;
        gap: 10px;
        text-align: center;
    }
}
