@charset "utf-8";

.avx-widget-feed {
    --avx-text: var(--rx-text, #102038);
    --avx-muted: var(--rx-text-muted, #5f718a);
    --avx-border: var(--rx-border, rgba(16, 32, 56, 0.12));
    --avx-surface: var(--rx-surface-strong, #f4f9fc);
    --avx-panel: var(--rx-surface-tint, rgba(255, 255, 255, 0.86));
    --avx-accent: var(--rx-accent, #13c3d3);
    --avx-accent-soft: var(--rx-accent-soft, rgba(19, 195, 211, 0.16));
    --avx-shadow: var(--rx-shadow, 0 18px 42px rgba(26, 24, 55, 0.08));
    --avx-badge-bg: var(--rx-accent-soft, rgba(22, 124, 153, 0.12));
    --avx-badge-text: var(--rx-accent-strong, #167c99);
    display: block;
    position: relative;
    container-type: inline-size;
    color: var(--avx-text);
    font-size: 14px;
}

.avx-widget-feed--card,
.avx-widget-feed--white,
.avx-widget-feed--black {
    padding: 20px;
    border: 1px solid var(--avx-border);
    border-radius: calc(var(--rx-radius, 18px) + 2px);
    box-shadow: 0 8px 24px rgba(10, 24, 40, 0.04);
}

.avx-widget-feed--card,
.avx-widget-feed--white {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94)),
        var(--avx-panel);
}

.avx-widget-feed--card {
    backdrop-filter: blur(10px);
}

.avx-widget-feed--white {
    --avx-surface: var(--rx-surface, #ffffff);
}

.avx-widget-feed--black {
    --avx-text: #f3f7fb;
    --avx-muted: rgba(243, 247, 251, 0.7);
    --avx-border: rgba(255, 255, 255, 0.14);
    --avx-surface: rgba(255, 255, 255, 0.08);
    --avx-panel: rgba(26, 24, 55, 0.92);
    --avx-accent-soft: rgba(255, 255, 255, 0.08);
    --avx-badge-bg: rgba(127, 227, 255, 0.16);
    --avx-badge-text: #7fe3ff;
    background:
        linear-gradient(180deg, rgba(46, 35, 88, 0.94), rgba(26, 24, 55, 0.94)),
        rgba(26, 24, 55, 0.94);
    box-shadow: 0 14px 30px rgba(10, 10, 20, 0.22);
}

.avx-widget-feed a {
    text-decoration: none;
}

.avx-feed__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.avx-feed__title-wrap {
    min-width: 0;
}

.avx-feed__eyebrow {
    margin: 0 0 4px;
    color: var(--avx-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.avx-feed__title {
    display: block;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.avx-feed__more {
    flex: 0 0 auto;
    color: var(--avx-accent);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.avx-feed__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.avx-feed__list li + li {
    border-top: 1px solid var(--avx-border);
}

.avx-feed__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding: 11px 0;
    color: inherit;
}

.avx-feed__item:hover .avx-feed__text {
    color: var(--avx-accent);
}

.avx-feed__main {
    min-width: 0;
}

.avx-feed__line {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
    min-width: 0;
}

.avx-feed__title-row {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.avx-feed__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    max-width: 96px;
    overflow: hidden;
    min-height: 22px;
    padding: 1px 9px 0;
    border-radius: 999px;
    background: var(--avx-badge-bg);
    color: var(--avx-badge-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
}

.avx-feed__badge-group {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    max-width: 100%;
}

.avx-feed__badge--board {
    background: rgba(35, 156, 222, 0.14);
    color: #1f6fb1;
}

.avx-feed__badge--category {
    background: var(--avx-badge-bg);
    color: var(--avx-badge-text);
}

.avx-feed__text {
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avx-feed__text span {
    color: inherit !important;
}

.avx-feed__icons {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    color: var(--avx-muted);
    font-size: 11px;
    line-height: 1;
}

.avx-feed__meta-inline {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
    color: var(--avx-muted);
    font-size: 12px;
    line-height: 1.25;
    white-space: nowrap;
}

.avx-feed__meta-inline-item {
    flex: 0 0 auto;
}

.avx-feed__meta-inline-item + .avx-feed__meta-inline-item::before {
    content: "·";
    margin: 0 5px;
    opacity: 0.5;
}

.avx-feed__meta-inline-item--nickname {
    max-width: 88px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avx-feed__sub {
    display: block;
    margin-top: 4px;
    color: var(--avx-muted);
    font-size: 12px;
    line-height: 1.35;
}

.avx-feed__side {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 1px;
    color: var(--avx-muted);
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
}

.avx-feed__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--avx-surface);
    color: var(--avx-text);
    font-size: 11px;
    font-weight: 800;
}

.avx-feed__count--inline {
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    background: var(--avx-accent-soft);
    color: var(--avx-accent);
    font-size: 10px;
    line-height: 1;
    transform: translateY(1px);
}

.avx-feed__date {
    font-variant-numeric: tabular-nums;
}

.avx-feed__empty {
    margin: 0;
    padding: 14px 0 6px;
    color: var(--avx-muted);
    font-size: 13px;
}

.avx-feed__gallery {
    display: grid;
    grid-template-columns: repeat(var(--avx-gallery-tracks, 4), minmax(min(100%, var(--avx-thumb-width, 140px)), 1fr));
    gap: clamp(10px, 1.3vw, 16px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.avx-feed__gallery li {
    min-width: 0;
    box-sizing: border-box;
}

.avx-feed__gallery-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--avx-border);
    border-radius: calc(var(--avx-thumb-radius, 8px) + 2px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68)),
        var(--avx-surface);
    color: inherit;
    box-shadow: 0 8px 20px rgba(10, 24, 40, 0.05);
    box-sizing: border-box;
}

.avx-feed__gallery-card:hover .avx-feed__text {
    color: var(--avx-accent);
}

.avx-feed__gallery-media {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: var(--avx-thumb-ratio, 4 / 5);
    overflow: hidden;
    background: var(--avx-surface);
}

.avx-feed__thumb-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avx-feed__thumb-empty {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 18px 14px;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 48%),
        linear-gradient(180deg, rgba(240, 238, 255, 0.96), rgba(248, 250, 255, 0.98));
    color: var(--avx-muted);
    text-align: center;
    word-break: keep-all;
    box-sizing: border-box;
}

.avx-feed__gallery-media--empty {
    background:
        linear-gradient(135deg, rgba(222, 218, 255, 0.55), rgba(243, 247, 255, 0.9)),
        var(--avx-surface);
}

.avx-feed__gallery-media--empty::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px dashed rgba(99, 102, 241, 0.22);
    border-radius: calc(var(--avx-thumb-radius, 8px) - 1px);
    pointer-events: none;
}

.avx-feed__gallery-media--empty::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.45;
    pointer-events: none;
}

.avx-feed__gallery-media--empty .avx-feed__thumb-empty {
    display: flex;
}

.avx-feed__thumb-empty-icon {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(113, 96, 255, 0.18), rgba(92, 208, 255, 0.22));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.avx-feed__thumb-empty-icon::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 12px;
    width: 24px;
    height: 28px;
    border: 2px solid rgba(74, 84, 140, 0.5);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.52);
    box-sizing: border-box;
}

.avx-feed__thumb-empty-icon::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 21px;
    width: 12px;
    height: 8px;
    border-left: 2px solid rgba(74, 84, 140, 0.45);
    border-bottom: 2px solid rgba(74, 84, 140, 0.45);
    transform: skew(-18deg) rotate(-30deg);
}

.avx-feed__thumb-empty-title {
    display: block;
    color: #4a548c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.avx-feed__thumb-empty-text {
    display: block;
    max-width: 10em;
    color: var(--avx-muted);
    font-size: 12px;
    line-height: 1.45;
}

.avx-feed__badge-group--overlay {
    position: absolute;
    left: 50%;
    top: 10px;
    z-index: 2;
    max-width: min(62%, calc(100% - 36px));
    transform: translateX(-50%);
    pointer-events: none;
}

.avx-feed__badge--overlay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 1px 14px 0;
    border: 1px solid rgba(162, 171, 255, 0.22);
    border-radius: 15px;
    background:
        linear-gradient(180deg, rgba(40, 48, 85, 0.82), rgba(56, 44, 107, 0.8)),
        rgba(24, 29, 52, 0.74);
    color: rgba(245, 248, 255, 0.96);
    font-size: 12px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 2px rgba(8, 12, 24, 0.32);
    box-shadow:
        0 10px 22px rgba(12, 18, 38, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.avx-feed__gallery-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 7px;
    padding: 11px 12px 12px;
}

.avx-feed__gallery-title-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
    min-height: calc(1em * 1.42 * 2);
}

.avx-feed__text--gallery {
    display: -webkit-box;
    min-width: 0;
    min-height: calc(1em * 1.42 * 2);
    overflow: hidden;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.42;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.avx-feed__summary {
    display: -webkit-box;
    overflow: hidden;
    color: var(--avx-muted);
    font-size: 11px;
    line-height: 1.45;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.avx-feed__meta-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
    min-height: 37px;
}

.avx-feed__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.avx-feed__meta {
    display: flex;
    gap: 6px;
    min-width: 0;
    font-size: 11px;
    line-height: 1.35;
}

.avx-feed__meta--author {
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
}

.avx-feed__meta--date {
    flex: 0 0 auto;
    justify-content: flex-end;
    color: var(--avx-muted);
    font-variant-numeric: tabular-nums;
}

.avx-feed__meta--comment {
    color: var(--avx-muted);
    min-height: 15px;
    align-items: center;
}

.avx-feed__meta--comment-empty {
    visibility: hidden;
}

.avx-feed__avatar {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(99, 114, 140, 0.12);
    background: rgba(255, 255, 255, 0.7);
}

.avx-feed__avatar--empty {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(210, 218, 255, 0.9), rgba(236, 241, 255, 0.98));
}

.avx-feed__avatar--empty::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(90, 104, 164, 0.72);
    transform: translateY(-3px);
}

.avx-feed__avatar--empty::after {
    content: "";
    position: absolute;
    bottom: 3px;
    width: 11px;
    height: 6px;
    border-radius: 999px 999px 4px 4px;
    background: rgba(90, 104, 164, 0.72);
}

.avx-feed__meta-label {
    flex: 0 0 auto;
    color: var(--avx-muted);
    font-weight: 700;
}

.avx-feed__meta-value {
    min-width: 0;
    overflow: hidden;
    color: var(--avx-text);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avx-feed__spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.avx-feed__spotlight.is-solo {
    grid-template-columns: 1fr;
}

.avx-feed__spotlight-list-wrap,
.avx-feed__spotlight-panels {
    min-width: 0;
}

.avx-feed__spotlight-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.avx-feed__spotlight-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
    min-height: 88px;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--avx-border);
    border-radius: calc(var(--avx-thumb-radius, 8px) + 2px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.9)),
        var(--avx-surface);
    color: inherit;
    box-shadow: 0 8px 20px rgba(10, 24, 40, 0.05);
    font: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.avx-feed__spotlight-item--no-thumb {
    grid-template-columns: minmax(0, 1fr);
}

.avx-feed__spotlight-item:hover .avx-feed__spotlight-item-title,
.avx-feed__spotlight-card:hover .avx-feed__spotlight-title {
    color: var(--avx-accent);
}

.avx-feed__spotlight-item.is-active {
    border-color: rgba(106, 86, 248, 0.28);
    background:
        linear-gradient(180deg, rgba(233, 239, 255, 0.98), rgba(245, 248, 255, 0.96)),
        var(--avx-surface);
    box-shadow: 0 10px 22px rgba(56, 74, 125, 0.12);
}

.avx-feed__spotlight-item:focus-visible {
    outline: 2px solid rgba(106, 86, 248, 0.42);
    outline-offset: 2px;
}

.avx-feed__spotlight-thumb,
.avx-feed__spotlight-media {
    position: relative;
    overflow: hidden;
    background: var(--avx-surface);
}

.avx-feed__spotlight-thumb {
    border-radius: var(--avx-thumb-radius, 8px);
    min-height: 68px;
}

.avx-feed__spotlight-media {
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
}

.avx-feed__spotlight-thumb .avx-feed__thumb-empty,
.avx-feed__spotlight-media .avx-feed__thumb-empty {
    gap: 8px;
    padding: 14px 12px;
}

.avx-feed__spotlight-thumb .avx-feed__thumb-empty-title,
.avx-feed__spotlight-thumb .avx-feed__thumb-empty-text {
    font-size: 11px;
}

.avx-feed__spotlight-thumb--empty,
.avx-feed__spotlight-media--empty {
    background:
        linear-gradient(135deg, rgba(222, 218, 255, 0.5), rgba(243, 247, 255, 0.92)),
        var(--avx-surface);
}

.avx-feed__spotlight-thumb--empty::before,
.avx-feed__spotlight-media--empty::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(99, 102, 241, 0.18);
    border-radius: inherit;
    pointer-events: none;
}

.avx-feed__spotlight-thumb--empty::after,
.avx-feed__spotlight-media--empty::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.4;
    pointer-events: none;
}

.avx-feed__spotlight-thumb--empty .avx-feed__thumb-empty,
.avx-feed__spotlight-media--empty .avx-feed__thumb-empty {
    display: flex;
}

.avx-feed__spotlight-item-main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    gap: 7px;
}

.avx-feed__spotlight-item-top {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.avx-feed__badge--spotlight-list {
    max-width: 112px;
    min-height: 20px;
    padding: 0 8px;
    font-size: 11px;
}

.avx-feed__badge--spotlight-list.avx-feed__badge--board {
    background: rgba(35, 156, 222, 0.14);
    color: #1f6fb1;
}

.avx-feed__spotlight-item-title-row,
.avx-feed__spotlight-title-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
}

.avx-feed__spotlight-item-title {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    color: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.34;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.avx-feed__spotlight-item-fields {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.avx-feed__spotlight-item-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    white-space: nowrap;
}

.avx-feed__spotlight-item-sub {
    display: -webkit-box;
    overflow: hidden;
    color: var(--avx-muted);
    font-size: 11px;
    line-height: 1.45;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.avx-feed__spotlight-item-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: var(--avx-muted);
    font-size: 11px;
    line-height: 1.4;
}

.avx-feed__spotlight-item-meta--date {
    font-variant-numeric: tabular-nums;
}

.avx-feed__spotlight-item-meta--text {
    display: block;
}

.avx-feed__spotlight-item-meta-label {
    flex: 0 0 auto;
    font-weight: 700;
}

.avx-feed__spotlight-item-meta-value {
    min-width: 0;
    overflow: hidden;
    color: var(--avx-text);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avx-feed__spotlight-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--avx-border);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.94)),
        var(--avx-surface);
    color: inherit;
    box-shadow: 0 12px 28px rgba(10, 24, 40, 0.06);
}

.avx-feed__spotlight-panel {
    display: none;
}

.avx-feed__spotlight-panel.is-active {
    display: block;
}

.avx-feed__badge-group--spotlight-panel {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    max-width: calc(100% - 28px);
}

.avx-feed__badge--spotlight-panel {
    max-width: 132px;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid rgba(162, 171, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(35, 44, 80, 0.84), rgba(44, 39, 92, 0.82)),
        rgba(24, 29, 52, 0.76);
    color: rgba(247, 250, 255, 0.96);
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(12, 18, 38, 0.22);
}

.avx-feed__badge--overlay.avx-feed__badge--board,
.avx-feed__badge--spotlight-panel.avx-feed__badge--board {
    border-color: rgba(83, 178, 233, 0.28);
    background:
        linear-gradient(180deg, rgba(30, 111, 177, 0.88), rgba(24, 86, 139, 0.84)),
        rgba(20, 75, 121, 0.78);
    color: rgba(245, 250, 255, 0.98);
}

.avx-feed__spotlight-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px 18px;
}

.avx-feed__spotlight-title {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    color: inherit;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: -0.03em;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.avx-feed__spotlight-summary {
    display: block;
    overflow: hidden;
    color: var(--avx-muted);
    font-size: 13px;
    line-height: 1.65;
    white-space: normal;
}

.avx-feed__spotlight-summary.is-line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--avx-spotlight-summary-lines, 12);
    line-clamp: var(--avx-spotlight-summary-lines, 12);
}

.avx-feed__spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    color: var(--avx-muted);
    font-size: 12px;
}

.avx-feed__spotlight-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.avx-feed__spotlight-meta-item + .avx-feed__spotlight-meta-item::before {
    content: "·";
    margin-right: 4px;
    opacity: 0.45;
}

@container (max-width: 720px) {
    .avx-feed__spotlight {
        grid-template-columns: 1fr;
    }

    .avx-feed__spotlight-card {
        order: -1;
    }

    .avx-feed__spotlight-item {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 10px;
        padding: 9px;
    }

    .avx-feed__spotlight-title {
        font-size: 18px;
    }

    .avx-feed__spotlight-summary {
        display: block;
    }
}

.xe-mobilelayout .avx-widget-feed--card,
.xe-mobilelayout .avx-widget-feed--white,
.xe-mobilelayout .avx-widget-feed--black {
    padding: 12px;
}

.xe-mobilelayout .avx-feed__spotlight {
    grid-template-columns: 1fr;
}

.xe-mobilelayout .avx-feed__spotlight-card {
    order: -1;
}

.xe-mobilelayout .avx-feed__spotlight-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    padding: 9px;
}

.xe-mobilelayout .avx-feed__spotlight-title {
    font-size: 18px;
}

.xe-mobilelayout .avx-feed__spotlight-summary {
    display: block;
}

.xe-mobilelayout .avx-feed__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 6px;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
}

.xe-mobilelayout .avx-feed__gallery > li {
    min-width: 0;
    width: auto;
    max-width: none;
}

.xe-mobilelayout .avx-feed__gallery-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.xe-mobilelayout .avx-feed__gallery-media {
    aspect-ratio: auto;
    padding: 0;
}

.xe-mobilelayout .avx-feed__gallery-media .avx-feed__thumb-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.xe-mobilelayout .avx-feed__thumb-empty {
    min-height: 120px;
    aspect-ratio: var(--avx-thumb-ratio, 4 / 5);
}

.xe-mobilelayout .avx-feed__badge {
    max-width: none;
}

.xe-mobilelayout .avx-feed__gallery-body {
    gap: 6px;
    padding: 8px;
}

.xe-mobilelayout .avx-feed__text--gallery {
    font-size: 13px;
}

.xe-mobilelayout .avx-feed__meta {
    font-size: 10px;
}

@media (max-width: 1080px) {
    .avx-widget-feed--card,
    .avx-widget-feed--white,
    .avx-widget-feed--black {
        padding: 18px;
    }

    .avx-feed__gallery {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
    }
}

@media (max-width: 720px) {
    .avx-widget-feed {
        font-size: 13px;
    }

    .avx-widget-feed--card,
    .avx-widget-feed--white,
    .avx-widget-feed--black {
        padding: 16px;
        border-radius: var(--rx-radius, 18px);
    }

    .avx-feed__head {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 12px;
    }

    .avx-feed__title {
        font-size: 15px;
    }

    .avx-feed__more {
        font-size: 11px;
    }

    .avx-feed__item {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        padding: 10px 0;
    }

    .avx-feed__line {
        align-items: center;
        flex-wrap: nowrap;
        gap: 5px;
    }

    .avx-feed__text {
        display: block;
        white-space: nowrap;
    }

    .avx-feed__side {
        justify-content: flex-end;
        padding-top: 1px;
    }

    .avx-feed__meta-inline {
        font-size: 11px;
    }

    .avx-feed__meta-inline-item + .avx-feed__meta-inline-item::before {
        margin: 0 4px;
    }

    .avx-feed__meta-inline-item--nickname {
        max-width: 72px;
    }

    .avx-feed__gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }

    .avx-feed__gallery li,
    .avx-feed__gallery-card {
        min-width: 0;
    }

    .avx-feed__gallery-body {
        padding: 10px;
    }
}

@media (max-width: 1080px) and (hover: none) and (pointer: coarse) {
    .avx-widget-feed--card,
    .avx-widget-feed--white,
    .avx-widget-feed--black {
        padding: 12px;
    }

    .avx-feed__gallery {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 6px;
        width: 100%;
        max-width: 100%;
        align-items: stretch;
    }

    .avx-feed__gallery > li {
        min-width: 0;
        width: auto;
        max-width: none;
    }

    .avx-feed__gallery-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .avx-feed__gallery-media {
        aspect-ratio: auto;
        padding: 0;
    }

    .avx-feed__gallery-media .avx-feed__thumb-img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .avx-feed__thumb-empty {
        min-height: 120px;
        aspect-ratio: var(--avx-thumb-ratio, 4 / 5);
    }

    .avx-feed__badge {
        max-width: none;
    }

    .avx-feed__gallery-body {
        gap: 6px;
        padding: 8px;
    }

    .avx-feed__text--gallery {
        font-size: 13px;
    }

    .avx-feed__meta {
        font-size: 10px;
    }
}

@media (max-width: 560px) {
    .avx-widget-feed--card,
    .avx-widget-feed--white,
    .avx-widget-feed--black {
        padding: 12px;
    }

    .avx-feed__gallery {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 6px;
        width: 100%;
        max-width: 100%;
        align-items: stretch;
    }

    .avx-feed__gallery > li {
        min-width: 0;
        width: auto;
        max-width: none;
    }

    .avx-feed__gallery-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .avx-feed__gallery-media {
        aspect-ratio: auto;
        padding: 0;
    }

    .avx-feed__gallery-media .avx-feed__thumb-img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .avx-feed__thumb-empty {
        min-height: 120px;
        aspect-ratio: var(--avx-thumb-ratio, 4 / 5);
    }

    .avx-feed__badge {
        max-width: none;
    }

    .avx-feed__gallery-body {
        gap: 6px;
        padding: 8px;
    }

    .avx-feed__text--gallery {
        font-size: 13px;
    }

    .avx-feed__meta {
        font-size: 10px;
    }
}

@media (max-width: 359px) {
    .avx-feed__gallery {
        grid-template-columns: 1fr;
    }

    .avx-feed__gallery > li {
        max-width: none;
    }

    .avx-feed__gallery > li + li { margin-top: 0; }
}

html.xe-mobilelayout .avx-feed__gallery {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px 4px !important;
    width: 100% !important;
    max-width: 100% !important;
    align-items: stretch !important;
}

html.xe-mobilelayout .avx-widget-feed--card,
html.xe-mobilelayout .avx-widget-feed--white,
html.xe-mobilelayout .avx-widget-feed--black {
    padding: 12px !important;
}

html.xe-mobilelayout .avx-feed__gallery > li {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
}

html.xe-mobilelayout .avx-feed__gallery-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}

html.xe-mobilelayout .avx-feed__gallery-media {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

html.xe-mobilelayout .avx-feed__gallery-media .avx-feed__thumb-img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

html.xe-mobilelayout .avx-feed__thumb-empty {
    min-height: 120px !important;
    aspect-ratio: var(--avx-thumb-ratio, 4 / 5) !important;
}

html.xe-mobilelayout .avx-feed__badge {
    max-width: none !important;
}

html.xe-mobilelayout .avx-feed__gallery-body {
    gap: 6px !important;
    padding: 8px !important;
}

html.xe-mobilelayout .avx-feed__text--gallery {
    font-size: 13px !important;
}

html.xe-mobilelayout .avx-feed__meta {
    font-size: 10px !important;
}

@media (max-width: 359px) {
    html.xe-mobilelayout .avx-feed__gallery > li {
        flex-basis: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    html.xe-mobilelayout .avx-feed__gallery-media {
        width: 100% !important;
        max-width: 100% !important;
    }
}
