.ma-radar-strip {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border: 1px solid rgba(23, 182, 160, 0.18);
    border-radius: 8px;
    padding: 22px 24px;
    margin: 0 0 36px;
    color: #c9d3df;
    font-family: 'Poppins', sans-serif;
}
.ma-radar-strip__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(23, 182, 160, 0.12);
}
.ma-radar-strip__eyebrow {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #17b6a0;
    margin: 0 0 4px;
}
.ma-radar-strip__title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}
.ma-radar-strip__feed {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #17b6a0 !important;
    text-decoration: none;
    /* 7px vertical padding lifts the link past the WCAG 2.5.8 24px
       minimum target height (was ~23px at 4px). */
    padding: 7px 12px;
    border: 1px solid rgba(23, 182, 160, 0.3);
    border-radius: 4px;
    transition: background 0.2s, border-color 0.2s;
}
.ma-radar-strip__feed:hover {
    background: rgba(23, 182, 160, 0.08);
    border-color: #17b6a0;
}
.ma-radar-strip__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ma-radar-strip__item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(23, 182, 160, 0.06);
}
.ma-radar-strip__item:last-child {
    border-bottom: 0;
}
.ma-radar-strip__sev {
    flex-shrink: 0;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 3px;
    min-width: 64px;
    text-align: center;
}
.ma-radar-strip__sev--critical {
    background: rgba(231, 76, 60, 0.16);
    color: #ff7a6c;
    border: 1px solid rgba(231, 76, 60, 0.35);
}
.ma-radar-strip__sev--high {
    background: rgba(23, 182, 160, 0.10);
    color: #17b6a0;
    border: 1px solid rgba(23, 182, 160, 0.35);
}
.ma-radar-strip__sev--medium {
    background: rgba(148, 163, 184, 0.10);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.25);
}
.ma-radar-strip__sev--low {
    background: transparent;
    color: #94a3b8; /* slate-400, 6.9:1 (slate-500 was 3.75:1, below AA); stays distinct from MEDIUM via transparent bg + dimmer border + label */
    border: 1px solid rgba(100, 116, 139, 0.25);
}
.ma-radar-strip__link {
    flex: 1;
    min-width: 0;
    color: inherit !important;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ma-radar-strip__link:hover .ma-radar-strip__text {
    color: #17b6a0;
}
.ma-radar-strip__text {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ma-radar-strip__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    color: #94a3b8;
    font-family: 'Consolas', 'Monaco', monospace;
    letter-spacing: 0.04em;
}
.ma-radar-strip__lens {
    color: #17b6a0;
}
.ma-radar-strip__lens::after,
.ma-radar-strip__source::after {
    content: '·';
    margin-left: 8px;
    opacity: 0.5;
}
.ma-radar-strip__foot {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(23, 182, 160, 0.06);
    font-size: 11px;
    color: #94a3b8; /* slate-400, 6.9:1 on slate bg; slate-500 fine-print was 3.75:1, below AA */
    line-height: 1.5;
}
.ma-radar-strip__updated {
    display: inline-block;
    margin-top: 4px;
    opacity: .75;
    font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
    .ma-radar-strip { padding: 18px 16px; }
    .ma-radar-strip__title { font-size: 17px; }
    .ma-radar-strip__item { flex-direction: column; align-items: stretch; gap: 4px; }
    .ma-radar-strip__text { white-space: normal; }
}
