@import "hero.css";

/* Product Overview Page */
.product-overview-page {
    background-color: #ffffff;
    min-height: 100vh;
    width: 100%;
}

/* Header Section */
.overview-header {
    background-color: #ffffff;
    margin: 0 auto;
    padding: 60px 0 20px 0;
    position: relative;
    width: 100%;
}

.overview-header-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
    justify-content: flex-end;
    margin: 0 auto;
    max-width: var(--content-max-width-1200);
    width: 100%;
}

/* Intro Section */
.overview-intro {
    background-color: #ffffff;
    padding-top: 60px;
    width: 100%;
}

.overview-intro-content {
    margin: 0 auto;
    max-width: var(--content-max-width-1200);
}

.intro-text {
    max-width: var(--content-max-width-1200);
}

.intro-label {
    color: var(--color-primary-02);
    display: block;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 150%;
    margin-bottom: 4px;
}

.intro-title {

    color: #151515;
    margin-bottom: 20px;
}

.intro-description {

    color: #151515;
}

/* TAMS Image Section */
.overview-image {
    background-color: #ffffff;
    position: relative;
    width: 100%;
}

.overview-image-content {
    margin: 0 auto;
    max-width: var(--content-max-width-1200);
    padding-bottom: 30px;
    position: relative;
}

.tams-watermark {
    text-align: left;
}

.watermark-text {
    color: var(--color-primary-03);
    font-family: Pretendard;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 102px;
}

.tams-screenshot {
    padding: 40px 0;
    text-align: center;
}

.tams-screenshot img {
    border-radius: 12px;
    height: auto;
    max-width: 799px;
    width: 100%;
}

/* GS Certification Section */
.gs-certification {
    background-color: var(--color-primary-04);
    padding: 60px 0;
    width: 100%;
}

.gs-certification-content {
    align-items: flex-start;
    display: flex;
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.gs-image {
    flex-shrink: 0;
    position: relative;
    width: 400px;
}

.building-image {
    border-radius: 15px;
    height: 533px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.building-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}


.gs-content {
    flex: 1;
    padding-top: 22px;
}

.gs-title {

    color: #151515;
    margin-bottom: 20px;
    margin-left: -120px;
    position: relative;
}

.gs-title-mark {
    color: var(--color-primary-01);
}

.gs-description {
    color: #151515;
}

.gs-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}


/* 반응형 스타일 - 태블릿 */
@media (max-width: 1200px) {


    .overview-header {
        padding: 40px 60px;
    }

    .overview-intro {
        padding-inline: 60px;
    }

    .overview-image {
        padding-inline: 60px;
    }

    .gs-certification-content {
        flex-direction: column;
        gap: 0;
        padding: 0 60px;
    }

    .gs-image {
        margin: 0 auto;
        max-width: 360px;
        padding-top: 20px;
        width: 100%;
    }

    .gs-title {
        margin-left: 0;
        order: -1;
    }

    .gs-title.mobile-only {
        display: inline-block;
        position: relative;
        z-index: 1;
    }
}

/* 반응형: 모바일 */
@media (max-width: 768px) {


    .overview-header {
        padding: 20px 16px 16px;
    }

    .overview-intro {
        padding: 40px 16px 0 16px;
    }

    .intro-label {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .intro-title {
        margin-bottom: 20px;
    }

    .overview-image-content {
        padding: 0 16px;
    }

    .watermark-text {
        font-size: 28px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .gs-certification {
        padding: 40px 0;
    }

    .gs-certification-content {
        padding: 0 16px;
    }

    .building-image {
        height: 347px;
    }

    .gs-image {
        max-width: 260px;
        padding-top: 0;
    }

    .gs-content {
        padding-top: 40px;
    }


    .gs-title-mark {
        color: var(--color-primary-02);
    }


    .gs-buttons {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        margin-top: 24px;

    }

    .gs-button,
    .gs-benefit-button {
        font-size: 14px;
        height: 41px;
        line-height: 21px;
        width: 100%;
    }

    .gs-button {
        max-width: 112px;
    }

    .gs-benefit-button {
        max-width: 218px;
    }
}