.profile-photo-box {
    width: 260px;              /* tamanho padrão desktop */
    aspect-ratio: 4 / 5;       /* proporção retrato fixa */
    max-width: 100%;
}

.profile-photo-inner {
    width: 100%;
    height: 100%;
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

/* Responsividade */
@media (max-width: 768px) {
    .profile-photo-box {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .profile-photo-box {
        width: 160px;
    }
}