/* ===== ALULUME Product Intro ===== */

.alc-product-intro {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 8px 0 28px;
    padding: 20px 0 8px;
    overflow: visible;

    border: 0;
    border-radius: 0;
    background: transparent;
    color: #262321;
    box-shadow: none;
    box-sizing: border-box;
}

/* 不显示原来的右下角圆形装饰 */
.alc-product-intro::after {
    display: none;
    content: none;
}

/* 顶部橙色短线 */
.alc-product-intro__rule {
    width: 42px;
    height: 4px;
    margin: 0 0 21px;
    background: #ff7417;
}

/* 小标题 */
.alc-product-intro__eyebrow {
    margin: 0 0 14px;
    color: #d95e0d;
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* 主标题 */
.alc-product-intro__heading {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;

    color: #262321;
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(34px, 3.25vw, 46px);
    font-weight: 650;
    line-height: 0.98;
    letter-spacing: -0.043em;
    text-transform: uppercase;
}

.alc-product-intro__heading span {
    display: block;
}

/* 橙色标题行 */
.alc-product-intro__heading .alc-product-intro__accent {
    color: #ff7417;
}

/* 描述文字 */
.alc-product-intro__description {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    margin: 24px 0 0;

    color: #6f655c;
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 450;
    line-height: 1.6;
}

/* 手机端 */
@media (max-width: 749px) {
    .alc-product-intro {
        margin: 4px 0 24px;
        padding: 18px 0 6px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .alc-product-intro__rule {
        width: 34px;
        height: 3px;
        margin-bottom: 17px;
    }

    .alc-product-intro__eyebrow {
        margin-bottom: 11px;
        font-size: 10px;
        line-height: 1.3;
        letter-spacing: 0.135em;
    }

    .alc-product-intro__heading {
        font-size: clamp(29px, 8.8vw, 36px);
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .alc-product-intro__description {
        max-width: 100%;
        margin-top: 18px;
        font-size: 13px;
        line-height: 1.55;
    }
}