body.test-theme-urgent-page {
    background: #f3f6f7 !important;
}

body.test-theme-urgent-page .main-container,
body.test-theme-urgent-page .default-template,
body.test-theme-urgent-page .default-template .content,
.canada-urgent-page,
.canada-urgent-page > .side-content-inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.urgent-page-main {
    min-height: 620px;
    padding: 28px 0 54px;
    color: #17191c;
    background:
        linear-gradient(rgba(255, 255, 255, .58), rgba(255, 255, 255, .58)),
        #eef2f3;
}

.urgent-page-shell {
    width: min(calc(100% - 28px), 1180px);
}

.urgent-page-heading {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    margin-bottom: 18px;
    padding: 8px 18px;
    color: #ffef00;
    background: #202020;
    border-radius: 2px;
    overflow: hidden;
}

.urgent-page-heading::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #ffef00;
}

.urgent-page-heading h1 {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 900;
    line-height: 1.25;
}

.urgent-page-heading__mark {
    width: 10px;
    height: 26px;
    background: #ffef00;
}

.urgent-page-heading__pulse {
    width: 9px;
    height: 9px;
    margin-inline-start: auto;
    border-radius: 50%;
    background: #e31820;
    box-shadow: 0 0 0 6px rgba(227, 24, 32, .16);
    animation: urgent-pulse 1.8s ease-out infinite;
}

@keyframes urgent-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(227, 24, 32, .12); }
    50% { box-shadow: 0 0 0 9px rgba(227, 24, 32, 0); }
}

.urgent-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 22px;
    align-items: start;
}

.urgent-feed-list {
    display: grid;
    gap: 14px;
}

.urgent-feed-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce1e5;
    box-shadow: 0 4px 14px rgba(20, 27, 36, .06);
}

.urgent-feed-item__time {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 5px 14px;
    color: #ffef00;
    background: #202020;
    font-size: 12px;
    font-weight: 900;
}

.urgent-clock {
    position: relative;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.urgent-clock::before,
.urgent-clock::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 4px;
    height: 1.5px;
    background: currentColor;
    transform-origin: right center;
}

.urgent-clock::before { transform: rotate(90deg); }
.urgent-clock::after { transform: rotate(25deg); }

.urgent-feed-item__body {
    position: relative;
    display: block;
    min-height: 82px;
    padding: 16px 20px 13px;
    color: #17191c !important;
    text-decoration: none !important;
    background: #e9edf4;
    transition: background-color .2s ease, transform .2s ease;
}

.urgent-feed-item__body::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #d0161d;
    transform: scaleY(0);
    transition: transform .2s ease;
}

.urgent-feed-item__body:hover {
    background: #dde3ed;
}

.urgent-feed-item__body:hover::before {
    transform: scaleY(1);
}

.urgent-feed-item h2 {
    margin: 0;
    font-size: clamp(15px, 1.45vw, 19px);
    font-weight: 900;
    line-height: 1.7;
}

.urgent-feed-item p {
    margin: 5px 0 0;
    color: #525c67;
    font-size: 13px;
    line-height: 1.7;
}

.urgent-feed-item time {
    display: block;
    margin-top: 8px;
    color: #747e88;
    font-size: 11px;
    font-weight: 700;
}

.urgent-sidebar {
    position: sticky;
    top: 18px;
}

.urgent-sidebar-block {
    padding: 12px;
    background: #fff;
    border: 1px solid #dce1e5;
    box-shadow: 0 4px 14px rgba(20, 27, 36, .06);
}

.urgent-sidebar-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    padding: 5px 3px 10px;
    border-bottom: 3px solid #202020;
}

.urgent-sidebar-title span {
    width: 5px;
    height: 25px;
    background: #d0161d;
}

.urgent-sidebar-title h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.urgent-popular-list {
    display: grid;
    gap: 10px;
}

.urgent-popular-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding-bottom: 10px;
    color: #17191c !important;
    text-decoration: none !important;
    border-bottom: 1px solid #e4e7ea;
}

.urgent-popular-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.urgent-popular-card img,
.urgent-popular-card__placeholder {
    display: block;
    width: 82px;
    height: 68px;
    object-fit: cover;
    background: linear-gradient(135deg, #30343a, #15171a);
}

.urgent-popular-card__copy {
    min-width: 0;
}

.urgent-popular-card small {
    display: block;
    margin-bottom: 3px;
    color: #c20e15;
    font-size: 10px;
    font-weight: 900;
}

.urgent-popular-card strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.urgent-popular-card:hover strong {
    color: #c20e15;
}

.urgent-empty {
    padding: 70px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #dce1e5;
}

.urgent-empty__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    color: #202020;
    background: #ffef00;
    border-radius: 50%;
    font: 900 28px Arial, sans-serif;
}

.urgent-empty h2 { margin: 0 0 8px; font-size: 22px; }
.urgent-empty p { margin: 0; color: #68727d; }

.urgent-pagination ul {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.urgent-pagination a,
.urgent-pagination span {
    display: grid;
    place-items: center;
    min-width: 38px;
    min-height: 38px;
    padding: 6px 10px;
    color: #fff !important;
    background: #202020;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 900;
}

.urgent-pagination .current,
.urgent-pagination a:hover {
    color: #202020 !important;
    background: #ffef00;
}

@media (max-width: 900px) {
    .urgent-page-layout {
        grid-template-columns: 1fr;
    }

    .urgent-sidebar {
        position: static;
    }
}

@media (max-width: 575px) {
    .urgent-page-main { padding-top: 14px; }
    .urgent-page-heading { min-height: 44px; padding-inline: 13px; }
    .urgent-page-heading__mark { height: 22px; }
    .urgent-feed-list { gap: 10px; }
    .urgent-feed-item__body { padding: 13px 14px 12px; }
    .urgent-feed-item h2 { font-size: 15px; }
    .urgent-feed-item p { font-size: 12px; }
}
