/* =========================================
   Elysian Section Title Widget Styles
   ========================================= */

.elysian-section-title-wrapper {
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.elysian-section-subheading {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ce982b;
    /* Default gold */
    margin-bottom: 20px;
    display: block;
}

.elysian-section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #212121;
    /* Default dark */
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.2;
}

.elysian-section-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.elysian-section-separator {
    width: 8px;
    height: 8px;
    background-color: #ce982b;
    border-radius: 50%;
    position: relative;
    margin: 32px auto 0 !important;
    border: none;
    clear: both;
}

.elysian-section-separator::before,
.elysian-section-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 1px;
    background-color: #ce982b;
}

.elysian-section-separator::before {
    right: 100%;
    margin-right: 15px;
}

.elysian-section-separator::after {
    left: 100%;
    margin-left: 15px;
}

@media screen and (max-width: 768px) {
    .elysian-section-heading {
        font-size: 34px;
    }
}