.about-wrapper {
    display: grid;
    grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
    max-width: 1120px;
}

.about-photo-frame {
    position: relative;
    width: min(100%, 480px);
    margin: 0 auto;
    aspect-ratio: 3 / 2;
    padding: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 4px solid var(--color-accent);
    background: var(--color-background-2);
}

.about-photo-frame::after {
    content: "";
    position: absolute;
    right: -0.8rem;
    bottom: -0.8rem;
    width: 55%;
    height: 38%;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    pointer-events: none;
}

.about-photo-frame picture,
.about-photo-frame img {
    display: block;
    width: 100%;
    height: 100%;
}

.about-photo-frame img {
    object-fit: cover;
}

.about-copy p {
    line-height: 1.75;
}

@media (max-width: 899px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-photo-frame {
        width: min(92vw, 560px);
    }
}

@media (max-width: 630px) {
    .about-photo-frame {
        left: 50%;
        width: min(calc(100% + 2rem), calc(100vw - 1.5rem));
        margin-inline: 0;
        transform: translateX(-50%);
    }
}

/* Copyright RZU Informatique */
