.wt-user-profile-main {
    background:
        radial-gradient(circle at 82% 0, rgba(224, 0, 122, .045), transparent 28rem),
        #f7f7f9;
}

.wt-user-profile {
    width: min(100%, 1340px);
    margin: 0 auto;
    color: var(--gray-900);
    font-family: 'DM Sans', sans-serif;
}

.wt-user-profile__hero,
.wt-user-profile__tabs,
.wt-user-profile__info-card,
.wt-user-profile__feed,
.wt-user-profile__ad-card {
    border: 1px solid var(--gray-200);
    background: var(--white);
    box-shadow: 0 1px 0 rgba(24, 24, 27, .02);
}

.wt-user-profile__hero {
    position: relative;
    z-index: 3;
    overflow: visible;
    border-radius: 18px 18px 0 0;
}

.wt-user-profile__cover {
    position: relative;
    height: clamp(210px, 21vw, 282px);
    overflow: hidden;
    border-radius: 17px 17px 0 0;
    isolation: isolate;
    background:
        linear-gradient(125deg, rgba(255, 255, 255, .94), rgba(255, 237, 246, .88)),
        linear-gradient(135deg, #f5f5f6, #fff);
}

.wt-user-profile__cover.has-image {
    background-image:
        linear-gradient(180deg, rgba(20, 12, 17, .04), rgba(20, 12, 17, .2)),
        var(--profile-cover);
    background-position: center;
    background-size: cover;
}

.wt-user-profile__cover::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(224, 0, 122, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(224, 0, 122, .05) 1px, transparent 1px);
    background-size: 44px 44px;
    content: '';
    mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.wt-user-profile__cover.has-image::before,
.wt-user-profile__cover.has-image .wt-user-profile__cover-orbit,
.wt-user-profile__cover.has-image .wt-user-profile__cover-mark {
    display: none;
}

.wt-user-profile__cover-orbit {
    position: absolute;
    border: 1px solid rgba(224, 0, 122, .15);
    border-radius: 50%;
}

.wt-user-profile__cover-orbit--one {
    top: -155px;
    right: -70px;
    width: 510px;
    height: 510px;
}

.wt-user-profile__cover-orbit--two {
    top: 34px;
    right: 112px;
    width: 300px;
    height: 300px;
    border-color: rgba(224, 0, 122, .1);
}

.wt-user-profile__cover-mark {
    position: absolute;
    top: 50%;
    right: clamp(64px, 10vw, 150px);
    color: rgba(224, 0, 122, .075);
    font: 800 clamp(7rem, 15vw, 13rem)/1 'Outfit', sans-serif;
    transform: translateY(-50%);
    user-select: none;
}

.wt-user-profile__cover-edit {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 999px;
    background: rgba(24, 24, 27, .72);
    box-shadow: 0 5px 18px rgba(24, 24, 27, .18);
    color: var(--white);
    font: 700 .78rem/1 'DM Sans', sans-serif;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background-color .18s ease, transform .18s ease;
}

.wt-user-profile__cover-edit:hover {
    background: rgba(24, 24, 27, .86);
    transform: translateY(-1px);
}

.wt-user-profile__cover-edit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.wt-user-profile__identity {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 184px minmax(220px, 1fr) auto;
    align-items: end;
    gap: 24px;
    min-height: 132px;
    padding: 0 32px 26px;
}

.wt-user-profile__avatar-wrap {
    position: relative;
    align-self: start;
    width: 168px;
    height: 168px;
    margin-top: -68px;
    padding: 5px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(24, 24, 27, .13);
}

.wt-user-profile__avatar {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    object-fit: cover;
}

.wt-user-profile__avatar-edit {
    position: absolute;
    z-index: 3;
    right: 7px;
    bottom: 7px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--gray-900);
    box-shadow: 0 4px 12px rgba(24, 24, 27, .22);
    color: var(--white);
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
}

.wt-user-profile__avatar-edit:hover {
    background: var(--fuchsia-600);
    transform: scale(1.04);
}

.wt-user-profile__avatar-edit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.wt-user-profile__identity-copy {
    min-width: 0;
    padding-bottom: 3px;
}

.wt-user-profile__identity-copy h1 {
    overflow: hidden;
    margin: 0;
    color: var(--gray-900);
    font: 700 clamp(1.55rem, 2.5vw, 2.15rem)/1.12 'Outfit', sans-serif;
    text-overflow: ellipsis;
}

.wt-user-profile__handle {
    margin-top: 5px;
    color: var(--gray-500);
    font-size: .92rem;
}

.wt-user-profile__member-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 7px;
    color: var(--gray-500);
    font-size: .78rem;
}

.wt-user-profile__member-meta span {
    color: var(--gray-300);
}

.wt-user-profile__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-bottom: 5px;
}

.wt-user-profile__desktop-search-wrap {
    position: relative;
    width: min(24vw, 250px);
}

.wt-user-profile__button,
.wt-user-profile__desktop-search,
.wt-user-profile__mobile-search label {
    min-height: 44px;
    border: 1px solid var(--gray-200);
    border-radius: 11px;
    background: var(--white);
}

.wt-user-profile__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 142px;
    padding: 0 17px;
    color: var(--gray-800);
    font: 650 .86rem/1 'DM Sans', sans-serif;
    cursor: pointer;
    transition: border-color .16s ease, background-color .16s ease, transform .16s ease;
}

.wt-user-profile__button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.wt-user-profile__button--primary {
    border-color: var(--gray-900);
    background: var(--gray-900);
    color: var(--white);
}

.wt-user-profile__button:hover {
    transform: translateY(-1px);
}

.wt-user-profile__button--primary:hover {
    border-color: var(--fuchsia-600);
    background: var(--fuchsia-600);
}

.wt-user-profile__desktop-search,
.wt-user-profile__mobile-search label {
    display: flex;
    align-items: center;
    gap: 9px;
    width: min(24vw, 250px);
    padding: 0 13px;
    color: var(--gray-400);
}

.wt-user-profile__desktop-search {
    width: 100%;
    padding-right: 36px;
}

.wt-user-profile__desktop-search svg,
.wt-user-profile__mobile-search svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.wt-user-profile__desktop-search input,
.wt-user-profile__mobile-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--gray-800);
    font: 400 .84rem/1 'DM Sans', sans-serif;
    outline: 0!important;
}

.wt-user-profile__desktop-search:focus-within,
.wt-user-profile__mobile-search label:focus-within {
    border-color: var(--fuchsia-400);
    box-shadow: 0 0 0 3px rgba(224, 0, 122, .09);
    color: var(--fuchsia-500);
}

.wt-user-profile__search-loader {
    position: absolute;
    top: 50%;
    right: 13px;
    width: 15px;
    height: 15px;
    margin-top: -7.5px;
    border: 2px solid var(--gray-200);
    border-top-color: var(--fuchsia-500);
    border-radius: 50%;
    animation: wt-profile-search-spin .65s linear infinite;
    pointer-events: none;
}

.wt-user-profile__search-loader[hidden],
.wt-user-profile__search-results[hidden] {
    display: none;
}

.wt-user-profile__search-results {
    position: absolute;
    z-index: 30;
    top: calc(100% + 7px);
    right: 0;
    width: min(360px, calc(100vw - 32px));
    max-height: min(390px, 55vh);
    overflow-y: auto;
    padding: 7px;
    border: 1px solid var(--gray-200);
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(24, 24, 27, .16);
    color: var(--gray-800);
}

.wt-user-profile__search-results a {
    display: grid;
    gap: 3px;
    padding: 10px 11px;
    border-radius: 9px;
    color: inherit;
    text-decoration: none;
    transition: background-color .14s ease, color .14s ease;
}

.wt-user-profile__search-results a:hover,
.wt-user-profile__search-results a.is-active {
    background: rgba(224, 0, 122, .07);
    color: var(--fuchsia-700);
}

.wt-user-profile__search-results strong,
.wt-user-profile__search-results span,
.wt-user-profile__search-results small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wt-user-profile__search-results strong {
    color: var(--gray-900);
    font: 700 .86rem/1.25 'DM Sans', sans-serif;
}

.wt-user-profile__search-results span {
    color: var(--gray-600);
    font-size: .76rem;
    line-height: 1.35;
}

.wt-user-profile__search-results small {
    color: var(--fuchsia-600);
    font-size: .7rem;
}

.wt-user-profile__search-empty {
    margin: 0;
    padding: 15px 12px;
    color: var(--gray-500);
    font-size: .78rem;
    line-height: 1.4;
    text-align: center;
}

@keyframes wt-profile-search-spin {
    to { transform: rotate(360deg); }
}

.wt-user-profile__mobile-toolbar,
.wt-user-profile__mobile-search {
    display: none;
}

.wt-user-profile__tabs {
    min-height: 56px;
    border-top: 0;
    border-radius: 0 0 18px 18px;
    padding: 0 30px;
}

.wt-user-profile__tabs a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 0 4px;
    color: var(--gray-800);
    font-size: .85rem;
    font-weight: 700;
}

.wt-user-profile__tabs a::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--fuchsia-500);
    content: '';
}

.wt-user-profile__layout {
    display: grid;
    grid-template-columns: minmax(260px, 315px) minmax(0, 1fr);
    align-items: start;
    gap: 22px;
    margin-top: 22px;
}

.wt-user-profile__aside {
    display: grid;
    gap: 14px;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.wt-user-profile__info-card,
.wt-user-profile__feed,
.wt-user-profile__ad-card {
    border-radius: 15px;
}

.wt-user-profile__info-card {
    padding: 22px;
}

.wt-user-profile__info-card h2,
.wt-user-profile__feed-heading h2 {
    margin: 0;
    color: var(--gray-900);
    font: 700 1.04rem/1.2 'Outfit', sans-serif;
}

.wt-user-profile__info-card dl {
    margin: 15px 0 0;
}

.wt-user-profile__info-card dl > div {
    display: grid;
    gap: 5px;
    padding: 13px 0;
    border-top: 1px solid var(--gray-100);
}

.wt-user-profile__info-card dt {
    color: var(--gray-500);
    font-size: .73rem;
    font-weight: 600;
}

.wt-user-profile__info-card dd {
    overflow-wrap: anywhere;
    color: var(--gray-800);
    font-size: .88rem;
    font-weight: 600;
}

.wt-user-profile__about {
    padding-top: 15px;
    border-top: 1px solid var(--gray-100);
}

.wt-user-profile__about h3 {
    color: var(--gray-700);
    font-size: .76rem;
    font-weight: 700;
}

.wt-user-profile__about p {
    margin-top: 6px;
    color: var(--gray-500);
    font-size: .8rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.wt-user-profile__ad-card {
    position: relative;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0;
    min-height: 140px;
    overflow: hidden;
    padding: 7px;
    border-color: rgba(224, 0, 122, .2);
    background: linear-gradient(135deg, #fff 0%, #fff5fa 100%);
    color: var(--gray-800);
    transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.wt-user-profile__ad-card::after {
    position: absolute;
    top: -42px;
    right: -42px;
    width: 110px;
    height: 110px;
    border: 18px solid rgba(224, 0, 122, .045);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

.wt-user-profile__ad-card:hover {
    border-color: rgba(224, 0, 122, .42);
    box-shadow: 0 8px 24px rgba(224, 0, 122, .08);
    transform: translateY(-2px);
}

.wt-user-profile__ad-media {
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 126px;
    overflow: hidden;
    border-radius: 11px;
    background: var(--gray-100);
    box-shadow: inset 0 0 0 1px rgba(24, 24, 27, .06);
}

.wt-user-profile__ad-viewport,
.wt-user-profile__ad-track,
.wt-user-profile__ad-slide {
    display: block;
    width: 100%;
    height: 100%;
}

.wt-user-profile__ad-viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wt-user-profile__ad-track {
    display: flex;
    transform: translate3d(calc(var(--profile-ad-slide, 0) * -100%), 0, 0);
    transition: transform .38s cubic-bezier(.22, .72, .3, 1);
    will-change: transform;
}

.wt-user-profile__ad-slide {
    flex: 0 0 100%;
}

.wt-user-profile__ad-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.wt-user-profile__ad-card:hover .wt-user-profile__ad-slide img {
    transform: scale(1.025);
}

.wt-user-profile__ad-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    place-items: center;
    width: 28px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 0;
    appearance: none;
    background: transparent;
    box-shadow: none;
    color: var(--white);
    cursor: pointer;
    opacity: .9;
    transform: translateY(-50%);
    transition: opacity .16s ease;
}

.wt-user-profile__ad-arrow--prev {
    left: 1px;
}

.wt-user-profile__ad-arrow--next {
    right: 1px;
}

.wt-user-profile__ad-arrow svg {
    width: 19px;
    height: 19px;
    fill: none;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, .72)) drop-shadow(0 2px 1px rgba(0, 0, 0, .55));
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3.35;
    transition: filter .16s ease, transform .16s ease;
}

.wt-user-profile__ad-arrow:hover,
.wt-user-profile__ad-arrow:focus-visible {
    opacity: 1;
}

.wt-user-profile__ad-arrow:focus-visible {
    outline: 0;
}

.wt-user-profile__ad-arrow:hover svg,
.wt-user-profile__ad-arrow:focus-visible svg {
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, .82)) drop-shadow(0 2px 2px rgba(0, 0, 0, .7));
    transform: scale(1.1);
}

.wt-user-profile__ad-dots {
    position: absolute;
    z-index: 2;
    right: 7px;
    bottom: 7px;
    left: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    pointer-events: none;
}

.wt-user-profile__ad-dots button {
    width: 5px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .64);
    box-shadow: 0 1px 4px rgba(24, 24, 27, .28);
    cursor: pointer;
    pointer-events: auto;
    transition: width .18s ease, background-color .18s ease;
}

.wt-user-profile__ad-dots button[aria-current="true"] {
    width: 15px;
    background: var(--white);
}

.wt-user-profile__ad-body {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 12px 10px 9px 14px;
    color: var(--gray-800);
}

.wt-user-profile__ad-copy {
    display: grid;
    min-width: 0;
}

.wt-user-profile__ad-copy small {
    color: var(--fuchsia-600);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.wt-user-profile__ad-copy strong {
    overflow: hidden;
    margin-top: 2px;
    font: 700 .94rem/1.2 'Outfit', sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wt-user-profile__ad-copy > span {
    overflow: hidden;
    margin-top: 2px;
    color: var(--gray-500);
    font-size: .7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wt-user-profile__ad-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-top: auto;
    padding-top: 10px;
    color: var(--fuchsia-600);
    font-size: .76rem;
    font-weight: 750;
}

.wt-user-profile__ad-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.wt-user-profile__feed {
    min-width: 0;
    padding: 18px;
}

.wt-user-profile__composer {
    margin-bottom: 18px;
}

.wt-user-profile__feed-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding: 1px 4px 14px;
}

.wt-user-profile__eyebrow {
    margin: 0 0 3px;
    color: var(--fuchsia-600);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.wt-user-profile__search-status {
    min-height: 0;
    margin: 0 4px;
    color: var(--gray-500);
    font-size: .75rem;
}

.wt-user-profile__search-status:not(:empty) {
    min-height: 28px;
    padding-bottom: 10px;
}

.wt-user-profile__confessions {
    display: grid;
    gap: 14px;
}

.wt-user-profile__confessions > .confession[hidden] {
    display: none;
}

.wt-user-profile__empty,
.wt-user-profile__filter-empty,
.wt-user-profile--missing {
    text-align: center;
}

.wt-user-profile__empty,
.wt-user-profile__filter-empty {
    padding: 52px 24px;
    border: 1px dashed var(--gray-300);
    border-radius: 14px;
    background: var(--gray-50);
}

.wt-user-profile__empty > span,
.wt-user-profile__filter-empty > svg {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 13px;
    border-radius: 50%;
    background: var(--white);
    color: var(--fuchsia-500);
    box-shadow: var(--shadow-sm);
}

.wt-user-profile__empty svg,
.wt-user-profile__filter-empty > svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.wt-user-profile__empty h3,
.wt-user-profile__filter-empty h3 {
    margin: 0;
    color: var(--gray-800);
    font: 700 1rem/1.3 'Outfit', sans-serif;
}

.wt-user-profile__empty p,
.wt-user-profile__filter-empty p {
    margin: 5px 0 0;
    color: var(--gray-500);
    font-size: .8rem;
}

.wt-user-profile__empty a {
    display: inline-flex;
    margin-top: 15px;
    padding: 9px 14px;
    border-radius: 9px;
    background: var(--fuchsia-500);
    color: var(--white);
    font-size: .76rem;
    font-weight: 700;
}

.wt-user-profile__filter-empty[hidden] {
    display: none;
}

.wt-user-profile__limit-note {
    margin: 16px 0 0;
    color: var(--gray-400);
    font-size: .72rem;
    text-align: center;
}

.wt-user-profile--missing {
    max-width: 620px;
    margin: 8vh auto 0;
    padding: 64px 30px;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: var(--white);
}

.wt-user-profile--missing h1 {
    font: 700 1.7rem/1.2 'Outfit', sans-serif;
}

.wt-user-profile--missing p {
    margin-top: 8px;
    color: var(--gray-500);
}

.wt-user-profile--missing a {
    display: inline-flex;
    margin-top: 20px;
    color: var(--fuchsia-600);
    font-weight: 700;
}

.wt-user-profile :is(a, button, input):focus-visible {
    outline: 3px solid rgba(224, 0, 122, .22);
    outline-offset: 2px;
}

@media (max-width: 1050px) {
    .wt-user-profile__identity {
        grid-template-columns: 154px minmax(200px, 1fr);
    }

    .wt-user-profile__avatar-wrap {
        width: 142px;
        height: 142px;
        margin-top: -52px;
    }

    .wt-user-profile__actions {
        grid-column: 2;
        justify-content: flex-start;
        padding-bottom: 0;
    }

    .wt-user-profile__layout {
        grid-template-columns: 270px minmax(0, 1fr);
    }
}

@media (max-width: 860px) {
    .wt-user-profile__layout {
        grid-template-columns: 1fr;
    }

    .wt-user-profile__aside {
        position: static;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .wt-user-profile__ad-card {
        align-self: stretch;
    }
}

@media (max-width: 640px) {
    .wt-user-profile-main {
        padding-right: 0 !important;
        padding-left: 0 !important;
        background: var(--white);
    }

    .wt-user-profile__hero,
    .wt-user-profile__tabs,
    .wt-user-profile__info-card,
    .wt-user-profile__feed,
    .wt-user-profile__ad-card {
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .wt-user-profile__hero {
        border-top: 0;
    }

    .wt-user-profile__mobile-toolbar {
        position: absolute;
        z-index: 5;
        top: 12px;
        right: 13px;
        left: 13px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        pointer-events: none;
    }

    .wt-user-profile__mobile-tool {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, .7);
        border-radius: 50%;
        background: rgba(255, 255, 255, .88);
        box-shadow: 0 4px 16px rgba(24, 24, 27, .11);
        color: var(--gray-800);
        cursor: pointer;
        pointer-events: auto;
        backdrop-filter: blur(10px);
    }

    .wt-user-profile__mobile-tool svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2;
    }

    .wt-user-profile__mobile-search:not([hidden]) {
        position: absolute;
        z-index: 6;
        top: 60px;
        right: 13px;
        left: 13px;
        display: block;
    }

    .wt-user-profile__mobile-search label {
        width: 100%;
        box-shadow: 0 8px 22px rgba(24, 24, 27, .14);
    }

    .wt-user-profile__cover {
        height: 184px;
        border-radius: 0;
    }

    .wt-user-profile__cover-edit {
        right: 12px;
        bottom: 12px;
        min-height: 36px;
        padding: 0 12px;
        font-size: .7rem;
    }

    .wt-user-profile__cover::before {
        background-size: 32px 32px;
    }

    .wt-user-profile__cover-orbit--one {
        top: -80px;
        right: -115px;
        width: 330px;
        height: 330px;
    }

    .wt-user-profile__cover-orbit--two {
        top: 40px;
        right: 28px;
        width: 180px;
        height: 180px;
    }

    .wt-user-profile__cover-mark {
        right: 42px;
        font-size: 7rem;
    }

    .wt-user-profile__identity {
        grid-template-columns: 112px minmax(0, 1fr);
        align-items: center;
        gap: 15px;
        min-height: 0;
        padding: 0 18px 20px;
    }

    .wt-user-profile__avatar-wrap {
        width: 112px;
        height: 112px;
        margin-top: -40px;
        padding: 4px;
    }

    .wt-user-profile__avatar-edit {
        right: 3px;
        bottom: 3px;
        width: 34px;
        height: 34px;
        border-width: 2px;
    }

    .wt-user-profile__avatar-edit svg {
        width: 16px;
        height: 16px;
    }

    .wt-user-profile__identity-copy {
        align-self: start;
        padding-top: 11px;
    }

    .wt-user-profile__identity-copy h1 {
        font-size: 1.48rem;
    }

    .wt-user-profile__handle {
        margin-top: 3px;
        font-size: .82rem;
    }

    .wt-user-profile__member-meta {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 4px 6px;
        margin-top: 5px;
        font-size: .7rem;
    }

    .wt-user-profile__actions {
        grid-column: 1 / -1;
        display: block;
        width: 100%;
        margin-top: -2px;
    }

    .wt-user-profile__button {
        width: 100%;
    }

    .wt-user-profile__desktop-search-wrap {
        display: none;
    }

    .wt-user-profile__tabs {
        min-height: 54px;
        padding: 0 18px;
    }

    .wt-user-profile__tabs a {
        min-height: 54px;
    }

    .wt-user-profile__layout {
        gap: 14px;
        margin-top: 12px;
    }

    .wt-user-profile__aside {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wt-user-profile__info-card {
        padding: 19px 20px;
    }

    .wt-user-profile__info-card dl {
        margin-top: 12px;
    }

    .wt-user-profile__info-card dl > div {
        grid-template-columns: 116px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
    }

    .wt-user-profile__ad-card {
        margin: 0 14px;
        border: 1px solid rgba(224, 0, 122, .2);
        border-radius: 13px;
    }

    .wt-user-profile__feed {
        padding: 17px 14px 24px;
    }

    .wt-user-profile__composer {
        margin-bottom: 15px;
    }

    .wt-user-profile__feed-heading {
        padding-right: 2px;
        padding-left: 2px;
    }

}

@media (prefers-reduced-motion: reduce) {
    .wt-user-profile *,
    .wt-user-profile *::before,
    .wt-user-profile *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
