.rfc-wer-insights {
    margin: 0;
    padding: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 0%, rgba(var(--rfc-home-rgb, 236,72,153), .18), transparent 34%),
        radial-gradient(circle at 92% 100%, rgba(var(--rfc-away-rgb, 59,130,246), .18), transparent 36%),
        #0f172a;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,.26);
    color: #f8fafc;
}

.rfc-wer-insights__header {
    max-width: 720px;
    margin: 0 auto 25px;
    text-align: center;
}

.rfc-wer-insights__kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 6px 11px;
    background: linear-gradient(90deg, var(--rfc-home, #ec4899), var(--rfc-away, #3b82f6));
    border-radius: 999px;
    color: #fff !important;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.rfc-wer-insights__header h2 {
    margin: 0 0 8px;
    color: #fff !important;
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.1;
}

.rfc-wer-insights__header p {
    margin: 0;
    color: #cbd5e1 !important;
    font-size: 14px;
    line-height: 1.55;
}

.rfc-wer-insights__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.rfc-wer-insight {
    --insight-accent: #60a5fa;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: start;
    min-width: 0;
    padding: 20px;
    background: rgba(15,23,42,.78);
    border: 1px solid rgba(255,255,255,.10);
    border-left: 5px solid var(--insight-accent);
    border-radius: 15px;
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.rfc-wer-insight:hover {
    transform: translateY(-2px);
    background: rgba(23,32,51,.95);
    border-color: rgba(255,255,255,.18);
}

.rfc-wer-insight--form { --insight-accent: #f97316; }
.rfc-wer-insight--attack { --insight-accent: #22c55e; }
.rfc-wer-insight--defense { --insight-accent: #38bdf8; }
.rfc-wer-insight--history { --insight-accent: #a78bfa; }
.rfc-wer-insight--matchup { --insight-accent: #facc15; }
.rfc-wer-insight--momentum { --insight-accent: #ec4899; }

.rfc-wer-insight__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: color-mix(in srgb, var(--insight-accent) 18%, #111827);
    border: 1px solid color-mix(in srgb, var(--insight-accent) 55%, transparent);
    border-radius: 13px;
    font-size: 21px;
    line-height: 1;
}

.rfc-wer-insight h3 {
    margin: 0 0 6px;
    color: var(--insight-accent) !important;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.rfc-wer-insight p {
    margin: 0;
    color: #f1f5f9 !important;
    font-size: 15px;
    line-height: 1.55;
}

.rfc-wer-insights__grid > .rfc-wer-insight:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

@media (max-width: 767px) {
    .rfc-wer-insights {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .rfc-wer-insights__grid {
        grid-template-columns: 1fr;
    }

    .rfc-wer-insights__grid > .rfc-wer-insight:last-child:nth-child(odd) {
        grid-column: auto;
    }
}

.rfc-wer-insight__context {
    display: block;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: #b9c7dc !important;
    font-size: 12px;
    line-height: 1.55;
    font-style: italic;
}
