/*     1654185 : HTML 편집기      */
/* 공통 */
.product_detail * {
    color: #000;
    box-sizing: border-box;
    word-break: keep-all;
}

.product_detail .inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 2vw, 2rem);
}

.product_detail h1 {
    margin: 0 0 0.8em;
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
    line-height: 1.4;
    text-align: center;
}

.product_detail .lead {
    margin: 0 auto;
    max-width: 960px;
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 2em;
    text-align: center;
    word-break: keep-all;
}

/* 비주얼 + 스펙 */
.product_detail .pd-visual-spec {
    margin-top: clamp(2rem, 5vw, 5rem);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 3rem);
}

.product_detail .pd-visual {
    flex: 0 0 58%;
    display: flex;
    gap: clamp(1rem, 1.8vw, 1.8rem);
}

.product_detail .pd-visual figure {
    flex: 1;
    margin: 0;
}

.product_detail .pd-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: clamp(0.8rem, 1.6vw, 1.6rem);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.product_detail .pd-spec {
    flex: 1;
}

.product_detail .pd-spec table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: clamp(0.8rem, 1.6vw, 1.6rem);
    overflow: hidden;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.06);
}

.product_detail .pd-spec th,
.product_detail .pd-spec td {
    padding: clamp(0.9rem, 1.2vw, 1.2rem) clamp(1rem, 1.4vw, 1.4rem);
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    line-height: 1.7;
    text-align: left;
}

.product_detail .pd-spec th {
    width: 28%;
    background: #f4f8ff;
    font-weight: 700;
    white-space: nowrap;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.product_detail .pd-spec tr+tr th,
.product_detail .pd-spec tr+tr td {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* 베네핏 3열 */
.product_detail .pd-benefits {
    margin-top: clamp(2.5rem, 6vw, 6rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.2rem, 2vw, 2rem);
}

.product_detail .pd-benefits .item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: clamp(0.8rem, 1.6vw, 1.6rem);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
    padding: clamp(1.2rem, 2vw, 2rem);
}

.product_detail .pd-benefits .num {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.6rem;
    background: linear-gradient(275deg, #1d6fcd, #1983c2, #419fbb);
    /* ani_txt와 톤 통일 */
}

.product_detail .pd-benefits h3 {
    margin: 0 0 0.4rem;
    font-size: clamp(1.05rem, 1.3vw, 1.3rem);
}

.product_detail .pd-benefits p {
    margin: 0;
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    line-height: 1.9;
    word-break: keep-all;
}

/* 반응형 */
@media (max-width:1023px) {
    .product_detail .pd-visual-spec {
        flex-direction: column;
    }

    .product_detail .pd-visual {
        width: 100%;
    }

    .product_detail .pd-spec {
        width: 100%;
    }

    .product_detail .pd-benefits {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:767px) {
    .product_detail .lead {
        text-align: left;
    }

    .product_detail .pd-visual {
        flex-direction: column;
    }

    .product_detail .pd-benefits {
        grid-template-columns: 1fr;
    }

    .product_detail .pd-spec th,
    .product_detail .pd-spec td {
        font-size: clamp(0.95rem, 3.6vw, 1rem);
    }
}

