/**
 * Unified Section Headers — compact editorial
 *
 * @package Bargtunes
 */

.bt-section-head {
    margin-bottom: clamp(22px, 3.5vw, 40px);
    max-width: 680px;
}

.bt-section-head__row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.bt-section-head__rule {
    flex: 1;
    max-width: 72px;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.35), transparent);
}

[dir="rtl"] .bt-section-head__rule {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.35), transparent);
}

/* Labels */
.bt-section-head .ms-label,
.bt-section-head .mv-label,
.bt-section-head .ab-label,
.bt-section-head .ct-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.bt-section-head .ms-label__dot,
.bt-section-head .mv-label__dot,
.bt-section-head .ab-label__dot {
    flex-shrink: 0;
    width: 20px;
    height: 1px;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.35);
}

.bt-section-head .mv-label__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
}

[dir="rtl"] .bt-section-head .ms-label,
[dir="rtl"] .bt-section-head .mv-label,
[dir="rtl"] .bt-section-head .ab-label,
[dir="rtl"] .bt-section-head .ct-label {
    letter-spacing: 0.12em;
}

/* Headlines */
.bt-section-head .ms-headline,
.bt-section-head .mv-headline,
.bt-section-head .ab-headline,
.bt-section-head .ct-headline {
    margin: 0 0 12px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.85rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.bt-section-head .ms-headline--fa,
.bt-section-head .mv-headline--fa,
.bt-section-head .ab-headline--fa,
.bt-section-head .ct-headline--fa {
    font-family: ModamWeb, 'Vazirmatn', sans-serif;
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.bt-section-head .ms-headline__line,
.bt-section-head .mv-headline__line,
.bt-section-head .ab-headline__line,
.bt-section-head .ct-headline__line {
    display: block;
}

.bt-section-head__line--ghost,
.ms-headline__line--ghost,
.mv-headline__line--ghost,
.ab-headline__line--ghost,
.ct-headline__line--ghost {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    paint-order: stroke fill;
}

/* Descriptions */
.bt-section-head .ms-desc,
.bt-section-head .mv-desc,
.bt-section-head .ab-desc,
.bt-section-head .ct-desc {
    margin: 0;
    max-width: 30rem;
    font-size: clamp(0.86rem, 1.2vw, 0.98rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
}

.bt-section-head .ab-desc {
    max-width: none;
}

/* Wider header row (videos top) */
.mv-top .bt-section-head {
    max-width: 560px;
}

@media (max-width: 768px) {
    .bt-section-head {
        max-width: none;
        width: 100%;
        margin-inline: auto;
        text-align: center;
    }

    .bt-section-head__row {
        justify-content: center;
    }

    .bt-section-head .ms-headline,
    .bt-section-head .mv-headline,
    .bt-section-head .ab-headline,
    .bt-section-head .ct-headline {
        font-size: clamp(1.65rem, 8vw, 2.75rem);
    }

    .bt-section-head .ms-headline--fa,
    .bt-section-head .mv-headline--fa,
    .bt-section-head .ab-headline--fa,
    .bt-section-head .ct-headline--fa {
        font-size: clamp(1.55rem, 7.5vw, 2.5rem);
    }

    .bt-section-head .ms-desc,
    .bt-section-head .mv-desc,
    .bt-section-head .ab-desc,
    .bt-section-head .ct-desc {
        margin-inline: auto;
    }

    .mv-top .bt-section-head {
        max-width: none;
    }
}
