.hero-profile {
    padding: 2rem 0;
}

.hero-profile__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    gap: 3rem;
    align-items: start;
}

.hero-profile--portrait .hero-profile__inner {
    grid-template-columns: 300px 1fr;
}

.hero-profile--landscape .hero-profile__inner {
    grid-template-columns: minmax(360px, 480px) 1fr;
}

.hero-profile__media {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-profile__photo {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-profile--portrait .hero-profile__photo {
    max-width: 300px;
}

.hero-profile--landscape .hero-profile__photo {
    max-width: 480px;
}

.hero-profile__caption {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0.75rem 0 0;
}

.hero-profile__name {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem;
}

.hero-profile__description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin: 0 0 1.25rem;
}

.hero-profile__description p {
    margin: 0 0 0.5rem;
}

.hero-profile__description p:last-child {
    margin-bottom: 0;
}

.hero-profile__intro {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.hero-profile__intro p {
    margin: 0 0 1rem;
}

.hero-profile__intro p:last-child {
    margin-bottom: 0;
}

.hero-profile__intro a {
    color: var(--color-brand-green);
    text-decoration: underline;
}

.hero-profile__intro a:hover {
    color: var(--color-brand-green-dark);
}

@media (max-width: 768px) {
    .hero-profile--portrait .hero-profile__inner,
    .hero-profile--landscape .hero-profile__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-profile--portrait .hero-profile__photo {
        max-width: 240px;
    }

    .hero-profile--landscape .hero-profile__photo {
        max-width: 100%;
    }
}
