/* ============================================================
   Story Section — 1277_story_section
   Prefix: .ow-about-story-  (shared eyebrow: .ow-about-eyebrow)
   ============================================================ */

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

/* ── Section wrapper ──────────────────────────────────────── */

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

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

.ow-about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.ow-about-story-h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.07;
    color: #111827;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
.ow-about-story-h2 em {
    font-style: normal;
    color: #E8193C;
}
.ow-about-story-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ow-about-body-text {
    font-size: .97rem;
    color: #6b7280;
    line-height: 1.8;
    padding: 0;
    margin: 0;
}

/* ── Image column ─────────────────────────────────────────── */

.ow-about-story-img {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    background: #f9fafb;
}
.ow-about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Overlay badge ────────────────────────────────────────── */

.ow-about-story-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.ow-about-story-tag-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #eef4fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ow-about-story-tag-icon svg {
    width: 15px;
    height: 15px;
    stroke: #003a66;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
}
.ow-about-story-tag-n {
    font-size: .96rem;
    font-weight: 800;
    color: #003a66;
    line-height: 1;
}
.ow-about-story-tag-l {
    font-size: .63rem;
    color: #6b7280;
    margin-top: 2px;
}

/* ── Bottom two-column row ────────────────────────────────── */

.ow-about-story-full-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #e5e7eb;
}
.ow-about-story-full-col p {
    font-size: .91rem;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

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

@media (max-width: 880px) {
    .ow-about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ow-about-story-img {
        display: none;
    }
    .ow-about-story-full-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .ow-about-story-section {
        padding: 64px 0;
    }
}
