.ow90-status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 22px 0;
}
.ow90-status-card {
    padding: 22px;
    border: 1px solid rgba(35,35,35,.14);
    border-radius: 14px;
    background: #fff;
}
.ow90-status-card.is-full {
    background: #f6f2ed;
}
.ow90-status-kicker {
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9b6f43;
}
.ow90-status-title {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}
.ow90-status-badge {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 999px;
    background: #202020;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.ow90-status-badge.is-full {
    background: #9b6f43;
}
.ow90-status-copy {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
}
.ow90-live-status {
    width: 100%;
    margin-top: 12px;
    padding: 12px 14px;
    border-left: 3px solid #9b6f43;
    background: #f6f2ed;
    font-size: 14px;
    line-height: 1.55;
}
.ow90-live-status.is-full {
    border-left-color: #202020;
}
.ow90-live-status.is-warning {
    border-left-color: #b98957;
}
@media (max-width: 767px) {
    .ow90-status-grid {
        grid-template-columns: 1fr;
    }
}
