/* ============================================================
   MIE LLC — about.css
   Aboutページ固有スタイル
   ============================================================ */

/* ── ANCHOR TABS ── */
.tab-link {
    font-family: var(--font-en);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border-bottom: 2px solid transparent;
    color: #999;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.tab-link:hover,
.tab-link.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

/* ── VERTICAL LINE ── */
.v-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, #1a1a1a, transparent);
    margin: 0 auto;
}
