.club-feed-section {
    --feed-bg: #eef3ff;
    --feed-surface: #ffffff;
    --feed-surface-soft: #f6f8ff;
    --feed-border: rgba(115, 119, 130, 0.18);
    --feed-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    --feed-text: #131b2e;
    --feed-text-soft: #5b6577;
    --feed-primary: #1a4f95;
    --feed-primary-dark: #003874;
    --feed-primary-soft: rgba(26, 79, 149, 0.08);
    --feed-slate: #737782;
    background:
        radial-gradient(circle at top left, rgba(170, 199, 255, 0.35), transparent 24rem),
        linear-gradient(180deg, #f7f8ff 0%, var(--feed-bg) 100%);
    border-top: 1px solid rgba(115, 119, 130, 0.08);
    padding: 2rem 0 4.5rem;
}

.club-feed-shell {
    max-width: 48rem;
    margin: 0 auto;
}

.club-feed-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.club-feed-heading-copy {
    min-width: 0;
}

.club-feed-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.38rem 0.85rem;
    border-radius: 999px;
    background: rgba(26, 79, 149, 0.1);
    color: var(--feed-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.club-feed-title {
    margin: 0;
    color: var(--feed-text);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.club-feed-subtitle {
    margin: 0.75rem 0 0;
    color: var(--feed-text-soft);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 36rem;
}

.club-feed-heading-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0 1.1rem;
    border-radius: 999px;
    background: var(--feed-primary-dark);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 56, 116, 0.18);
    transition: transform 0.18s ease, background 0.18s ease;
}

.club-feed-heading-link:hover {
    background: var(--feed-primary);
    transform: translateY(-1px);
}

.club-feed-composer,
.club-feed-card,
.club-feed-toolbar,
.club-feed-empty {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--feed-border);
    box-shadow: var(--feed-shadow);
}

.club-feed-composer {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
}

.club-feed-composer-avatar,
.club-feed-card-avatar {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    overflow: hidden;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #d6e3ff, #aac7ff);
    border: 1px solid rgba(26, 79, 149, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--feed-primary);
}

.club-feed-composer-avatar img,
.club-feed-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-feed-card-avatar i {
    width: 1.15rem;
    height: 1.15rem;
}

.club-feed-card-avatar-media {
    position: relative;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), rgba(214, 227, 255, 0.95) 42%, rgba(170, 199, 255, 0.98) 100%);
    border-color: rgba(26, 79, 149, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 18px rgba(26, 79, 149, 0.14);
}

.club-feed-card-avatar-media::after {
    content: '';
    position: absolute;
    inset: 0.28rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    pointer-events: none;
}

.club-feed-card-avatar-media i {
    width: 1.05rem;
    height: 1.05rem;
    color: var(--feed-primary-dark);
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35));
}

.club-feed-card-avatar-media-live {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.96), rgba(254, 226, 226, 0.98) 36%, rgba(248, 113, 113, 0.98) 100%);
    border-color: rgba(220, 38, 38, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 10px 22px rgba(220, 38, 38, 0.22);
}

.club-feed-card-avatar-media-live i {
    color: #b91c1c;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.42));
}

.club-feed-composer-body {
    min-width: 0;
    flex: 1 1 auto;
}

.club-feed-composer-caption {
    margin-bottom: 0.3rem;
    color: var(--feed-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.club-feed-composer-input {
    display: block;
    color: var(--feed-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.club-feed-list {
    display: grid;
    gap: 1rem;
    contain: layout style;
}

.club-feed-toolbar {
    display: flex;
    justify-content: flex-start;
    padding: 0.8rem;
    border-radius: 1.1rem;
}

.club-feed-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.club-feed-filter-chip {
    min-height: 2.15rem;
    padding: 0 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 79, 149, 0.12);
    background: #fff;
    color: var(--feed-text-soft);
    font-size: 0.8rem;
    font-weight: 700;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.club-feed-filter-chip:hover {
    color: var(--feed-primary);
    border-color: rgba(26, 79, 149, 0.28);
}

.club-feed-filter-chip-active {
    background: var(--feed-primary-soft);
    color: var(--feed-primary);
    border-color: rgba(26, 79, 149, 0.24);
}

.club-feed-card {
    overflow: hidden;
    border-radius: 1.35rem;
    content-visibility: auto;
    contain: layout paint style;
    contain-intrinsic-size: 30rem;
}

.club-feed-card-shared-target {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18), 0 24px 56px rgba(37, 99, 235, 0.18);
}

.club-feed-card-featured {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 248, 255, 0.98) 100%);
}

.club-feed-card-body {
    padding: 1.25rem 1.25rem 1rem;
}

.club-feed-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.club-feed-card-header-main {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.club-feed-card-author-block {
    min-width: 0;
}

.club-feed-card-author {
    margin: 0;
    color: var(--feed-text);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.club-feed-card-author-meta {
    margin: 0.24rem 0 0;
    color: var(--feed-slate);
    font-size: 0.78rem;
    line-height: 1.35;
}

.club-feed-card-kicker-row,
.club-feed-card-promo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.club-feed-card-pill,
.club-feed-card-promo-chip {
    display: inline-flex;
    align-items: center;
    min-height: 1.7rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: var(--feed-primary-soft);
    color: var(--feed-primary);
    font-size: 0.72rem;
    font-weight: 700;
}

.club-feed-card-title {
    margin: 0;
    color: var(--feed-text);
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 700;
}

.club-feed-card-title + .club-feed-card-excerpt,
.club-feed-card-title + .club-feed-match-hero {
    margin-top: 0.85rem;
}

.club-feed-card-excerpt,
.club-feed-card-fulltext,
.club-feed-card-match-meta-line {
    color: var(--feed-text-soft);
    font-size: 0.98rem;
    line-height: 1.7;
}

.club-feed-card-excerpt p,
.club-feed-card-fulltext p {
    margin: 0;
}

.club-feed-card-excerpt p + p,
.club-feed-card-fulltext p + p {
    margin-top: 0.55rem;
}

.club-feed-card-paragraph-question {
    color: var(--feed-text);
    font-weight: 600;
}

.club-feed-card-paragraph-answer {
    color: var(--feed-primary);
}

.club-feed-card-expand {
    margin-top: 0.85rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--feed-primary);
    font-size: 0.84rem;
    font-weight: 700;
}

.club-feed-poll {
    margin-top: 1rem;
    padding: 0.95rem;
    border: 1px solid rgba(26, 79, 149, 0.16);
    border-radius: 1rem;
    background: #f8fbff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.club-feed-poll-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.club-feed-poll-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    min-width: 0;
    color: var(--feed-primary);
    font-size: 0.74rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.club-feed-poll-kicker svg {
    width: 0.92rem;
    height: 0.92rem;
    flex: 0 0 auto;
}

.club-feed-poll-count {
    flex: 0 0 auto;
    color: var(--feed-text-soft);
    font-size: 0.78rem;
    line-height: 1.2;
    font-weight: 700;
}

.club-feed-poll-question {
    margin-bottom: 0.75rem;
    color: var(--feed-text);
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
}

.club-feed-poll-options {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.club-feed-poll-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    width: 100%;
    min-height: 44px;
    padding: 0.72rem 0.82rem;
    border: 1px solid rgba(26, 79, 149, 0.2);
    border-radius: 0.78rem;
    background: #ffffff;
    color: var(--feed-text);
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 400;
    transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}

.club-feed-poll-option:hover:not(:disabled) {
    border-color: rgba(26, 79, 149, 0.46);
    background: #f0f6ff;
    transform: translateY(-1px);
}

.club-feed-poll-option:disabled {
    cursor: wait;
    opacity: 0.68;
}

.club-feed-poll-option-label {
    min-width: 0;
    overflow-wrap: anywhere;
}

.club-feed-poll-option-icon {
    width: 0.8rem;
    height: 0.8rem;
    flex: 0 0 auto;
    border: 2px solid rgba(26, 79, 149, 0.35);
    border-radius: 999px;
}

.club-feed-poll-result {
    position: relative;
    overflow: hidden;
    min-height: 54px;
    padding: 0.65rem 0.78rem;
    border: 1px solid rgba(91, 101, 119, 0.16);
    border-radius: 0.78rem;
    background: #ffffff;
}

.club-feed-poll-result.is-selected {
    border-color: rgba(16, 185, 129, 0.46);
    background: #f6fffb;
}

.club-feed-poll-result-bar {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--poll-percent, 0%);
    background: rgba(26, 79, 149, 0.12);
}

.club-feed-poll-result.is-selected .club-feed-poll-result-bar {
    background: rgba(16, 185, 129, 0.15);
}

.club-feed-poll-result-main,
.club-feed-poll-result-sub {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.club-feed-poll-result-label {
    min-width: 0;
    color: var(--feed-text);
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 400;
    overflow-wrap: anywhere;
}

.club-feed-poll-result-percent {
    flex: 0 0 auto;
    color: var(--feed-primary);
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 900;
}

.club-feed-poll-result-sub {
    margin-top: 0.25rem;
    color: var(--feed-text-soft);
    font-size: 0.76rem;
    line-height: 1.25;
    font-weight: 400;
}

.club-feed-poll-result-choice {
    color: #047857;
}

.club-feed-match-detail-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.club-feed-match-detail-toggle {
    margin-top: 0;
    min-height: 42px;
    padding: 0.72rem 1.05rem;
    border: 1px solid rgba(71, 85, 105, 0.42);
    border-radius: 0.78rem;
    background: #ffffff;
    box-shadow: none;
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    text-align: center;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.club-feed-match-detail-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 23, 42, 0.54);
    background: #f8fafc;
}

.club-feed-match-detail-toggle[aria-expanded="true"] {
    background: #f1f5f9;
    border-color: rgba(51, 65, 85, 0.48);
    color: #0f172a;
}

.club-feed-card-media {
    position: relative;
    background: #dde6fb;
    border-top: 1px solid rgba(115, 119, 130, 0.12);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.club-feed-card-media img,
.club-feed-card-media iframe,
.club-feed-video-launcher,
.club-feed-video-launcher img {
    width: 100%;
    height: 100%;
}

.club-feed-card-media img,
.club-feed-card-media iframe,
.club-feed-video-launcher img {
    object-fit: cover;
    display: block;
}

.club-feed-card-media[data-media-fit="contain"] img {
    object-fit: contain;
    background: #eef3ff;
}

.club-feed-card-media[data-media-quality="missing"] {
    aspect-ratio: auto;
    min-height: 7rem;
}

.club-feed-card-media-gallery {
    aspect-ratio: auto;
}

.club-feed-card-gallery-carousel {
    position: relative;
    width: 100%;
    min-height: 14rem;
    background: #d9e4fb;
}

.club-feed-card-gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.club-feed-card-gallery-track::-webkit-scrollbar {
    display: none;
}

.club-feed-card-gallery-slide {
    min-width: 100%;
    scroll-snap-align: start;
    background: #dde6fb;
}

.club-feed-card-gallery-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.club-feed-card-gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0) 0%, rgba(17, 24, 39, 0.66) 100%);
    color: #fff;
    pointer-events: none;
}

.club-feed-card-gallery-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    min-width: 3.6rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.64);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.club-feed-card-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.64);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s ease, opacity 0.18s ease;
}

.club-feed-card-gallery-nav:hover {
    background: rgba(15, 23, 42, 0.84);
}

.club-feed-card-gallery-nav:disabled {
    opacity: 0.36;
    cursor: default;
}

.club-feed-card-gallery-nav-prev {
    left: 0.75rem;
}

.club-feed-card-gallery-nav-next {
    right: 0.75rem;
}

.club-feed-card-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 0.85rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 2;
}

.club-feed-card-gallery-dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.club-feed-card-gallery-dot.is-active {
    background: #fff;
    transform: scale(1.24);
}

.club-feed-card-media-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 7rem;
    color: var(--feed-primary-dark);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.club-feed-video-launcher {
    position: relative;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: transparent;
    transition: opacity 0.26s ease;
}

.club-feed-video-launcher-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(19, 27, 46, 0.62) 100%);
    transition: opacity 0.26s ease, background 0.26s ease;
}

.club-feed-video-launcher-chip {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2rem;
    min-width: 10.5rem;
    max-width: calc(100% - 2rem);
    padding: 0 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--feed-text);
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
    z-index: 2;
    transition: opacity 0.26s ease, transform 0.26s ease, box-shadow 0.26s ease;
}

.club-feed-video-launcher-chip i {
    width: 0.95rem;
    height: 0.95rem;
}

.club-feed-video-launcher-chip--live {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.98), rgba(220, 38, 38, 0.98));
    color: #fff;
    box-shadow: 0 18px 38px rgba(220, 38, 38, 0.34);
}

.club-feed-video-launcher-chip--live i {
    color: #fff;
}

.club-feed-video-launcher-chip--recorded {
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
}

.club-feed-inline-player,
.club-feed-video-embed-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.club-feed-inline-player {
    border: 0;
    display: block;
    opacity: 0;
    transition: opacity 0.32s ease;
    z-index: 3;
    background: #0f172a;
}

.club-feed-card-media--video-ready .club-feed-video-launcher {
    opacity: 0;
    pointer-events: none;
}

.club-feed-card-media--video-ready .club-feed-inline-player,
.club-feed-inline-player--ready {
    opacity: 1;
}

.club-feed-match-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--feed-surface-soft);
}

.club-feed-match-team-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-align: center;
    min-width: 0;
}

.club-feed-match-team-logo {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(115, 119, 130, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.club-feed-match-team-logo img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
}

.club-feed-match-team-name {
    color: var(--feed-text);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.35;
}

.club-feed-match-score-box {
    min-width: 6.8rem;
    padding: 0.9rem 0.95rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(115, 119, 130, 0.14);
    text-align: center;
}

.club-feed-match-score {
    color: var(--feed-text);
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.club-feed-match-status {
    margin-top: 0.28rem;
    color: var(--feed-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.club-feed-match-events {
    margin-top: 0.8rem;
}

.club-feed-match-detail-tabs-wrap {
    margin-top: 0.9rem;
}

.match-modal-tabs {
    display: flex;
    gap: 18px;
    padding: 10px 0 0;
    background: #fff;
    border-bottom: 1px solid rgba(115, 119, 130, 0.14);
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.match-modal-tabs::-webkit-scrollbar {
    display: none;
}

.match-tab {
    position: relative;
    padding: 12px 0;
    border: none;
    background: transparent;
    color: var(--feed-text-soft);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.match-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    border-radius: 999px;
    background: transparent;
}

.match-tab.active {
    color: #e11d48;
}

.match-tab.active::after {
    background: #e11d48;
}

.club-feed-match-detail-panels {
    margin-top: 0.9rem;
}

.club-feed-match-events-stack {
    display: grid;
    gap: 0.65rem;
}

.club-feed-match-events-period {
    display: grid;
    gap: 0.35rem;
}

.club-feed-match-events-period-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 0.8rem;
    border-radius: 0.9rem;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(115, 119, 130, 0.12);
}

.club-feed-match-events-period-name,
.club-feed-match-events-period-score {
    color: var(--feed-text);
    font-size: 0.78rem;
    font-weight: 700;
}

.club-feed-match-events-period-name {
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.club-feed-match-event {
    padding: 0.55rem 0.1rem;
    border-bottom: 1px solid rgba(115, 119, 130, 0.12);
}

.club-feed-match-event:last-child {
    border-bottom: none;
}

.club-feed-match-event-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.club-feed-match-event-home .club-feed-match-event-main {
    flex-direction: row-reverse;
}

.club-feed-match-event-away .club-feed-match-event-copy {
    flex: 1 1 auto;
    justify-content: flex-end;
    text-align: right;
}

.club-feed-match-event-copy {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    flex: 1 1 auto;
}

.club-feed-match-event-text {
    min-width: 0;
    flex: 1 1 auto;
}

.club-feed-match-event-title {
    color: var(--feed-text);
    font-size: 0.76rem;
    line-height: 1.3;
    font-weight: 600;
    white-space: normal;
    overflow-wrap: anywhere;
}

.club-feed-match-event-player {
    color: #0f172a;
}

.club-feed-match-event-note,
.club-feed-match-event-sub,
.club-feed-match-event-time,
.club-feed-match-event-plus {
    color: var(--feed-text-soft);
}

.club-feed-match-event-note {
    font-weight: 500;
}

.club-feed-match-event-sub {
    margin-top: 0.1rem;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: normal;
    overflow-wrap: anywhere;
}

.club-feed-match-event-meta,
.club-feed-match-event-badges,
.club-feed-match-event-pill {
    display: inline-flex;
    align-items: center;
}

.club-feed-match-event-meta {
    gap: 0.45rem;
    flex: 0 0 auto;
    min-width: 0;
    flex-wrap: wrap;
}

.club-feed-match-event-time {
    font-size: 0.74rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.club-feed-match-event-pill {
    gap: 0.35rem;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(115, 119, 130, 0.16);
    color: var(--feed-text);
    font-size: 0.76rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.club-feed-match-event-puck {
    width: 0.82rem;
    height: 0.82rem;
    display: inline-block;
    background: url('/images/puck.png') center/contain no-repeat;
    flex: 0 0 auto;
}

.club-feed-match-event-puck-miss {
    position: relative;
    background: rgba(148, 163, 184, 0.22);
    border: 1px solid rgba(148, 163, 184, 0.48);
    box-shadow: none;
}

.club-feed-match-event-puck-miss::before,
.club-feed-match-event-puck-miss::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.62rem;
    height: 1px;
    background: rgba(71, 85, 105, 0.92);
    transform-origin: center;
}

.club-feed-match-event-puck-miss::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.club-feed-match-event-puck-miss::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.club-feed-match-event-badges {
    gap: 0.2rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    white-space: nowrap;
}

.club-feed-match-event-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.34rem;
    border-radius: 0.45rem;
    background: #ffc928;
    color: #111827;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
}

.panel-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 12px;
}

.pm-ps-wrap {
    width: 100%;
}

.pm-ps-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.pm-ps-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-variant-numeric: tabular-nums;
}

.pm-ps-col-player {
    width: 42%;
}

.pm-ps-col-num {
    width: 34px;
}

.pm-ps-col-rating {
    width: 36px;
}

.pm-ps-table--skaters .pm-ps-col-player {
    width: 34%;
}

.pm-ps-table--skaters .pm-ps-col-num {
    width: 30px;
}

.pm-ps-col-num-wide {
    width: 44px;
}

.pm-ps-table .pm-ps-num {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

.pm-ps-rating {
    text-align: center;
}

.pm-ps-rating .rating-badge {
    min-width: 30px;
    height: 22px;
    padding: 0 5px;
    border-radius: 6px;
    font-size: 9px;
}

.pm-ps-rating .rating-badge--perfect::after {
    top: -5px;
    right: -5px;
}

.pm-ps-dash {
    color: #111827;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
}

.pm-ps-table thead th {
    background: #f3f4f6;
    color: #6b7280;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 6px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    overflow: hidden;
    text-overflow: clip;
}

.pm-ps-table thead th.pm-ps-left {
    text-align: left;
}

.pm-ps-table tbody td {
    padding: 8px 6px;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
    font-weight: 600;
    color: #0f172a;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

.pm-ps-table tbody tr:last-child td {
    border-bottom: none;
}

.pm-ps-table tbody td.pm-ps-left {
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pm-ps-name {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.pm-ps-avatar {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    object-fit: cover;
    flex: 0 0 auto;
    background: #e5e7eb;
}

.pm-ps-name-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
    color: #0f172a;
    font-size: 12px;
}

.club-feed-card-match-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.85rem;
}

.club-feed-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.95rem 1.25rem 1rem;
    border-top: 1px solid rgba(115, 119, 130, 0.12);
    background: rgba(250, 251, 255, 0.92);
}

.club-feed-card-stats {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--feed-slate);
    font-size: 0.8rem;
    font-weight: 600;
}

.club-feed-card-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.club-feed-card-stat i {
    width: 0.92rem;
    height: 0.92rem;
}

.club-feed-social-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--feed-slate);
    font-size: 0.8rem;
    font-weight: 600;
}

.club-feed-like-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1a4f95, #003874);
    color: #fff;
}

.club-feed-like-badge i {
    width: 0.72rem;
    height: 0.72rem;
}

.club-feed-card-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: auto;
}

.club-feed-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    min-height: 2rem;
    padding: 0 0.8rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--feed-slate);
    font-size: 0.8rem;
    font-weight: 700;
    transition: color 0.18s ease, opacity 0.18s ease;
}

.club-feed-card-action.is-active {
    color: var(--feed-primary);
}

@media (hover: hover) and (pointer: fine) {
    .club-feed-card-action:hover {
        color: var(--feed-primary);
    }
}

.club-feed-card-action i {
    width: 0.95rem;
    height: 0.95rem;
}

.club-feed-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 0.2rem;
}

.club-feed-load-sentinel {
    width: 100%;
    height: 1px;
    pointer-events: none;
}

.club-feed-load-more {
    min-height: 3rem;
    padding: 0 1.25rem;
    border: 1px solid rgba(26, 79, 149, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--feed-primary-dark);
    box-shadow: var(--feed-shadow);
    font-size: 0.86rem;
    font-weight: 700;
}

.club-feed-empty {
    padding: 1.4rem;
    border-radius: 1.25rem;
    color: var(--feed-text-soft);
    line-height: 1.65;
}

.club-feed-widget-strong {
    color: var(--feed-primary);
    font-weight: 700;
}

.app-skeleton-card .club-feed-card-body {
    display: grid;
    gap: 0.8rem;
}

.app-skeleton-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.app-skeleton-meta {
    flex: 1 1 auto;
    display: grid;
    gap: 0.45rem;
}

@media (max-width: 767px) {
    .club-feed-section {
        padding: 1rem 0 2.6rem;
    }

    footer {
        display: none !important;
    }

    .club-feed-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .club-feed-heading-link {
        width: 100%;
    }

    .club-feed-card-body {
        padding: 1rem 1rem 0.9rem;
    }

    .club-feed-card-footer {
        flex-wrap: wrap;
        padding: 0.9rem 1rem 1rem;
    }

    .club-feed-card-actions {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
    }

    .club-feed-card-action {
        flex: 1 1 0;
        justify-content: center;
    }

    .club-feed-match-score-box {
        min-width: 5.8rem;
        padding: 0.8rem 0.72rem;
    }

    .club-feed-match-hero {
        grid-template-columns: minmax(0, 1fr) minmax(5.8rem, 6.4rem) minmax(0, 1fr);
        gap: 0.55rem;
        padding: 0.85rem 0.75rem;
    }

    .club-feed-match-team-logo {
        width: 2.8rem;
        height: 2.8rem;
    }

    .club-feed-match-team-logo img {
        width: 1.95rem;
        height: 1.95rem;
    }

    .club-feed-match-team-name {
        font-size: 0.8rem;
    }

    .club-feed-match-score {
        font-size: 1.42rem;
    }

    .club-feed-match-status {
        font-size: 0.64rem;
    }

    .club-feed-match-events-period-head {
        padding: 0.56rem 0.72rem;
    }

    .match-tab {
        font-size: 12px;
    }

    .club-feed-match-events-period-name,
    .club-feed-match-events-period-score,
    .club-feed-match-event-pill,
    .club-feed-match-event-title,
    .club-feed-match-event-badge {
        font-size: 0.74rem;
    }

    .club-feed-match-event-sub,
    .club-feed-match-event-time {
        font-size: 0.68rem;
    }

    .club-feed-match-event-main {
        gap: 0.5rem;
    }

    .club-feed-match-event-meta {
        gap: 0.35rem;
    }

    .pm-ps-table thead th {
        padding: 6px 4px;
        font-size: 10px;
    }

    .pm-ps-table tbody td {
        padding: 6px 4px;
        font-size: 11px;
    }

    .pm-ps-col-player {
        width: 128px;
    }

    .pm-ps-table--skaters .pm-ps-col-player {
        width: 112px;
    }

    .pm-ps-col-num {
        width: 28px;
    }

    .pm-ps-col-rating {
        width: 32px;
    }

    .pm-ps-table--skaters .pm-ps-col-num {
        width: 24px;
    }

    .pm-ps-col-num-wide {
        width: 40px;
    }

    .pm-ps-rating .rating-badge {
        min-width: 26px;
        height: 20px;
        padding: 0 3px;
        font-size: 8px;
    }

    .pm-ps-avatar {
        width: 22px;
        height: 22px;
    }

    .pm-ps-name-text {
        font-size: 11px;
    }

    .pm-ps-name {
        gap: 6px;
    }
}

@media (max-width: 420px) {
    .pm-ps-table thead th {
        padding-left: 2px;
        padding-right: 2px;
        font-size: 9px;
        letter-spacing: .04em;
    }

    .pm-ps-table tbody td {
        padding-left: 2px;
        padding-right: 2px;
    }

    .pm-ps-table--skaters .pm-ps-col-player {
        width: 102px;
    }

    .pm-ps-col-rating {
        width: 30px;
    }

    .pm-ps-table--skaters .pm-ps-col-num {
        width: 23px;
    }

    .pm-ps-rating .rating-badge {
        min-width: 25px;
        padding: 0 2px;
    }

    .pm-ps-avatar {
        width: 20px;
        height: 20px;
    }

    .pm-ps-name {
        gap: 5px;
    }

    .pm-ps-name-text {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .pm-ps-table thead th {
        padding-left: 1px;
        padding-right: 1px;
        font-size: 8px;
        letter-spacing: .02em;
    }

    .pm-ps-table tbody td {
        padding-left: 1px;
        padding-right: 1px;
        font-size: 10px;
    }

    .pm-ps-table--skaters .pm-ps-col-player {
        width: 76px;
    }

    .pm-ps-col-rating {
        width: 26px;
    }

    .pm-ps-table--skaters .pm-ps-col-num {
        width: 24px;
    }

    .pm-ps-rating .rating-badge {
        min-width: 23px;
        height: 18px;
        font-size: 7.5px;
    }

    .pm-ps-rating .rating-badge--perfect::after {
        top: -5px;
        right: -1px;
    }

    .pm-ps-avatar {
        width: 18px;
        height: 18px;
    }

    .pm-ps-name {
        gap: 4px;
    }

    .pm-ps-name-text {
        font-size: 9.5px;
    }
}
