.person-detail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 1.5rem;
    background-color: #ffffff;
}

.person-detail-image {
    width: 100%;
    max-width: 42.5rem;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1rem;
}

@media screen and (min-width: 768px) {
    .person-detail {
        gap: 2rem;
    }
}

@media screen and (min-width: 1280px) {
    .person-detail {
        flex-direction: row;
        gap: 2.5rem;
    }

    .person-detail-image {
        position: sticky;
        top: 5.5rem;
        width: 20.875rem;
    }
}

@media screen and (min-width: 1920px) {
    .person-detail-image {
        width: 24rem;
    }
}
