:root {
    color-scheme: dark;
    --sd-bg: #090b0f;
    --sd-surface: #111620;
    --sd-surface-2: #171e2a;
    --sd-surface-3: #202838;
    --sd-line: #283243;
    --sd-text: #f5f7fb;
    --sd-muted: #aeb8c8;
    --sd-dim: #7b8798;
    --sd-red: #e22535;
    --sd-blue: #1398d5;
    --sd-green: #2bc878;
    --sd-gold: #f1b72c;
    --sd-radius: 8px;
    --sd-shadow: 0 20px 60px rgba(0, 0, 0, .36);
    --sd-font-main: "Segoe UI", Tahoma, Arial, sans-serif;
    --sd-logo-max-width: 220px;
    --sd-logo-image-height: 32px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--sd-bg);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(226, 37, 53, .12), transparent 260px),
        var(--sd-bg);
    color: var(--sd-text);
    direction: ltr;
    font-family: var(--sd-font-main);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
    font-family: var(--sd-font-main);
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--sd-gold);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font: inherit;
    cursor: pointer;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.sd-container {
    width: min(1080px, calc(100% - 28px));
    margin-inline: auto;
}

.sd-header .sd-container {
    width: calc(100% - 28px);
}

.sd-header {
    position: sticky;
    top: 0;
    z-index: 100;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(9, 11, 15, .92);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .24);
    backdrop-filter: blur(18px);
    transform: translateY(0);
    transition: transform .24s ease, background .2s ease, box-shadow .2s ease;
    will-change: transform;
}

.sd-header.is-scrolled {
    background: rgba(9, 11, 15, .97);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
}

.sd-header.is-hidden {
    transform: translateY(-110%);
}

.sd-header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    direction: ltr;
    justify-content: space-between;
}

.sd-logo {
    display: grid;
    order: 1;
    width: min(var(--sd-logo-max-width), 46vw);
    min-width: 108px;
    max-width: min(var(--sd-logo-max-width), 46vw);
    padding: 4px 8px;
    border-radius: var(--sd-radius);
    background: linear-gradient(135deg, #df3a43, #8e1d29);
    color: #fff;
    line-height: 1.15;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 8px 20px rgba(226,37,53,.18);
}

.sd-logo:hover {
    color: #fff;
}

.sd-logo-main {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(13px, 1.45vw, 18px);
    font-weight: 900;
    white-space: nowrap;
}

.sd-logo-sub {
    color: rgba(255, 255, 255, .8);
    font-size: 9px;
}

.sd-logo .custom-logo {
    max-width: 100%;
    max-height: var(--sd-logo-image-height);
    width: auto;
    object-fit: contain;
    margin-inline: auto;
}

.sd-nav {
    order: 2;
    display: flex;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
}

.sd-menu,
.sd-footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sd-menu {
    direction: ltr;
    justify-content: flex-end;
}

.sd-menu a,
.sd-footer-menu a {
    display: flex;
    align-items: center;
    min-height: 28px;
    padding: 0 8px;
    border-radius: var(--sd-radius);
    color: var(--sd-muted);
    font-size: 11px;
    font-weight: 850;
}

.sd-menu a:hover,
.sd-menu .current-menu-item > a {
    background: var(--sd-surface-2);
    color: var(--sd-text);
}

.sd-menu-toggle {
    display: none;
    order: 2;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border: 1px solid var(--sd-line);
    border-radius: var(--sd-radius);
    background: var(--sd-surface-2);
}

.sd-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 19px;
    height: 2px;
    margin: 2px 0;
    background: var(--sd-text);
}

.sd-site-content {
    min-height: 70vh;
}

.sd-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 66px;
    margin-bottom: 14px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--sd-radius);
    background:
        linear-gradient(135deg, rgba(226, 37, 53, .18), rgba(19, 152, 213, .12)),
        var(--sd-surface);
    box-shadow: 0 10px 34px rgba(0, 0, 0, .24);
}

.sd-hero.compact {
    min-height: 62px;
}

.sd-kicker {
    margin: 0 0 4px;
    color: var(--sd-gold);
    font-size: 9px;
    font-weight: 900;
}

.sd-hero h1 {
    margin: 0;
    color: var(--sd-text);
    font-size: clamp(17px, 2.2vw, 23px);
    line-height: 1.15;
}

.sd-day-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(64px, 1fr));
    gap: 4px;
    width: min(410px, 100%);
    padding: 4px;
    border: 1px solid var(--sd-line);
    border-radius: var(--sd-radius);
    background: rgba(0, 0, 0, .24);
}

.sd-day-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 27px;
    padding: 0 6px;
    border-radius: 6px;
    color: var(--sd-muted);
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    white-space: nowrap;
}

.sd-day-tab.is-active {
    background: var(--sd-red);
    color: #fff;
    box-shadow: 0 8px 18px rgba(226,37,53,.22);
}

.sd-block {
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--sd-line);
    border-radius: var(--sd-radius);
    background: var(--sd-surface);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.sd-block-head,
.sd-entry-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 10px;
    border-bottom: 1px solid var(--sd-line);
    background: var(--sd-surface-2);
}

.sd-block-head h2,
.sd-entry-head h1 {
    margin: 0;
    font-size: clamp(13px, 1.45vw, 16px);
    line-height: 1.25;
}

.sd-match-list {
    display: grid;
    gap: 8px;
    padding: 8px;
}

.sd-match-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--sd-radius);
    background: var(--sd-surface-2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
    cursor: pointer;
}

.sd-match-card:hover {
    border-color: rgba(241, 183, 44, .55);
}

.sd-card-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(3, 5, 9, .62);
    color: #fff;
    opacity: 0;
    text-align: center;
    transition: opacity .18s ease, background .18s ease;
}

.sd-card-overlay-link:hover,
.sd-card-overlay-link:focus-visible {
    color: #fff;
    opacity: 1;
}

.sd-card-play {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .34);
    direction: ltr;
}

.sd-card-play::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-inline-start: 3px;
    border-block: 9px solid transparent;
    border-inline-start: 15px solid #101620;
}

.sd-card-hover-title {
    max-width: min(420px, 88%);
    overflow: hidden;
    padding: 4px 8px;
    border-radius: 5px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sd-match-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 9px;
}

.sd-team {
    display: grid;
    justify-items: center;
    gap: 5px;
    min-width: 0;
    text-align: center;
}

.sd-team-logo,
.sd-big-logo {
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background: #0b0f16;
}

.sd-team-logo {
    width: 42px;
    height: 42px;
}

.sd-team-logo img,
.sd-big-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.sd-team-initial {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sd-red), var(--sd-blue));
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.sd-team-name {
    max-width: 100%;
    overflow-wrap: anywhere;
    color: var(--sd-text);
    font-size: 11px;
}

.sd-match-center {
    display: grid;
    justify-items: center;
    gap: 5px;
    padding: 7px;
    border-radius: var(--sd-radius);
    background: rgba(0, 0, 0, .2);
    text-align: center;
}

.sd-match-time {
    color: var(--sd-muted);
    font-size: 10px;
    font-weight: 900;
}

.sd-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.sd-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--sd-surface-3);
    color: var(--sd-muted);
    font-size: 10px;
    font-weight: 900;
}

.is-live .sd-status,
.sd-versus .is-live {
    background: rgba(226, 37, 53, .17);
    color: #ff7783;
}

.is-finished .sd-status,
.sd-versus .is-finished {
    background: rgba(43, 200, 120, .13);
    color: #75eba9;
}

.sd-match-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .08);
    list-style: none;
}

.sd-match-info li {
    min-height: 29px;
    padding: 5px 7px;
    overflow: hidden;
    background: #0d121a;
    color: var(--sd-muted);
    font-size: 11px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sd-match-actions {
    display: flex;
    justify-content: center;
    padding: 8px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.13);
}

.sd-match-link {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 0 14px;
    border-radius: var(--sd-radius);
    background: linear-gradient(135deg, var(--sd-red), #a71d2a);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(226,37,53,.18);
}

.sd-match-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.sd-empty {
    display: grid;
    min-height: 92px;
    place-items: center;
    padding: 20px;
    color: var(--sd-muted);
    text-align: center;
}

.sd-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 12px;
}

.sd-news-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--sd-radius);
    background: var(--sd-surface-2);
}

.sd-news-card a {
    display: grid;
    height: 100%;
}

.sd-news-image {
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(135deg, rgba(19, 152, 213, .24), rgba(226, 37, 53, .18)),
        var(--sd-surface-3);
}

.sd-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sd-news-card h2,
.sd-news-card h3 {
    margin: 0;
    padding: 10px;
    color: var(--sd-text);
    font-size: 12px;
    line-height: 1.55;
}

.sd-news-card p {
    margin: 0;
    padding: 0 12px 12px;
    color: var(--sd-muted);
    font-size: 12px;
}

.sd-match-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 156px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--sd-radius);
    background:
        linear-gradient(135deg, rgba(19, 152, 213, .16), rgba(226, 37, 53, .18)),
        var(--sd-surface);
    box-shadow: var(--sd-shadow);
}

.sd-big-team {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
}

.sd-big-team strong {
    overflow-wrap: anywhere;
    font-size: clamp(13px, 1.8vw, 17px);
}

.sd-big-logo {
    width: min(74px, 24vw);
    height: min(74px, 24vw);
}

.sd-versus {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
}

.sd-versus span {
    color: var(--sd-muted);
    font-weight: 900;
}

.sd-versus strong {
    color: #fff;
    font-size: clamp(20px, 3.8vw, 32px);
    line-height: 1;
}

.sd-versus em {
    display: inline-flex;
    min-height: 25px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--sd-surface-3);
    color: var(--sd-muted);
    font-style: normal;
    font-weight: 900;
}

.sd-player-wrap {
    padding: 12px;
}

.sd-stream-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.sd-stream-tab {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 31px;
    border: 1px solid var(--sd-line);
    border-radius: var(--sd-radius);
    background: var(--sd-surface-2);
    color: var(--sd-muted);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

.sd-stream-tab small {
    color: var(--sd-dim);
    font-size: 9px;
    font-weight: 800;
}

.sd-stream-tab.is-active,
.sd-stream-tab:hover {
    border-color: var(--sd-red);
    color: #fff;
}

.sd-stream-tab.is-external {
    border-color: rgba(241, 183, 44, .35);
}

.sd-stream-tab.is-external:hover {
    border-color: var(--sd-gold);
}

.sd-player {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 2px solid var(--sd-red);
    border-radius: var(--sd-radius);
    background: #000;
}

.sd-stream-frame {
    display: none;
    width: 100%;
    height: 100%;
    border: 0;
}

.sd-stream-frame.is-active {
    display: block;
}

.sd-stream-frame iframe,
.sd-stream-frame video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.sd-player-empty {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    padding: 20px;
    color: var(--sd-muted);
    text-align: center;
}

.sd-quality-panel,
.sd-related-links {
    margin: 0 12px 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--sd-radius);
    background: #0d121a;
}

.sd-quality-panel header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.sd-quality-panel h2,
.sd-related-links h2 {
    margin: 0;
    color: var(--sd-text);
    font-size: 14px;
}

.sd-quality-panel p {
    margin: 0;
    color: var(--sd-muted);
    font-size: 10px;
}

.sd-quality-grid,
.sd-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.sd-quality-card {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(241, 183, 44, .22);
    border-radius: var(--sd-radius);
    background: linear-gradient(135deg, rgba(241, 183, 44, .1), rgba(19, 152, 213, .08));
}

.sd-quality-card:hover {
    border-color: rgba(241, 183, 44, .55);
    color: #fff;
}

.sd-quality-card strong {
    overflow: hidden;
    color: var(--sd-text);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sd-quality-card span {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sd-quality-card b {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: var(--sd-muted);
    font-size: 10px;
}

.sd-related-links h2 {
    margin-bottom: 10px;
}

.sd-related-group {
    display: grid;
    gap: 7px;
    align-content: start;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--sd-radius);
    background: var(--sd-surface-2);
}

.sd-related-group h3 {
    margin: 0 0 2px;
    color: var(--sd-gold);
    font-size: 12px;
}

.sd-related-group a {
    display: flex;
    min-height: 28px;
    align-items: center;
    padding: 0 9px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .06);
    color: var(--sd-muted);
    font-size: 11px;
    font-weight: 850;
}

.sd-related-group a:hover {
    color: #fff;
    background: var(--sd-surface-3);
}

.sd-share-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 12px 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--sd-radius);
    background: #0d121a;
}

.sd-share-box strong,
.sd-share-box span {
    display: block;
}

.sd-share-box strong {
    color: var(--sd-text);
    font-size: 13px;
}

.sd-share-box span {
    color: var(--sd-muted);
    font-size: 10px;
}

.sd-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.sd-share-button {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    background: var(--sd-surface-2);
    color: #fff;
    padding: 0 9px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

.sd-share-button:hover,
.sd-share-button:focus-visible {
    color: #fff;
    transform: translateY(-1px);
}

.sd-share-button.is-facebook {
    background: #1877f2;
}

.sd-share-button.is-whatsapp {
    background: #128c7e;
}

.sd-share-button.is-telegram {
    background: #229ed9;
}

.sd-share-button.is-x {
    background: #111;
}

.sd-share-button.is-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.sd-share-button.is-copy {
    background: var(--sd-surface-3);
}

.sd-entry-content {
    padding: 12px;
    color: #dbe2ee;
    font-size: 13px;
}

.sd-entry-content > *:first-child {
    margin-top: 0;
}

.sd-entry-content h2,
.sd-entry-content h3 {
    display: table;
    margin: 15px 0 10px;
    padding: 6px 10px;
    border-radius: var(--sd-radius);
    background: var(--sd-surface-3);
    color: #fff;
    font-size: 14px;
}

.sd-entry-content p {
    margin: 0 0 16px;
}

.sd-featured {
    padding: 14px 14px 0;
}

.sd-featured img {
    width: 100%;
    border-radius: var(--sd-radius);
}

.sd-info-table {
    padding: 0 14px 14px;
}

.sd-info-table h2 {
    margin: 0 0 12px;
    color: var(--sd-gold);
    font-size: 14px;
}

.sd-info-table table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--sd-line);
    border-radius: var(--sd-radius);
}

.sd-info-table th,
.sd-info-table td {
    padding: 8px;
    border-bottom: 1px solid var(--sd-line);
    font-size: 12px;
    text-align: start;
}

.sd-info-table tr:last-child th,
.sd-info-table tr:last-child td {
    border-bottom: 0;
}

.sd-info-table th {
    width: 32%;
    background: var(--sd-surface-2);
    color: var(--sd-muted);
}

.sd-footer {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #07090d;
}

.sd-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 72px;
    color: var(--sd-muted);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
}

.nav-links a,
.nav-links span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--sd-line);
    border-radius: var(--sd-radius);
    background: var(--sd-surface-2);
}

@media (max-width: 820px) {
    .sd-hero {
        align-items: stretch;
    }

    .sd-header-inner {
        align-items: center;
        flex-wrap: wrap;
    }

    .sd-menu-toggle {
        display: grid;
        order: 2;
        margin-left: auto;
        margin-right: 0;
    }

    .sd-logo {
        order: 1;
        flex: 0 1 min(var(--sd-logo-max-width), calc(100% - 54px));
        min-width: 0;
        width: min(var(--sd-logo-max-width), calc(100% - 54px));
    }

    .sd-nav {
        order: 3;
        display: none;
        flex-basis: 100%;
        width: 100%;
        justify-content: stretch;
    }

    .sd-nav.is-open {
        display: block;
    }

    .sd-menu {
        display: grid;
        gap: 8px;
        padding-bottom: 12px;
        justify-content: stretch;
    }

    .sd-hero,
    .sd-match-hero {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .sd-day-tabs,
    .sd-news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sd-day-tab {
        min-height: 29px;
        padding: 0 6px;
        font-size: 10px;
    }

    .sd-match-inner {
        grid-template-columns: 1fr;
    }

    .sd-match-info {
        grid-template-columns: 1fr;
    }

    .sd-quality-panel header {
        display: grid;
    }

    .sd-quality-grid,
    .sd-related-grid {
        grid-template-columns: 1fr;
    }

    .sd-share-box {
        align-items: stretch;
        flex-direction: column;
    }

    .sd-share-actions {
        justify-content: stretch;
    }

    .sd-share-button {
        flex: 1 1 auto;
    }

    .sd-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 821px) and (max-width: 1040px) {
    .sd-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .sd-header,
    .sd-match-link {
        transition: none;
    }
}
