/* ═══════════════════════════════════════════════
   ABOUT LM.RT — Magazine-style editorial layout
═══════════════════════════════════════════════ */

.about-layout-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.about-layout {
    display: flex;
    gap: calc(var(--grid-gap) * 1.5);
    align-items: flex-start;
}

.about-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: max(20px, calc(1.4vw * var(--scale)));
}

.about-col-1 {
    width: max(300px, calc(24vw * var(--scale)));
}

.about-col-2 {
    width: max(420px, calc(36vw * var(--scale)));
}

.about-col-3 {
    width: max(300px, calc(24vw * var(--scale)));
}

.about-col-4 {
    width: max(300px, calc(24vw * var(--scale)));
}

/* ── Text styles ── */
.about-intro {
    font-family: var(--font2);
    font-size: max(13px, calc(0.9vw * var(--scale)));
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.about-statement {
    font-family: var(--font1);
    font-size: max(20px, calc(1.39vw * var(--scale)));
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-style: italic;
}

.about-body {
    font-family: var(--font2);
    font-size: max(12px, calc(0.83vw * var(--scale)));
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

/* ── Image / media slots ── */
.about-image,
.about-media {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-image img,
.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-media iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    inset: 0;
}

/* ── Video play button (unmute) ── */
.about-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}

.about-video-play::after {
    content: '';
    width: max(48px, calc(3.3vw * var(--scale)));
    height: max(48px, calc(3.3vw * var(--scale)));
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1814'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.about-video-play:hover::after {
    transform: scale(1.08);
    opacity: 0.9;
}

.about-image-landscape {
    aspect-ratio: 16/9;
}

.about-image-portrait {
    aspect-ratio: 3/4;
}

.about-image-square {
    aspect-ratio: 1/1;
}
