/**
 * GC Live Profile section v1 — restyled to match Guyscat brand.
 * Loaded on /live/<slug>/(profile|videos|photos|feed)/
 *
 * Uses theme CSS vars defined in style.css:
 *   --gc-bg / --gc-bg-alt / --gc-surface / --gc-text / --gc-text-soft
 *   --gc-accent (teal) / --gc-accent-strong / --gc-accent-soft
 *   --gc-border / --gc-border-strong / --gc-radius / --gc-shadow
 *   --gc-page-gutter
 */

.gc-live-profile {
    margin-top: 28px;
    padding: 28px 0 56px;
    color: var(--gc-text);
    font-family: inherit;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--gc-bg-alt-rgb), 0.6) 80px, rgba(var(--gc-bg-alt-rgb), 0.6) 100%);
}

.gc-live-profile__wrap {
    width: calc(100% - (var(--gc-page-gutter) * 2));
    max-width: none;
    margin: 0 auto;
}

/* === Cover ============================================================ */
.gc-live-profile__cover {
    position: relative;
    border-radius: var(--gc-radius);
    overflow: hidden;
    background: var(--gc-bg-alt);
    border: 1px solid var(--gc-border);
    box-shadow: var(--gc-shadow-soft);
    min-height: 240px;
}

.gc-live-profile__banner {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    filter: brightness(.7) saturate(1.05);
}

.gc-live-profile__banner--placeholder {
    background:
        radial-gradient(ellipse at top, rgba(207, 138, 52, .15), transparent 60%),
        linear-gradient(180deg, var(--gc-bg-alt) 0%, var(--gc-bg) 100%);
    height: 240px;
}

.gc-live-profile__cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(var(--gc-bg-rgb), .15) 0%, rgba(var(--gc-bg-rgb), .92) 92%);
    pointer-events: none;
}

.gc-live-profile__cover-inner {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 22px 28px;
    flex-wrap: wrap;
}

.gc-live-profile__avatar {
    position: relative;
    width: 104px;
    height: 104px;
    flex: 0 0 104px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gc-accent);
    background: var(--gc-bg);
    box-shadow: 0 10px 26px rgba(3, 8, 21, .55);
}

.gc-live-profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gc-live-profile__live-badge {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    padding: 2px 9px;
    border-radius: var(--gc-radius-pill);
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(220, 38, 38, .6);
}

.gc-live-profile__identity {
    flex: 1 1 auto;
    min-width: 0;
}

.gc-live-profile__name {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
    letter-spacing: -0.01em;
}

.gc-live-profile__actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 0 0 auto;
}

/* === Action buttons =================================================== */
.gc-live-profile__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 22px;
    border: 0;
    border-radius: var(--gc-radius-pill);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
    line-height: 1;
}
.gc-live-profile__btn:hover { transform: translateY(-1px); }

.gc-live-profile__btn--subscribe {
    background: var(--gc-accent);
    color: var(--gc-bg);
    box-shadow: 0 6px 16px rgba(207, 138, 52, .35);
}
.gc-live-profile__btn--subscribe:hover {
    background: var(--gc-accent-strong);
    color: var(--gc-bg);
    box-shadow: 0 8px 22px rgba(207, 138, 52, .55);
}
.gc-live-profile__btn--tip {
    background: var(--gc-accent-soft);
    color: var(--gc-accent);
    border: 1px solid var(--gc-accent);
}
.gc-live-profile__btn--tip:hover {
    background: var(--gc-accent);
    color: var(--gc-bg);
}
.gc-live-profile__btn--pm {
    background: rgba(255, 255, 255, .06);
    color: var(--gc-text);
    border: 1px solid var(--gc-border-strong);
}
.gc-live-profile__btn--pm:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .25);
    color: #fff;
}

/* === Tabs ============================================================= */
.gc-live-profile__tabs {
    display: flex;
    gap: 6px;
    margin: 22px 0 26px;
    padding: 6px;
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius-pill);
    overflow-x: auto;
    scrollbar-width: none;
}
.gc-live-profile__tabs::-webkit-scrollbar { display: none; }

.gc-live-profile__tab {
    flex: 1 1 auto;
    padding: 11px 22px;
    border-radius: var(--gc-radius-pill);
    color: var(--gc-text-soft);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: background-color .15s ease, color .15s ease;
    white-space: nowrap;
}
.gc-live-profile__tab:hover {
    color: var(--gc-text);
    background: rgba(207, 138, 52, .08);
}
.gc-live-profile__tab.is-active {
    background: var(--gc-accent);
    color: var(--gc-bg);
}

/* === Panels =========================================================== */
.gc-live-profile__panel { display: block; }
.gc-live-profile__panel[hidden] { display: none; }

.gc-live-profile__panel-empty {
    padding: 48px 24px;
    text-align: center;
    color: var(--gc-text-soft);
    font-size: 14px;
    background: var(--gc-surface);
    border-radius: var(--gc-radius);
    border: 1px dashed var(--gc-border-strong);
}

/* === Profile tab two-column =========================================== */
.gc-live-profile__layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 22px;
}
@media (max-width: 1023px) {
    .gc-live-profile__layout { grid-template-columns: 1fr; }
}

.gc-live-profile__col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gc-live-profile__card {
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius);
    padding: 24px 26px;
    box-shadow: var(--gc-shadow-soft);
}

.gc-live-profile__card-title {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gc-text);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.gc-live-profile__bio {
    margin: 0 0 18px;
    color: var(--gc-text-soft);
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-line;
}

/* Details key/value rows */
.gc-live-profile__details { margin: 0; display: grid; grid-template-columns: 1fr; gap: 0; }
.gc-live-profile__row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid var(--gc-border);
    font-size: 14px;
}
.gc-live-profile__row:last-child { border-bottom: 0; }
.gc-live-profile__row-key { color: var(--gc-text-soft); font-weight: 500; margin: 0; }
.gc-live-profile__row-val { color: var(--gc-text); margin: 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.gc-live-profile__flag {
    display: inline-block;
    width: 22px; height: 14px;
    background-size: cover; background-position: center;
    border-radius: calc(var(--gc-radius-scale, 1) * 2px);
    box-shadow: 0 0 0 1px var(--gc-border);
    flex: 0 0 22px;
}

/* Interest chips */
.gc-live-profile__chips {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--gc-border);
}
.gc-live-profile__chips-label {
    display: block;
    color: var(--gc-text-soft);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}
.gc-live-profile__chips-list { display: flex; flex-wrap: wrap; gap: 6px; }
.gc-live-profile__chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    background: var(--gc-accent-soft);
    color: var(--gc-accent);
    border: 1px solid rgba(207, 138, 52, .25);
    border-radius: var(--gc-radius-pill);
    font-size: 12px;
    font-weight: 500;
}

/* Card head with see-all */
.gc-live-profile__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.gc-live-profile__card-head .gc-live-profile__card-title { margin: 0; }
.gc-live-profile__see-all {
    color: var(--gc-accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}
.gc-live-profile__see-all:hover { color: var(--gc-accent-strong); }

/* Albums preview grid (3-up) */
.gc-live-profile__albums {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
@media (max-width: 480px) {
    .gc-live-profile__albums { grid-template-columns: repeat(2, 1fr); }
}
.gc-live-profile__album {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: calc(var(--gc-radius-scale, 1) * 12px);
    overflow: hidden;
    background: var(--gc-bg-alt);
    text-decoration: none;
}
.gc-live-profile__album-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}
.gc-live-profile__album:hover .gc-live-profile__album-img { transform: scale(1.05); }
.gc-live-profile__album-img--ph { background: linear-gradient(135deg, var(--gc-bg-alt), var(--gc-bg)); }
.gc-live-profile__album-meta {
    position: absolute;
    inset: auto 0 0 0;
    padding: 8px 10px;
    background: linear-gradient(180deg, transparent, rgba(3, 8, 21, .92));
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 11px;
}
.gc-live-profile__album-count { font-weight: 700; color: var(--gc-accent); }
.gc-live-profile__album-title { color: var(--gc-text); opacity: .92; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* === Schedule ========================================================= */
.gc-live-profile__schedule { list-style: none; margin: 0; padding: 0; }
.gc-live-profile__schedule-day {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gc-border);
    font-size: 14px;
    align-items: start;
}
.gc-live-profile__schedule-day:last-child { border-bottom: 0; }
.gc-live-profile__schedule-day-name { color: var(--gc-text-soft); font-weight: 500; padding-top: 2px; }
.gc-live-profile__schedule-day.is-today .gc-live-profile__schedule-day-name { color: var(--gc-accent); font-weight: 700; }
.gc-live-profile__schedule-slots { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.gc-live-profile__schedule-slot {
    color: var(--gc-text);
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.gc-live-profile__schedule-title { color: var(--gc-text-soft); font-weight: 400; font-size: 12px; }
.gc-live-profile__schedule-empty-slot { color: rgba(157, 175, 207, .35); }
.gc-live-profile__schedule-empty {
    margin: 0;
    color: var(--gc-text-soft);
    font-size: 13px;
    text-align: center;
    padding: 24px 8px;
}
.gc-live-profile__schedule-tz {
    margin: 12px 0 0;
    color: rgba(157, 175, 207, .65);
    font-size: 11px;
    font-style: italic;
    text-align: right;
}

/* === Media grid (Clips, VODs, Photos) ================================= */
.gc-live-profile__videos { display: flex; flex-direction: column; gap: 18px; }

.gc-live-profile__count {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 9px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gc-accent);
    background: var(--gc-accent-soft);
    border-radius: var(--gc-radius-pill);
    vertical-align: middle;
}

.gc-live-profile__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
@media (max-width: 480px) {
    .gc-live-profile__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.gc-live-profile__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--gc-radius-scale, 1) * 14px);
    overflow: hidden;
    background: var(--gc-bg-alt);
    text-decoration: none;
    border: 1px solid var(--gc-border);
    box-shadow: 0 6px 16px rgba(3, 8, 21, .35);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.gc-live-profile__media:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(3, 8, 21, .5);
    border-color: rgba(207, 138, 52, .35);
}

.gc-live-profile__media-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}
.gc-live-profile__media:hover .gc-live-profile__media-img { transform: scale(1.04); }

.gc-live-profile__media-img--ph {
    background: linear-gradient(135deg, var(--gc-bg-alt), var(--gc-bg));
    display: flex;
    align-items: center;
    justify-content: center;
}
.gc-live-profile__media-ph-icon {
    font-size: 38px;
    color: rgba(207, 138, 52, .55);
}

.gc-live-profile__media-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 10px 12px;
    background: linear-gradient(180deg, transparent, rgba(3, 8, 21, .92));
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.gc-live-profile__media-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.gc-live-profile__media-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--gc-accent);
}

.gc-live-profile__media-duration {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(3, 8, 21, .8);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: calc(var(--gc-radius-scale, 1) * 6px);
    letter-spacing: .02em;
    backdrop-filter: blur(4px);
}
.gc-live-profile__media-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--gc-accent);
    color: var(--gc-bg);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: calc(var(--gc-radius-scale, 1) * 6px);
    letter-spacing: .05em;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(207, 138, 52, .4);
}

/* Locked card: blur the image but keep badges sharp */
.gc-live-profile__media.is-locked .gc-live-profile__media-img:not(.gc-live-profile__media-img--ph) {
    filter: blur(8px) brightness(.6);
    transform: scale(1.05);
}
.gc-live-profile__media.is-locked .gc-live-profile__media-img--ph {
    filter: brightness(.7);
}
.gc-live-profile__media.is-locked::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(var(--gc-bg-rgb), .35);
    z-index: 1;
    pointer-events: none;
}
.gc-live-profile__media.is-locked .gc-live-profile__media-badge,
.gc-live-profile__media.is-locked .gc-live-profile__media-overlay,
.gc-live-profile__media.is-locked .gc-live-profile__media-corner,
.gc-live-profile__media.is-locked .gc-live-profile__media-duration {
    z-index: 2;
}

.gc-live-profile__media-corner {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(3, 8, 21, .8);
    color: var(--gc-accent);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: calc(var(--gc-radius-scale, 1) * 6px);
    backdrop-filter: blur(4px);
    z-index: 2;
}
.gc-live-profile__grid--albums { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
.gc-live-profile__media--album { aspect-ratio: 1 / 1; }

.gc-live-profile__loadmore-row {
    margin-top: 18px;
    text-align: center;
}
.gc-live-profile__loadmore {
    background: rgba(255, 255, 255, .06);
    color: var(--gc-text);
    border: 1px solid var(--gc-border-strong);
    padding: 11px 28px;
    border-radius: var(--gc-radius-pill);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.gc-live-profile__loadmore:hover {
    background: var(--gc-accent-soft);
    border-color: var(--gc-accent);
    color: var(--gc-accent);
}
.gc-live-profile__loadmore[disabled] { opacity: .55; cursor: not-allowed; }

/* === Feed wrap ======================================================== */
.gc-live-profile__feed-wrap {
    /* Ensure plugin gc-feed-* classes inherit our background context. */
    background: transparent;
}
.gc-live-profile__feed-wrap .gc-feed-grid { gap: 16px; }
.gc-live-profile__feed-wrap .gc-feed-card,
.gc-live-profile__feed-wrap .gc-feed-timeline-item {
    background: var(--gc-surface) !important;
    border: 1px solid var(--gc-border) !important;
    border-radius: var(--gc-radius);
    box-shadow: var(--gc-shadow-soft);
    padding: 0;
}
.gc-live-profile__feed-wrap .gc-feed-timeline-item__title {
    padding: 0 16px 0;
    color: var(--gc-text);
    font-size: 15px;
    font-weight: 600;
}
.gc-live-profile__feed-wrap .gc-feed-timeline-item__body {
    padding: 8px 16px 14px;
    color: var(--gc-text-soft);
}
.gc-live-profile__feed-wrap .gc-feed-timeline-item__media,
.gc-live-profile__feed-wrap .gc-feed-timeline-item__clip {
    margin: 8px 0;
}
.gc-live-profile__feed-wrap .gc-feed-timeline-item__lock {
    margin: 12px 16px 16px;
    background: linear-gradient(135deg, rgba(207, 138, 52, .12), rgba(207, 138, 52, .04)) !important;
    border: 1px solid rgba(207, 138, 52, .25);
    border-radius: calc(var(--gc-radius-scale, 1) * 14px);
    padding: 18px 22px;
    color: var(--gc-text);
}
.gc-live-profile__feed-wrap .gc-feed-timeline-item__lock-cta {
    background: var(--gc-accent) !important;
    color: var(--gc-bg) !important;
    border: 0 !important;
}
.gc-live-profile__feed-wrap .gc-feed-timeline-item__actions {
    border-top: 1px solid var(--gc-border);
    padding: 10px 16px;
}
.gc-live-profile__feed-wrap .gc-feed-visibility-filter,
.gc-live-profile__feed-wrap .gc-feed-visibility-filters {
    margin-bottom: 14px;
}

/* === Mobile ========================================================== */
@media (max-width: 767px) {
    .gc-live-profile {
        margin-top: 16px;
        padding: 18px 0 36px;
    }
    .gc-live-profile__cover { min-height: 200px; }
    .gc-live-profile__banner,
    .gc-live-profile__banner--placeholder { height: 200px; }
    .gc-live-profile__cover-inner { padding: 16px 18px; gap: 14px; }
    .gc-live-profile__avatar { width: 76px; height: 76px; flex-basis: 76px; border-width: 2px; }
    .gc-live-profile__name { font-size: 22px; }
    .gc-live-profile__actions { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
    .gc-live-profile__btn { padding: 9px 16px; font-size: 13px; }
    .gc-live-profile__tabs { margin: 16px 0 18px; }
    .gc-live-profile__tab { padding: 9px 16px; font-size: 13px; flex: 0 0 auto; }
    .gc-live-profile__card { padding: 18px 16px; }
    .gc-live-profile__row { grid-template-columns: 110px 1fr; gap: 10px; font-size: 13px; }
    .gc-live-profile__schedule-day { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
    .gc-live-profile__schedule-day-name { font-size: 13px; }
}

/* Locked album preview (Profile tab) */
.gc-live-profile__album.is-locked .gc-live-profile__album-img {
    filter: blur(12px) brightness(.55);
    transform: scale(1.08);
}
.gc-live-profile__album.is-locked::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(var(--gc-bg-rgb), .35);
    pointer-events: none;
}
.gc-live-profile__album-lock {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--gc-accent);
    color: var(--gc-bg);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: calc(var(--gc-radius-scale, 1) * 6px);
    letter-spacing: .05em;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(207, 138, 52, .4);
    z-index: 2;
}

/* === Slice 7 — SPA feed filter pills, clip-grid sizing, sub-cta in cover === */

.gc-live-profile__feed-filter {
    display: flex;
    gap: 6px;
    margin: 0 0 16px;
    padding: 6px;
    background: var(--gc-surface);
    border: 1px solid var(--gc-border);
    border-radius: var(--gc-radius-pill);
    flex-wrap: wrap;
}
.gc-live-profile__feed-filter-pill {
    padding: 8px 16px;
    border-radius: var(--gc-radius-pill);
    border: 0;
    background: transparent;
    color: var(--gc-text-soft);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}
.gc-live-profile__feed-filter-pill:hover { color: var(--gc-text); background: rgba(207, 138, 52, .08); }
.gc-live-profile__feed-filter-pill.is-active { background: var(--gc-accent); color: var(--gc-bg); }

/* Clip preview row inside live-profile uses the existing .gc-clip-card markup
   (theme renderer with trailer hover). We just constrain the grid here. */
.gc-live-profile__cliprow {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
.gc-live-profile__cliprow--preview {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
    .gc-live-profile__cliprow,
    .gc-live-profile__cliprow--preview { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* When the gc-sub-modal partial renders inside our cover actions, give it the
   same pill silhouette as the other cover buttons. */
.gc-live-profile__actions .gc-sub-cta-btn.gc-live-profile__btn--subscribe {
    background: var(--gc-accent) !important;
    color: var(--gc-bg) !important;
    border-radius: var(--gc-radius-pill) !important;
    padding: 11px 22px !important;
    box-shadow: 0 6px 16px rgba(207, 138, 52, .35) !important;
}
.gc-live-profile__actions .gc-sub-cta-btn.gc-live-profile__btn--subscribe:hover {
    background: var(--gc-accent-strong) !important;
    box-shadow: 0 8px 22px rgba(207, 138, 52, .55) !important;
}
.gc-live-profile__btn--subscribed {
    background: rgba(61, 214, 140, .14);
    color: var(--gc-success);
    border: 1px solid rgba(61, 214, 140, .35);
    cursor: default;
}

/* Section is loading state */
[data-gc-feed-section].is-loading [data-gc-feed-grid] { opacity: .55; pointer-events: none; }
