/* ============================================================
   Legal Frame — 1283_legal_frame
   Prefix: .ow-about-legal-  /  .ow-about-sic-  /  .ow-about-id-
   ============================================================ */

.ow-about-legal-section {
    padding: 88px 0;
    border-bottom: 1px solid #e5e7eb;
}
.ow-about-legal-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}

/* ── Eyebrow ──────────────────────────────────────────────── */

.ow-about-legal-eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 0;
}
.ow-about-legal-eyebrow::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #E8193C;
    flex-shrink: 0;
}

/* ── Heading ──────────────────────────────────────────────── */

.ow-about-legal-title {
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.07;
    color: #111827;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    max-width: 420px;
    margin-top: 0;
}
.ow-about-legal-title em {
    font-style: normal;
    color: #E8193C;
}

/* ── Subtitle ─────────────────────────────────────────────── */

.ow-about-legal-sub {
    font-size: .96rem;
    color: #6b7280;
    line-height: 1.74;
    max-width: 560px;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ── Two-column grid ──────────────────────────────────────── */

.ow-about-legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 44px;
}

/* ── SIC list ─────────────────────────────────────────────── */

.ow-about-sic-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}
.ow-about-sic-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    transition: border-color .14s, box-shadow .14s;
}
.ow-about-sic-row:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 40, 90, .05);
}
.ow-about-sic-code {
    font-family: ui-monospace, monospace;
    font-size: .76rem;
    font-weight: 700;
    color: #003a66;
    background: #eef4fb;
    padding: 4px 10px;
    border-radius: 5px;
    flex-shrink: 0;
    min-width: 52px;
    text-align: center;
}
.ow-about-sic-desc {
    font-size: .84rem;
    color: #6b7280;
    line-height: 1.4;
}

/* ── Right column: note + ID grid ────────────────────────── */

.ow-about-legal-note {
    font-size: .82rem;
    color: #6b7280;
    line-height: 1.74;
    margin-bottom: 22px;
}
.ow-about-id-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.ow-about-id-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 18px;
    transition: border-color .14s;
}
.ow-about-id-box:hover {
    border-color: #d1d5db;
}
.ow-about-id-label {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #6b7280;
    margin-bottom: 7px;
    display: block;
}
.ow-about-id-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: #003a66;
    letter-spacing: -0.02em;
    margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 880px) {
    .ow-about-legal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 560px) {
    .ow-about-id-grid {
        grid-template-columns: 1fr;
    }
}
