.profile {
    display: flex;
}

.profile-image {
    width: 100%;
    max-width: 360px;
    object-fit: cover;
}

.profile-info {
    padding: 0px 12px;
    width: 100%;
}

.profile-info p {
    margin-bottom: 16px;
}

.profile-info dl {
    display: grid;
    margin-bottom: 16px;
    grid-template-columns: 150px 1fr;
}

@media (max-width: 600px) {
    .profile {
        flex-wrap: wrap;
    }
}