@import "hero.css";

/* 하드웨어 페이지 스타일 */

/* 메인 컨테이너 */
.hardware-page {
    background-color: #ffffff;
    min-height: 100vh;
    width: 100%;
}

/* 헤더 섹션 */
.hardware-header {
    background-color: #ffffff;
    margin: 0 auto;
    padding: 60px 0 40px 0;
    position: relative;
    width: 100%;
}

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

/* 하드웨어 컨텐츠 섹션 */
.hardware-content {
    background-color: #ffffff;
    padding: 0;
    position: relative;
    width: 100%;
}

.hardware-content-inner {
    margin: 0 auto;
    max-width: 1200px;
    padding: 60px 0;
    position: relative;
    width: 100%;
}

/* 섹션 헤더 */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 60px;
    width: 950px;
}

.section-label {
    color: var(--color-primary-02);
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 30px;
}

.section-title {
    color: #151515;
    font-family: 'Pretendard', sans-serif;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 54px;
    margin: 0;
}

/* 제품 리스트 */
.product-list {
    background-color: #f8f8f8;
    border-radius: 15px;
    margin-bottom: 60px;
    padding: 32px;
}

.product-item {
    align-items: center;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    margin-bottom: 20px;
}

.product-item:last-child {
    margin-bottom: 0;
}

.product-image {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    flex-shrink: 0;
    height: 212px;
    margin-right: 60px;
    overflow: hidden;
    width: 250px;
}

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

.product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 20px;
    padding-block: 20px;
}

.product-title {
    color: #151515;
    font-family: 'Pretendard', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 42px;
    text-align: center;
    white-space: pre-wrap;
}

.product-description {
    color: #151515;
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 30px;
}

.product-description ul, .product-description li {
    list-style: disc;
    margin-left: 15px;
}

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


    .hardware-header-content {
        padding: 40px 60px 0 60px;
    }

    .hardware-content-inner {
        padding: 60px;
    }

    .product-list {
        padding: 24px;
    }

    .product-title {
        font-size: 24px;
        line-height: 36px;
    }

    .product-description {
        font-size: 18px;
        line-height: 27px;
    }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .hardware-header {
        padding: 20px 16px;
    }

    .hardware-header-content {
        padding: 0;
    }


    .hero-title {
        font-size: 48px;
        letter-spacing: -0.02em;
        line-height: 72px;
    }

    .hardware-content {
        padding-bottom: 40px;
    }

    .hardware-content-inner {
        padding: 0;
    }

    .section-header {
        height: 61px;
        margin-block: 40px;
        padding-inline: 16px;
        width: 100%;
    }

    .section-label {
        font-size: 14px;
        letter-spacing: 0.56px;
        line-height: 21px;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: -0.02em;
        line-height: 36px;
    }

    .product-list {
        border-radius: 0;
        margin-bottom: 0;
        padding: 24px 16px;
    }

    .product-item {
        flex-direction: column;
        margin-bottom: 16px;
        overflow: hidden;
        padding: 24px;
    }

    .product-image {
        height: 250px;
        margin: 0;
        overflow: hidden;
    }

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

    .product-title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 16px;
    }

    .product-description {
        font-size: 16px;
        line-height: 24px;
    }

    .product-description ul, .product-description li {
        margin-left: 12px;
    }

    .product-description li {
        font-size: 16px;
        line-height: 24px;
    }
}
