@import "hero.css";

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

.strenghts-content-wrapper {
    position: relative;
    width: 100%;
}

.strenghts-content-bg {
    display: flex;
    flex-direction: row;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.strenghts-content-bg div:first-child {
    background-color: var(--color-primary-04);
    height: 100%;
    width: 70%;

}

.strenghts-content-bg div:last-child {
    background-color: var(--color-primary-03);
    height: 100%;
    width: 30%;
}


/* Wrapper 기반 상위 스타일 처리 */
.strengths-header-wrapper,
.strengths-intro-wrapper,
.strengths-cards-wrapper {
    padding: 0 20px;
    width: 100%;
}

.strengths-header-content,
.strengths-intro-content,
.strengths-cards-content {
    margin: 0 auto;
    max-width: 1200px;
}

/* Header Section */
.strengths-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f8f8f8;
    padding: 60px 0 20px;
    width: 100%;
}

/* Intro Section */
.strengths-intro {
    padding: 60px 0;
    position: relative;
    width: 100%;
    z-index: 2;
}

.intro-text {
    max-width: 1200px;
}

.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: var(--color-gray-01);
    margin: 0;
}

/* Strengths Cards Section */
.strengths-cards {
    padding-bottom: 80px;
    position: relative;
    width: 100%;
}

.strengths-cards-content {
    /* position: relative; */
    display: flex;
    flex-direction: row;
}

/* Product Info Text - 왼쪽 세로 텍스트 */
.product-info-text {
    /* position: absolute;
    left: -100px;
    top: 50%; */
    /* transform: translateY(-50%); */
    color: var(--color-primary-03);
    font-size: 88px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -1.32px;
    line-height: 68px;
    margin-left: 10px;
    text-align: end;
    text-orientation: mixed;
    writing-mode: vertical-rl;
    z-index: 2;
}

/* Strengths Cards Container */
.strengths-cards-container {
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.strengths-cards-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.strengths-cards-row:last-child {
    margin-bottom: 0;
}

/* Strength Card Base */
.strength-card {
    border-radius: 15px;
    display: flex;
    min-height: 386px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

/* White Card */
.strength-card {
    background-color: #ffffff;
    flex: 1;
}

@media (hover: hover) and (pointer: fine) {
    /* Primary Card */
    .strength-card:hover {
        background-color: var(--color-primary-01);
        flex: 1;
    }

    .strength-card:hover .card-title {
        color: #ffffff;
    }

    .strength-card:hover .card-description {
        color: #ffffff;
    }

    .strength-card:hover .card-description-main {
        color: #ffffff;
    }

    .strength-card:hover .card-achievements li {
        color: #ffffff;
    }
}


/* Wide Card */
.strength-card.wide-card {
    min-height: 466px;
    width: 100%;
}

/* Card Content */
.card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
}

.card-title {
    color: var(--color-gray-01);
    margin: 0 0 20px 0;
}

.card-description {

    color: var(--color-gray-02);
    margin: 0 0 100px 0;
}

.card-description-main {

    color: var(--color-gray-02);
    margin: 0 0 20px 0;
}

.card-achievements {
    list-style: none;
    margin: 0;
    padding: 0;
}

.card-achievements li {
    color: var(--color-gray-02);
    margin-bottom: 0;
}

/* Card Icon */
.card-icon {
    align-items: center;
    bottom: 32px;
    display: flex;
    height: 100px;
    justify-content: center;
    position: absolute;
    right: 32px;
    width: 100px;
}

/* Mobile Responsive */
@media (max-width: 768px) {


    .strenghts-content-wrapper .strenghts-content-bg div:first-child {
        width: 100%;
    }

    .strenghts-content-wrapper .strenghts-content-bg div:last-child {
        display: none;
    }

    /* Wrapper 모바일 패딩 */
    .strengths-header-wrapper,
    .strengths-intro-wrapper,
    .strengths-cards-wrapper {
        padding: 0 16px;
    }

    .strengths-header {
        padding: 20px 0 16px;
    }

    .strengths-intro {
        padding: 40px 0 20px 0;
    }

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


    /* Product Info Text 모바일에서 숨김 */
    .product-info-text {
        display: none;
    }

    /* Strengths Cards Mobile */
    .strengths-cards {
        padding-bottom: 40px;
    }

    .strengths-cards-row {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .strength-card {
        min-height: 350px;
        padding: 24px;
    }

    .strength-card.wide-card {
        min-height: 434px;
    }

    .card-content {
        max-width: none;
    }

    .card-title {

        margin-bottom: 12px;
    }

    .card-icon {
        bottom: 24px;
        height: 80px;
        right: 24px;
        width: 80px;
    }
}

/* Tablet Responsive */
@media (max-width: 1200px) and (min-width: 769px) {
    .strengths-header-wrapper,
    .strengths-intro-wrapper,
    .strengths-cards-wrapper {
        padding: 0 40px;
    }

    .strengths-cards-row {
        gap: 16px;
    }

    .product-info-text {
        font-size: 60px;
        left: -60px;
        line-height: 90px;
    }
} 