.cw-sh {
    --cw-teal: #39B3A4;
    --cw-teal-dark: #2E9E90;
    --cw-mustard: #F5B301;
    --cw-coral: #E8A38C;
    --cw-ink: #3E3A39;
    --cw-muted: #8C877F;
    padding: 64px 20px 8px;
    box-sizing: border-box;
    font-family: inherit;
    color: var(--cw-ink)
}

.cw-sh * {
    box-sizing: border-box
}

.cw-sh__inner {
    max-width: 960px;
    margin: 0 auto
}

.cw-sh__profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px
}

.cw-sh__avatar-link {
    flex: 0 0 auto;
    display: block;
    padding: 4px;
    border-radius: 50%;
    background: conic-gradient(from 200deg, var(--cw-teal), var(--cw-mustard), var(--cw-coral), var(--cw-teal));
    transition: transform .25s ease
}

.cw-sh__avatar-link:hover {
    transform: scale(1.04)
}

.cw-sh__avatar {
    display: block;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    background: #fff
}

.cw-sh__meta {
    min-width: 0;
    max-width: 480px
}

.cw-sh__toprow {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.cw-sh__handle {
    font-size: 24px;
    font-weight: 600;
    color: var(--cw-ink);
    text-decoration: none;
    letter-spacing: -.01em
}

.cw-sh__handle:hover {
    color: var(--cw-teal-dark)
}

.cw-sh__follow {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    background: var(--cw-teal);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease
}

.cw-sh__follow:hover {
    background: var(--cw-teal-dark);
    transform: translateY(-1px);
    color: #fff
}

.cw-sh__stats {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 14px 0 12px;
    padding: 0;
    font-size: 16px;
    color: var(--cw-ink)
}

.cw-sh__stats li {
    margin: 0
}

.cw-sh__stats strong {
    font-weight: 700
}

.cw-sh__bio p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5
}

.cw-sh__name {
    font-weight: 700
}

.cw-sh__category {
    color: var(--cw-muted);
    font-size: 14px !important
}

.cw-sh__highlights {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin: 40px 0 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 4px 8px
}

.cw-sh__highlights::-webkit-scrollbar {
    display: none
}

.cw-sh__hl {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 112px;
    text-decoration: none;
    color: var(--cw-ink)
}

.cw-sh__ring {
    display: block;
    width: 104px;
    height: 104px;
    padding: 3px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px #e4ded3;
    transition: box-shadow .2s ease, transform .2s ease
}

.cw-sh__ring img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover
}

.cw-sh__hl:hover .cw-sh__ring {
    box-shadow: 0 0 0 3px var(--cw-teal);
    transform: translateY(-2px)
}

.cw-sh__label {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

/* Live feed (Instagram Feed app) styling so it reads as one block with the header */
.theme-app-extension__insPhoto .section-title {
    display: none
}

.theme-app-extension__insPhoto .ins-photo-container {
    gap: 12px
}

.theme-app-extension__insPhoto .ins-photo-container>div {
    border-radius: 14px;
    overflow: hidden
}

.theme-app-extension__insPhoto .ins-photo-container img {
    transition: transform .35s ease
}

.theme-app-extension__insPhoto .ins-photo-container>div:hover img {
    transform: scale(1.04)
}

@media (max-width:749px) {
    .cw-sh {
        padding: 44px 16px 4px
    }

    .cw-sh__profile {
        gap: 18px;
        align-items: flex-start;
        justify-content: flex-start
    }

    .cw-sh__avatar {
        width: 84px;
        height: 84px;
        border-width: 3px
    }

    .cw-sh__avatar-link {
        padding: 3px
    }

    .cw-sh__handle {
        font-size: 18px
    }

    .cw-sh__toprow {
        gap: 10px
    }

    .cw-sh__follow {
        padding: 6px 16px;
        font-size: 13px
    }

    .cw-sh__stats {
        gap: 14px;
        font-size: 14px;
        margin: 10px 0 8px
    }

    .cw-sh__bio p {
        font-size: 14px
    }

    .cw-sh__highlights {
        justify-content: flex-start;
        gap: 18px;
        margin-top: 26px
    }

    .cw-sh__hl {
        width: 76px;
        gap: 8px
    }

    .cw-sh__ring {
        width: 70px;
        height: 70px
    }

    .cw-sh__label {
        font-size: 12px
    }

    .theme-app-extension__insPhoto .ins-photo-container {
        gap: 6px
    }

    .theme-app-extension__insPhoto .ins-photo-container>div {
        border-radius: 10px
    }
}.cw-sh a.cw-sh__follow,
.cw-sh a.cw-sh__follow:hover {
    color: #fff !important
}

.cw-sh a.cw-sh__hl {
    color: var(--cw-ink) !important
}.cw-sh__stats li {
    white-space: nowrap
}

@media (max-width:749px) {
    .cw-sh__stats {
        gap: 12px;
        font-size: 13px;
        flex-wrap: wrap
    }

    .cw-sh__highlights {
        gap: 10px
    }

    .cw-sh__hl {
        width: 82px
    }

    .cw-sh__ring {
        width: 66px;
        height: 66px
    }

    .cw-sh__label {
        white-space: normal;
        overflow: visible;
        font-size: 11.5px;
        line-height: 1.2
    }
}