/* 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: 767.98px) {
    .profile-page {
        align-items: flex-start;
        padding: 22px 0 42px;
    }

    .profile-shell {
        width: 100%;
        max-width: none;
        min-height: 0;
        padding: 0 14px;
        border-radius: 0;
    }
}
