﻿/* ============================================
   BJNFNE — Section Base
   Designed & developed by DosX
   ============================================ */

/* --- Section Base --- */
.section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.section--alt {
    background: rgba(255, 255, 255, 0.01);
}

.section {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.section__header {
    text-align: center;
    margin-bottom: 64px;
}

.section__tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-bright);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.section__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 16px;
}

.section__line {
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    margin: 16px auto 0;
    clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
    transition: width var(--transition);
}

.section__header:hover .section__line {
    width: 100px;
}
