/* ======================= */
/*      SECTION TITLE      */
/* ======================= */

.chen_section_title {
    position: relative;
    margin: 0;
    padding: 0;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    line-height: 32px;
    letter-spacing: 0.48px;
    text-align: left;
}

/* Type */

.chen_section_title--title {
    font-size: 32px;
    font-weight: 700;
}

.chen_section_title--subtitle {
    font-size: 24px;
    font-weight: 300;
}

/* Separator */

.chen_section_title::before,
.chen_section_title::after {
    content: "";
    position: absolute;
    left: 0;
    height: 1px;
    display: none;
}

.chen_section_title--separator-top {
    padding-top: 24px;
}

.chen_section_title--separator-bottom {
    padding-bottom: 24px;
}

.chen_section_title--separator-top::before {
    display: block;
    top: 0;
}

.chen_section_title--separator-bottom::after {
    display: block;
    bottom: 0;
}

.chen_section_title--separator-full::before,
.chen_section_title--separator-full::after {
    width: 100%;
}

.chen_section_title--separator-half::before,
.chen_section_title--separator-half::after {
    width: 50%;
}

/* TITLE colors */

.chen_section_title--title.chen_section_title--dark {
    color: #333333;
}

.chen_section_title--title.chen_section_title--olive {
    color: #808000;
}

.chen_section_title--title.chen_section_title--rose {
    color: #f25f70;
}

.chen_section_title--title.chen_section_title--teal {
    color: #008080;
}

/* SUBTITLE complementary palette */

.chen_section_title--subtitle.chen_section_title--dark {
    color: #8a8a8a;
}

.chen_section_title--subtitle.chen_section_title--olive {
    color: #d6c41e;
}

.chen_section_title--subtitle.chen_section_title--rose {
    color: #20c9b5;
}

.chen_section_title--subtitle.chen_section_title--teal {
    color: #f29e38;
}

/* Separator colors */

.chen_section_title--dark::before,
.chen_section_title--dark::after {
    background: rgba(51, 51, 51, 0.5);
}

.chen_section_title--olive::before,
.chen_section_title--olive::after {
    background: rgba(128, 128, 0, 0.5);
}

.chen_section_title--rose::before,
.chen_section_title--rose::after {
    background: rgba(242, 95, 112, 0.5);
}

.chen_section_title--teal::before,
.chen_section_title--teal::after {
    background: rgba(0, 128, 128, 0.5);
}