/* SECTION */

.maxim-separator-heading {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.maxim-separator-top,
.maxim-separator-title {
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}


/* TOP ROW */

.maxim-separator-top {

    display: flex;
    align-items: baseline;   /* KEY FIX */

    gap: 20px;

    margin-bottom: 28px;
}


/* LINE */

.maxim-separator-line {

    width: 110px;
    height: 2px;             /* thinner */

    background: #2f6fff;

    border-radius: 2px;

    position: relative;
    top: -4px;               /* optical alignment */
}


/* LABEL */

.maxim-separator-label {

    font-size: 18px;
    font-weight: 600;

    letter-spacing: 0.05em;

    color: #2f6fff;

    text-transform: uppercase;

    line-height: 1;
}


/* TITLE */

.maxim-separator-title {

    display: flex;
    flex-direction: column;

    gap: 6px;
}


/* FIRST LINE */

.maxim-separator-title-primary {

    font-size: clamp(30px, 4.8vw, 56px);

    font-weight: 500;

    line-height: 1;

    color: #e5e5e5;

}


/* SECOND LINE */

.maxim-separator-title-secondary {

    font-size: clamp(30px, 4.8vw, 56px);

    font-weight: 500;

    line-height: 1;

    color: #2f6fff;

}


/* MOBILE */

@media (max-width: 768px) {

    .maxim-separator-line {
        width: 80px;
        top: -2px;
    }

    .maxim-separator-label {
        font-size: 18px;
    }

    .maxim-separator-title-primary,
    .maxim-separator-title-secondary {
        font-size: 36px;
    }

}
