.info-list ul > li:nth-child(4) {
    margin-top: 24px;
}
.info-list ul {
    padding-left: 20px;
}

.info-list li:not(:has(a)) {
    margin-bottom: 18px;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background: #fdf6e3;
    color: #3a3a3a;
}

.container {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px 32px;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: 50% 0%; /* crop even further vertically */
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(60,60,60,0.10);
    transform: rotate(-4deg);
    border: 2px solid #f3e9d2;
    transition: transform 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}

.spin {
    animation: spin 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes spin {
    0% { transform: rotate(-4deg); }
    100% { transform: rotate(-364deg); }
}

.name {
    font-size: 2.2rem;
    font-family: 'Latin Modern Roman', 'Georgia', serif;
    color: #4b4b4b;
    margin: 0 0 16px 0;
    margin-top: 32px;
}
