.about-hero {
    position: relative;
    width: 100%;
    min-height: 35vw;
    margin: 0 0 4rem;
    overflow: hidden;
}

.about-hero__image {
    position: absolute;
    inset: 0;
    background-image: url("/img/about.jpg");
    background-size: cover;
    background-position: center;
}

.about-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    width: 80vw;
    min-height: 35vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.about-hero__label {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-hero__title {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 6rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.about-section {
    width: 80vw;
    margin: 6rem auto 6rem;
}

.about-inner {
    width: 100%;
    margin: 0 auto;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 5rem;
    color: #888;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.about-breadcrumb a {
    color: #111;
    text-decoration: none;
}

.about-block {
    display: grid;
    grid-template-columns: 36% 1fr;
    gap: 6rem;
    align-items: start;
}

.about-kicker {
    position: relative;
    margin: 0 0 2rem;
    padding-left: 1.8rem;
    color: #111;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-kicker::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border: 4px solid #009eb3;
    border-radius: 50%;
    transform: translateY(-50%);
}

.about-copy {
    margin: 0;
    color: #111;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.8;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.about-body {
    color: #222;
    font-size: 0.94rem;
    line-height: 2.1;
    letter-spacing: 0.04em;
}

.about-body p {
    margin: 0 0 2rem;
}

.about-figure {
    margin: 4rem 0 0;
}

.about-figure img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

/* tablet */
@media (max-width: 1024px) {
    .about-hero__inner,
    .about-section {
        width: 86vw;
    }

    .about-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-breadcrumb {
        margin-bottom: 3.5rem;
    }
}

/* smartphone */
@media (max-width: 767px) {
    .about-hero {
        min-height: 64vw;
        margin-bottom: 3rem;
    }

    .about-hero__inner {
        width: 90%;
        min-height: 64vw;
    }

    .about-hero__title {
        font-size: 2.6rem;
    }

    .about-section {
        width: 90%;
        margin: 4rem auto 5rem;
    }

    .about-breadcrumb {
        margin-bottom: 3rem;
        font-size: 0.72rem;
        overflow-x: auto;
        white-space: nowrap;
    }

    .about-kicker {
        font-size: 0.86rem;
        margin-bottom: 1.4rem;
    }

    .about-copy {
        font-size: 1.35rem;
        line-height: 1.7;
    }

    .about-body {
        font-size: 0.9rem;
        line-height: 2;
    }

    .about-figure {
        margin-top: 3rem;
    }

    .about-figure img {
        border-radius: 18px;
    }
}