.cpe-separator {
    box-sizing: border-box;
    width: 100%;
    min-height: 126px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fef6e9;
}

.cpe-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 55px;
}

.cpe-ornament {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    gap: 5px;
    min-width: 0;
}

.cpe-line {
    display: block;
    width: 185px;
    max-width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #ed7004;
}

.cpe-dot {
    display: block;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ed7004;
}

.cpe-title-wrap {
    --cpe-title-x: 0px;
    --cpe-title-y: 0px;
    flex: 0 0 310px;
    min-width: 0;
    text-align: center;
    transform: translate(var(--cpe-title-x), var(--cpe-title-y));
}

.cpe-title {
    margin: 0;
    padding: 0;
    color: #4a6f22;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: none;
}

@media (max-width: 767px) {
    .cpe-separator {
        min-height: 96px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .cpe-inner {
        column-gap: 14px;
    }

    .cpe-line {
        width: clamp(32px, 14vw, 90px);
        height: 6px;
    }

    .cpe-dot {
        width: 14px;
        height: 14px;
    }

    .cpe-title-wrap {
        flex-basis: auto;
        flex-shrink: 0;
    }

    .cpe-title {
        font-size: clamp(17px, 5vw, 23px);
        white-space: nowrap;
    }
}

@media (max-width: 420px) {
    .cpe-inner { column-gap: 8px; }
    .cpe-ornament { gap: 3px; }
    .cpe-line { width: clamp(20px, 10vw, 42px); }
    .cpe-dot { width: 11px; height: 11px; }
}
