/* ============================================================================
   True Makeup Theme — Section heading block
   Used by every homepage section + most archive pages.
   ============================================================================ */

.tmt-section-label {
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 12px;
}

.tmt-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 32px;
}

.tmt-section-header--center {
    flex-direction: column;
    text-align: center;
    gap: 24px;
}

.tmt-section-header--right {
    flex-direction: row-reverse;
}
.tmt-section-header--right .tmt-section-heading {
    text-align: right;
}

.tmt-section-heading {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: 400;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
}
.tmt-section-heading em {
    font-style: italic;
    font-weight: 400;
}
.tmt-section-heading strong {
    font-style: normal;
    font-weight: 700;
}

.tmt-section-cta {
    display: inline-block;
    flex-shrink: 0;
    border: 1px solid #000;
    color: #000;
    background: #fff;
    padding: 14px 36px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease,
                color 0.2s ease,
                transform 0.2s ease;
}
.tmt-section-cta:hover,
.tmt-section-cta:focus {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}
