.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 30px;
}

.serif {
    font-family: 'Noto Serif JP', serif;
}

.gold-text {
    color: var(--gold-solid);
    font-weight: 700;
}

/* Utility classes for inline styles */
.text-center {
    text-align: center;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mt-50 {
    margin-top: 50px;
}

.font-bold {
    font-weight: 700;
}

.color-gold {
    color: var(--gold);
}

.color-white {
    color: var(--white);
}

.none-desktop {
    display: none;
}

@media (max-width: 900px) {
    .none-mobile {
        display: none;
    }

    .none-desktop {
        display: block;
    }
}