/* =========================
   Business Profile Public
========================= */

.business-profile-page {
    position: relative;
    overflow: hidden;

    min-height: calc(100vh - 78px);
    padding: 34px 25px 90px;

    background:
        radial-gradient(circle at 12% 12%, rgba(213, 173, 40, 0.13), transparent 30%),
        radial-gradient(circle at 86% 14%, rgba(7, 19, 38, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.business-profile-bg {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(80px);
}

.business-profile-bg-one {
    width: 520px;
    height: 520px;
    right: -180px;
    top: 120px;
    background: rgba(213, 173, 40, 0.12);
}

.business-profile-bg-two {
    width: 420px;
    height: 420px;
    left: -170px;
    bottom: -160px;
    background: rgba(7, 19, 38, 0.07);
}

.business-profile-shell {
    position: relative;
    z-index: 2;

    max-width: 1520px;
    margin: 0 auto;
}


/* =========================
   Hero
========================= */

.business-profile-hero {
    position: relative;
    overflow: hidden;

    margin-bottom: 24px;
    padding: 34px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 34px;
    align-items: center;

    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(213, 173, 40, 0.18), transparent 34%),
        linear-gradient(180deg, #101827 0%, #071326 100%);

    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 28px 82px rgba(7, 19, 38, 0.22);
}

.business-profile-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);

    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 84%);
    pointer-events: none;
}

.business-profile-hero-left,
.business-profile-hero-right {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.business-profile-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.50);
    font-size: 0.84rem;
    font-weight: 750;
}

.business-profile-breadcrumb a {
    color: rgba(255, 255, 255, 0.70);
    transition: color 0.2s ease;
}

.business-profile-breadcrumb a:hover {
    color: var(--gold);
}

.business-profile-main-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.business-profile-avatar {
    width: 84px;
    height: 84px;

    flex-shrink: 0;

    padding: 5px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.business-profile-avatar span {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    border-radius: 19px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 42%),
        var(--gold);

    color: var(--navy);
    font-size: 2.1rem;
    font-weight: 900;
}

.business-profile-eyebrow,
.profile-panel-heading span,
.profile-detail-item span,
.profile-panel.compact span,
.profile-unlocked-card span,
.locked-preview-card span {
    display: inline-flex;
    align-items: center;

    margin-bottom: 8px;

    color: var(--gold-dark);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.business-profile-title-block .business-profile-eyebrow,
.locked-profile-copy .business-profile-eyebrow {
    color: var(--gold);
}

.business-profile-title-block h1 {
    max-width: 780px;

    color: #ffffff;
    font-size: clamp(2.3rem, 5vw, 5.1rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.98;
}

.business-profile-title-block p {
    margin-top: 10px;

    color: rgba(255, 255, 255, 0.66);
    font-size: 1rem;
    line-height: 1.55;
}

.business-profile-hero-copy {
    max-width: 680px;
    margin-top: 24px;

    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.75;
}


/* =========================
   JSON Preview
========================= */

.profile-json-card {
    position: relative;
    overflow: hidden;

    border-radius: 26px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.profile-json-header {
    min-height: 54px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.profile-json-dots {
    display: flex;
    gap: 7px;
}

.profile-json-dots span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.30);
}

.profile-json-dots span:nth-child(2) {
    background: rgba(213, 173, 40, 0.85);
}

.profile-json-header p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
    font-weight: 750;
}

.profile-json-card pre {
    margin: 0;
    padding: 24px;

    overflow-x: auto;

    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    line-height: 1.7;
}

.profile-json-card code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    white-space: pre;
}

.profile-floating-pill {
    position: absolute;
    z-index: 4;

    display: inline-flex;
    flex-direction: column;
    gap: 3px;

    padding: 13px 15px;

    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(222, 222, 216, 0.78);
    box-shadow: 0 18px 40px rgba(7, 19, 38, 0.18);
    backdrop-filter: blur(14px);
}

.profile-floating-pill span {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.profile-floating-pill strong {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 850;
}

.profile-floating-pill-one {
    top: -22px;
    right: 28px;
}

.profile-floating-pill-two {
    bottom: -22px;
    left: 28px;
}


/* =========================
   Layout
========================= */

.business-profile-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.business-profile-sidebar,
.business-profile-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* =========================
   Panels
========================= */

.profile-panel {
    position: relative;
    overflow: hidden;

    padding: 24px;

    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(222, 222, 216, 0.92);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(31, 31, 31, 0.055);
    backdrop-filter: blur(14px);
}

.profile-panel::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;

    width: 190px;
    height: 190px;

    border-radius: 999px;
    background: rgba(213, 173, 40, 0.08);
    pointer-events: none;
}

.profile-panel-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.profile-panel-heading h2 {
    margin: 0;

    color: var(--text-main);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.profile-panel-heading p {
    margin-top: 8px;

    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}


/* =========================
   Sidebar
========================= */

.profile-detail-list {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.profile-detail-item {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.profile-detail-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.profile-detail-item strong {
    display: block;

    color: var(--text-main);
    font-size: 0.92rem;
    font-weight: 850;
    line-height: 1.45;
    word-break: break-word;
}

.profile-detail-item a {
    color: var(--text-main);
}

.profile-detail-item a:hover {
    color: var(--gold-dark);
}

.profile-api-panel {
    background:
        radial-gradient(circle at top right, rgba(213, 173, 40, 0.18), transparent 34%),
        linear-gradient(180deg, #101827 0%, #071326 100%);

    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.10);
}

.profile-api-panel::before {
    background: rgba(213, 173, 40, 0.10);
}

.profile-api-icon {
    position: relative;
    z-index: 2;

    width: 54px;
    height: 54px;
    margin-bottom: 24px;

    display: grid;
    place-items: center;

    border-radius: 18px;
    background: rgba(213, 173, 40, 0.14);
    border: 1px solid rgba(213, 173, 40, 0.26);

    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 900;
}

.profile-api-panel h3 {
    position: relative;
    z-index: 2;

    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.profile-api-panel p {
    position: relative;
    z-index: 2;

    margin-top: 12px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
    line-height: 1.65;
}

.profile-small-link {
    position: relative;
    z-index: 2;

    margin-top: 18px;

    min-height: 42px;
    padding: 0 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    border-radius: 999px;
    background: var(--gold);
    color: var(--navy);

    font-size: 0.88rem;
    font-weight: 850;
}

.profile-small-link:hover {
    background: #f0c849;
}


/* =========================
   Content
========================= */

.business-description {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.profile-panel.compact {
    min-height: 134px;
}

.profile-panel.compact strong,
.profile-unlocked-card strong {
    position: relative;
    z-index: 2;

    display: block;

    color: var(--text-main);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.45;
    word-break: break-word;
}

.profile-unlocked-card {
    position: relative;
    overflow: hidden;

    min-height: 118px;
    padding: 20px;

    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.profile-unlocked-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(213, 173, 40, 0.08));
    pointer-events: none;
}

.profile-unlocked-card a {
    color: var(--text-main);
}

.profile-unlocked-card a:hover {
    color: var(--gold-dark);
}

.profile-data-sections {
    margin-top: 18px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.profile-data-box {
    padding: 18px;

    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.profile-data-box h3 {
    margin: 0 0 12px;

    color: var(--text-main);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.profile-data-box p {
    margin: 0;

    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.profile-data-box ul {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    gap: 10px;
}

.profile-data-box li {
    padding: 12px;

    border-radius: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
}

.profile-data-box li strong {
    display: block;

    color: var(--text-main);
    font-size: 0.9rem;
}

.profile-data-box li span {
    display: block;
    margin-top: 3px;

    color: var(--text-muted);
    font-size: 0.82rem;
}

.profile-data-box a {
    color: var(--text-main);
}

.profile-data-box a:hover {
    color: var(--gold-dark);
}

.developer-box {
    background:
        radial-gradient(circle at top right, rgba(213, 173, 40, 0.16), transparent 34%),
        #ffffff;
}


/* =========================
   Locked Section
========================= */

.locked-profile-section {
    background:
        radial-gradient(circle at top right, rgba(213, 173, 40, 0.13), transparent 34%),
        #ffffff;
}

.locked-profile-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: 24px;
    align-items: center;

    margin-bottom: 22px;
}

.locked-profile-copy h2 {
    max-width: 520px;

    color: var(--text-main);
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.locked-profile-copy p {
    max-width: 560px;
    margin-top: 14px;

    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.locked-preview-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.locked-preview-card {
    position: relative;
    overflow: hidden;

    min-height: 108px;
    padding: 18px;

    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.locked-preview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(213, 173, 40, 0.10));
    pointer-events: none;
}

.locked-preview-card strong {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 900;
}

.locked-preview-card strong::before {
    content: "Locked";
    padding: 5px 8px;

    border-radius: 999px;
    background: rgba(213, 173, 40, 0.14);
    color: var(--gold-dark);

    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.locked-json-preview {
    margin: 0;
    padding: 20px;

    display: grid;
    gap: 7px;

    overflow-x: auto;

    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(213, 173, 40, 0.14), transparent 34%),
        linear-gradient(180deg, #101827 0%, #071326 100%);

    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 58px rgba(7, 19, 38, 0.12);
}

.locked-json-preview code {
    color: rgba(255, 255, 255, 0.86);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 0.82rem;
    white-space: nowrap;
}


/* =========================
   Buttons
========================= */

.business-profile-actions {
    margin-top: 22px;

    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.business-profile-actions.centered {
    justify-content: center;
}

.profile-btn {
    min-height: 46px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    text-decoration: none;

    font-size: 0.92rem;
    font-weight: 850;

    transition: all 0.2s ease;
}

.profile-btn.primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 16px 34px rgba(213, 173, 40, 0.18);
}

.profile-btn.primary:hover {
    background: #f0c849;
    transform: translateY(-2px);
}

.profile-btn.secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.profile-btn.secondary:hover {
    border-color: rgba(213, 173, 40, 0.42);
    color: var(--gold);
    transform: translateY(-2px);
}

.locked-profile-copy .profile-btn.secondary,
.profile-about-panel .profile-btn.secondary {
    background: #ffffff;
    color: var(--navy);
    border: 1px solid var(--border);
}

.locked-profile-copy .profile-btn.secondary:hover,
.profile-about-panel .profile-btn.secondary:hover {
    color: var(--gold-dark);
}


/* =========================
   Responsive
========================= */

@media (max-width: 1120px) {
    .business-profile-hero {
        grid-template-columns: 1fr;
    }

    .business-profile-hero-right {
        max-width: 820px;
    }

    .business-profile-layout {
        grid-template-columns: 1fr;
    }

    .business-profile-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .locked-profile-layout {
        grid-template-columns: 1fr;
    }

    .locked-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .business-profile-page {
        padding: 34px 18px 70px;
    }

    .business-profile-hero {
        padding: 24px;
        border-radius: 26px;
    }

    .business-profile-breadcrumb {
        margin-bottom: 26px;
    }

    .business-profile-main-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .business-profile-avatar {
        width: 74px;
        height: 74px;
        border-radius: 22px;
    }

    .business-profile-avatar span {
        border-radius: 17px;
        font-size: 1.8rem;
    }

    .business-profile-sidebar {
        grid-template-columns: 1fr;
    }

    .profile-info-grid,
    .profile-data-sections,
    .locked-preview-grid {
        grid-template-columns: 1fr;
    }

    .locked-profile-layout {
        gap: 18px;
    }

    .profile-floating-pill {
        display: none;
    }

    .business-profile-actions,
    .business-profile-actions.centered {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-btn {
        width: 100%;
    }

    .profile-panel {
        padding: 22px;
        border-radius: 22px;
    }
}

@media (max-width: 520px) {
    .business-profile-page {
        padding: 26px 16px 60px;
    }

    .business-profile-hero {
        padding: 20px;
        border-radius: 24px;
    }

    .business-profile-breadcrumb {
        font-size: 0.78rem;
    }

    .business-profile-title-block h1 {
        letter-spacing: -0.058em;
    }

    .business-profile-hero-copy {
        margin-top: 18px;
        font-size: 0.94rem;
    }

    .profile-json-card {
        border-radius: 22px;
    }

    .profile-json-card pre,
    .locked-json-preview {
        padding: 16px;
        font-size: 0.72rem;
    }

    .profile-panel {
        padding: 20px;
    }

    .locked-profile-copy h2 {
        letter-spacing: -0.052em;
    }
}

/* =========================
   Docs Alignment Additions
========================= */

.playground-doc-link {
    margin-top: 12px;

    display: inline-flex;
    align-items: center;

    color: var(--gold-dark);

    font-size: 0.84rem;
    font-weight: 850;
}

.playground-doc-link:hover {
    text-decoration: underline;
}

.playground-doc-tip {
    margin-top: 12px;
    padding: 12px 14px;

    border-radius: 16px;
    background: var(--gold-soft);
    border: 1px solid var(--border-strong);

    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.5;
}

.playground-endpoint-info {
    align-items: flex-start;
}

.playground-field label span {
    padding: 3px 7px;

    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold-dark);

    font-size: 0.68rem;
    font-weight: 900;
}

.playground-field label small {
    padding: 3px 7px;

    border-radius: 999px;
    background: var(--surface-soft);
    border: 1px solid var(--border);

    color: var(--text-muted);

    font-size: 0.68rem;
    font-weight: 900;
}

.playground-code-window {
    position: sticky;
    top: 22px;
}

.playground-code-output {
    tab-size: 2;
}

.playground-tabs {
    padding: 6px;

    width: fit-content;

    border-radius: 999px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
}

.playground-tab {
    border: none;
    box-shadow: none;
}

.playground-tab.active {
    box-shadow: 0 12px 28px rgba(7, 19, 38, 0.14);
}

.playground-run-btn {
    margin-top: 4px;
}

@media (max-width: 1180px) {
    .playground-code-window {
        position: relative;
        top: auto;
    }
}

@media (max-width: 520px) {
    .playground-tabs {
        width: 100%;
        border-radius: 18px;
    }

    .playground-tab {
        border-radius: 14px;
    }
}
/* =========================
   Authenticated Return Panel
========================= */

.authenticated-return-section {
    background:
        radial-gradient(circle at top right, rgba(213, 173, 40, 0.14), transparent 34%),
        #ffffff;
}

.authenticated-return-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    gap: 24px;
    align-items: stretch;
}

.authenticated-return-copy h2 {
    max-width: 620px;

    color: var(--text-main);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.authenticated-return-copy p {
    max-width: 660px;
    margin-top: 16px;

    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.authenticated-return-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 26px;
}

.profile-btn.secondary-light {
    background: #ffffff;
    color: var(--navy);
    border: 1px solid var(--border);
}

.profile-btn.secondary-light:hover {
    color: var(--gold-dark);
    border-color: rgba(213, 173, 40, 0.42);
    transform: translateY(-2px);
}

.profile-btn.close-btn {
    background: var(--surface-soft);
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: pointer;
}

.profile-btn.close-btn:hover {
    color: var(--text-main);
    border-color: rgba(7, 19, 38, 0.16);
    transform: translateY(-2px);
}

.authenticated-return-card {
    padding: 22px;

    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(213, 173, 40, 0.12), transparent 34%),
        var(--surface-soft);

    border: 1px solid var(--border);
}

.authenticated-return-icon {
    width: 56px;
    height: 56px;

    margin-bottom: 20px;

    display: grid;
    place-items: center;

    border-radius: 18px;
    background: var(--gold-soft);
    color: var(--gold-dark);

    font-size: 1rem;
    font-weight: 900;
}

.authenticated-return-card h3 {
    margin: 0;

    color: var(--text-main);
    font-size: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.authenticated-return-card > p {
    margin-top: 10px;

    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.authenticated-return-list {
    display: grid;
    gap: 10px;

    margin-top: 18px;
}

.authenticated-return-list div {
    padding: 14px;

    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;

    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
}

.authenticated-return-list span {
    width: 34px;
    height: 34px;

    grid-row: span 2;

    display: grid;
    place-items: center;

    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--gold-dark);

    font-size: 0.82rem;
    font-weight: 900;
}

.authenticated-return-list strong {
    color: var(--text-main);
    font-size: 0.92rem;
    font-weight: 900;
}

.authenticated-return-list p {
    margin-top: 4px;

    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

@media (max-width: 1120px) {
    .authenticated-return-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .authenticated-return-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .authenticated-return-actions .profile-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .authenticated-return-card {
        padding: 18px;
        border-radius: 20px;
    }

    .authenticated-return-list div {
        grid-template-columns: 1fr;
    }

    .authenticated-return-list span {
        margin-bottom: 10px;
        grid-row: auto;
    }
}