/* Corporate → About Panamich */
.corp-about {
    --corp-max: 1080px;
    background: #fff;
}

.corp-about-hero {
    padding: clamp(2rem, 5vw, 3rem) 16px;
    background: linear-gradient(180deg, #f7f8fa 0%, #fff 100%);
    border-bottom: 1px solid #e4e8ed;
}

.corp-about-hero-inner {
    max-width: var(--corp-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr minmax(260px, 42%);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

.corp-about-copy h1 {
    margin: 0 0 0.75rem;
    font-size: var(--text-page-title);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.corp-about-lead {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    line-height: 1.65;
    color: #475569;
    max-width: 36rem;
}

.corp-about-media {
    border-radius: 6px;
    overflow: hidden;
    background: #e8ecf1;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.corp-about-media {
    position: relative;
}

.corp-about-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.corp-about-media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: #dde3ea;
}

.corp-about-media--generic-ph img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.35;
}

.corp-about-media--placeholder:not(.corp-about-media--generic-ph) img {
    opacity: 1;
}

.corp-about-media-ph {
    position: relative;
    z-index: 1;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.corp-about-body {
    padding: clamp(2rem, 4vw, 3rem) 16px clamp(3rem, 6vw, 4rem);
}

.corp-about-body-inner {
    max-width: var(--corp-max);
    margin: 0 auto;
}

.corp-about-body-inner p {
    margin: 0 0 1.15rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #334155;
}

.corp-about-body-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .corp-about-hero-inner {
        grid-template-columns: 1fr;
    }

    .corp-about-media {
        order: -1;
        max-width: 420px;
    }
}
