/* ============================================================
   Split Expandable Panels — 1281_split_expandable_panels
   Prefix: .ow-about-who-
   ============================================================ */

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

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

.ow-about-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* ── Left: image column ───────────────────────────────────── */

.ow-about-who-img-col {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}
.ow-about-who-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* ── Right: content column ────────────────────────────────── */

.ow-about-who-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

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

.ow-about-who-title {
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.07;
    color: #111827;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0 0 16px;
}
.ow-about-who-title em {
    font-style: normal;
    color: #E8193C;
}

/* ── Intro paragraph ──────────────────────────────────────── */

.ow-about-who-intro {
    font-size: .9rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ── Accordion ────────────────────────────────────────────── */

.ow-about-who-accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e5e7eb;
}

.ow-about-who-panel {
    border-bottom: 1px solid #e5e7eb;
}

.ow-about-who-panel-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    cursor: pointer;
    text-align: left;
    font-size: .93rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    transition: color .15s;
}
.ow-about-who-panel-btn:hover {
    color: #E8193C;
}
.ow-about-who-panel-btn .ow-about-who-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .15s, background .15s;
}
.ow-about-who-panel-btn .ow-about-who-icon::after {
    content: '';
    display: block;
    width: 8px;
    height: 1.5px;
    background: #6b7280;
    transition: background .15s;
}
.ow-about-who-panel-btn[aria-expanded="false"] .ow-about-who-icon::before {
    content: '';
    display: block;
    width: 1.5px;
    height: 8px;
    background: #6b7280;
    position: absolute;
    transition: background .15s;
}
.ow-about-who-panel-btn[aria-expanded="true"] .ow-about-who-icon {
    border-color: #E8193C;
    background: #E8193C;
}
.ow-about-who-panel-btn[aria-expanded="true"] .ow-about-who-icon::after {
    background: #fff;
}

/* ── Panel body ───────────────────────────────────────────── */

.ow-about-who-panel-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease, padding .3s ease;
}
.ow-about-who-panel.ow-about-open .ow-about-who-panel-body {
    max-height: 400px;
    padding-bottom: 16px;
}
.ow-about-who-panel-body p {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

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

@media (max-width: 880px) {
    .ow-about-who-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ow-about-who-img {
        height: 280px;
    }
}
