@charset "utf-8";

.product-line-wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 40px 0 180px 0;
}

.product-line-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 36px;
    color: #222;
    letter-spacing: -1px;
}

#row_ls, #row_run, #row_yun, #row_min, #row_tae, #row_kac, #row_hy, #row_cam, #row_mt {
    scroll-margin-top: 150px;
}

.product-line-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.product-line-card {
    scroll-margin-top: 200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.06);
    width: 663px;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 949px;
    align-items: center;
    overflow: hidden;
    border: 1.5px solid #f0f2f6;
}

.product-line-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-line-logo {
    width: 100%;
    height: 354px;
    background: url('/img/brand-bg.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.product-line-logo img {
    max-width: 420px;
    height: auto;
    object-fit: contain;
}

.product-line-name {
    font-size: 44px;
    font-weight: 700;
    color: #1a2950;
    margin: 65px 0 36px 0;
    text-align: center;
    letter-spacing: -1px;
}

.product-line-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 79px;
    justify-content: center;
}

.btn-inquiry {
    background: #fff;
    border: 1px solid #cacaca;
    color: black;
    font-weight: 700;
    border-radius: 8px;
    padding: 18px 36px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.btn-inquiry:hover {
    background: #222;
    color: #fff;
}

.btn-store {
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-weight: 700;
    border-radius: 8px;
    padding: 20px 28px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.15s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.btn-store:hover {
    background: #003366;
}

.product-line-info {
    width: 100%;
    padding: 0 73px 36px 72px;
    margin-top: 0;
    display: grid;
    grid-template-rows: auto 1fr auto 1fr;
    min-height: 300px;
}

.product-line-info>div:nth-child(1),
.product-line-info>div:nth-child(2) {
    min-height: 20px;
}

.product-line-info>div:nth-child(3),
.product-line-info>div:nth-child(4) {
    min-height: 30px;
}

.product-line-info-title {
    font-size: 24px;
    font-weight: 700;
    color: black;
    margin-top: -4px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.product-line-info-title:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 2px;
}

.product-line-info-title:first-child {
    margin-top: 0;
}

.product-line-info-desc {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 2px;
    word-break: keep-all;
    line-height: 1.7;
}

.product-line-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}


.product-line-more {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 500;
    padding: 24px 128px;
    cursor: pointer;
    transition: background 0.15s;
}

.product-line-more:hover {
    background: #b8002f;
}

.product-line-card[id] {
    /* scroll-margin-top: 200px; */
}

@media (max-width: 768px) {
    .product-line-wrap {
        padding: 24px 0 36px 0;
    }

    .product-line-title {
        font-size: 24px;
        margin-bottom: 22px;
        text-align: left;
        padding-left: 10px;
    }

    .product-line-list {
        flex-direction: column;
        gap: 18px;
        align-items: center;
        padding: 0 16px;
        margin-bottom: 10px;
    }

    .product-line-card {
        padding: 0;
        width: 100%;
        height: auto;
    }

    .product-line-logo {
        height: 192px;
        background-size: cover;
    }

    .product-line-logo img {
        max-width: 140px;
        max-height: 50px;
    }

    .product-line-name {
        font-size: 24px;
        margin: 28px 0 20px 0;
        color: var(--primary-color);
    }

    .product-line-btns {
        gap: 11px;
        margin-bottom: 34px;
        width: 100%;
        padding: 0 34px;
    }

    .btn-inquiry, .btn-store {
        font-size: 14px;
        padding: 10px 0;
        border-radius: 6px;
        flex: 2.1;
        text-align: center;
    }
    .btn-store{
        flex: 5;
    }

.product-line-more-wrap {
    margin-top:0px;
    margin-bottom: 20px;
}

    .product-line-info {
        padding: 0 34px 40px 34px;
        min-height: 180px;
    }

    .product-line-info-title {
        font-size: 16px;
        margin-top: 36px;
        padding-left: 10px;
        margin-bottom: 6px;
        min-height: auto !important;
    }

    .product-line-info-title:before {
        width: 3px;
        height: 14px;
        top: 2px;
    }

    .product-line-info-desc {
        font-size: 14px;
        margin-top: 0px;
        min-height: auto !important;
    }

    .product-line-more {
        font-size: 15px;
        padding: 14px 24px;
        margin: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .product-line-card[id] {
        scroll-margin-top: 80px;
    }
}