.panel-wrap--about .panel-content {
    width: 100%;
}

.about-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: start;
}

.about-photo-col {
    position: relative;
}

.about-photo-frame {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #1a1a1a;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 12px 12px 0 #fff inset, 8px 8px 0 #0e0e0e;
}

.about-photo-frame:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #fff inset, 8px 8px 0 #0e0e0e;
}

.about-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.about-photo-frame:hover img {
    transform: scale(1.03);
}

.about-socials {
    position: absolute;
    top: 16px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 4;
}

.about-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    position: relative;
    overflow: visible;
}

.about-social:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
    transform: translateX(-3px);
}

.about-social--email {
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}

.about-social-copied {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #22c55e;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.about-social-copied::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #22c55e;
}

.about-social--email.is-copied .about-social-copied {
    opacity: 1;
}

.about-social--email.is-copied {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.about-text-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-heading {
    margin-bottom: 4px;
}

.about-eyebrow {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65) !important;
    display: block;
    margin-bottom: 6px;
}

.about-name {
    font-family: 'Lexend', system-ui, sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin: 0;
}

.about-text-col p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
    text-wrap: pretty;
}

@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 300px 1fr;
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-photo-col {
        max-width: 380px;
    }

    .about-socials {
        right: -16px;
    }
}

@media (max-width: 480px) {
    .about-photo-col {
        max-width: 100%;
    }

    .about-socials {
        top: 12px;
        right: -14px;
        gap: 8px;
    }

    .about-social {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .about-text-col p {
        font-size: 15px;
    }
}
