/* Section Title Component Styles */

.section-title-inline {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
    /* mb-16 */
    font-size: 48px;
    /* Desktop size */
    text-align: left;
}

@media (min-width: 768px) {
    .section-title-inline {
        font-size: 48px;
        /* Desktop size */
        text-align: left;
    }
}

@media (max-width: 768px) {
    .section-title-inline {
        font-size: 1.875rem !important;
        /* text-3xl */
        text-align: center !important;
    }
}

.section-title-orange {
    font-family: var(--font-primary);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.section-title-black {
    font-family: var(--font-secondary);
    font-weight: 900;
    color: var(--color-secondary);
}

.section-dots {
    align-items: center;
}

/* 響應式字體大小 */
.section-title-responsive {
    font-size: 64px;
}

.section-title-responsive-small {
    font-size: 64px;
}

@media (max-width: 1024px) {

    .section-title-responsive,
    .section-title-responsive-small {
        font-size: 48px;
    }
}

/* 響應式調整 */
@media (max-width: 768px) {
    .section-title-wrapper {
        flex-wrap: wrap;
        margin-bottom: 24px;
        text-align: center;
        justify-content: center;
    }

    .section-title-orange,
    .section-title-black {
        font-size: 2rem;
    }

    .section-title-responsive {
        font-size: 48px;
    }

    .section-title-responsive-small {
        font-size: 48px;
    }

    .section-dots {
        margin-left: 0;
        margin-top: 12px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .section-title-orange,
    .section-title-black {
        font-size: 1.625rem;
    }

    .section-title-responsive {
        font-size: 28px;
    }

    .section-title-responsive-small {
        font-size: 28px;
    }
}

