/* Shared foundation for profile, collection, and settings screens. */

.profile-body {
    min-height: 100vh;
    background: #100b08;
}

.profile-page {
    min-height: calc(100vh - 54px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 18px;
    background:
        radial-gradient(circle at 50% 0, rgba(242, 90, 0, 0.12), transparent 260px),
        #100b08;
}

.profile-shell {
    width: min(100%, 390px);
    min-height: 610px;
    padding: 16px 20px 28px;
    border-radius: 8px;
    color: #f7f1eb;
}


@media (min-width: 768px) {
    .profile-page {
        min-height: calc(100vh - 56px);
        padding: 46px 24px;
    }
}

@media (max-width: 420px) {
    .profile-shell {
        min-height: 585px;
        padding: 14px 18px 26px;
    }
}
