
/* JWD WooCommerce 商品分類頁首 */

.jwd-category-header {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.jwd-category-header__title {
    width: 100%;
    margin-bottom: 20px;
}

.jwd-cat-name {
    color: #17264f;
    font-size: clamp(36px, 4vw, 72px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
}

.jwd-category-header__body {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
    gap: 42px;
    align-items: stretch;
}

.jwd-category-header__content,
.jwd-category-header__image {
    min-width: 0;
}

.jwd-cat-desc {
    width: 100%;
    color: #47765f;
    font-size: 18px;
    line-height: 2.05;
    letter-spacing: 0.04em;
    text-align: left !important;
}

.jwd-cat-desc *,
.jwd-cat-desc p,
.jwd-cat-desc div,
.jwd-cat-desc h1,
.jwd-cat-desc h2,
.jwd-cat-desc h3,
.jwd-cat-desc h4,
.jwd-cat-desc h5,
.jwd-cat-desc h6,
.jwd-cat-desc ul,
.jwd-cat-desc ol,
.jwd-cat-desc li {
    text-align: left !important;
}

.jwd-cat-desc p {
    margin-top: 0;
    margin-bottom: 1.4em;
}

.jwd-cat-desc > *:last-child {
    margin-bottom: 0;
}

.jwd-cat-thumb {
    width: 100%;
    height: 100%;
}

.jwd-cat-thumb-img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1024px) {
    .jwd-category-header__body {
        grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
        gap: 28px;
    }

    .jwd-cat-desc {
        font-size: 17px;
        line-height: 1.95;
    }

    .jwd-cat-thumb-img {
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .jwd-category-header {
        padding: 0 16px;
    }

    .jwd-category-header__title {
        margin-bottom: 18px;
    }

    .jwd-cat-name {
        font-size: 36px;
        text-align: left;
        letter-spacing: 0.05em;
    }

    .jwd-category-header__body {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .jwd-cat-desc {
        font-size: 16px;
        line-height: 1.9;
    }

    .jwd-cat-thumb-img {
        min-height: 0;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
    }
}
