:root {
    --cw-bg: #f4f1ea;
    --cw-paper: #ffffff;
    --cw-ink: #101318;
    --cw-text: #2d333b;
    --cw-muted: #68717c;
    --cw-line: #d8dde3;
    --cw-blue: #1457ff;
    --cw-blue-dark: #0a2f8f;
    --cw-blue-soft: #eaf0ff;
    --cw-orange: #ff6a00;
    --cw-orange-soft: #fff0e5;
    --cw-yellow: #ffd447;
    --cw-shadow: 0 22px 60px rgba(16, 19, 24, .08);
    --cw-shadow-soft: 0 12px 30px rgba(16, 19, 24, .06);
}

html {
    scroll-behavior: smooth;
}

body.covidwpg-redesign {
    margin: 0;
    background: var(--cw-bg);
    color: var(--cw-text);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.covidwpg-redesign * {
    box-sizing: border-box;
}

body.covid-menu-open {
    overflow: hidden;
}

.covidwpg-redesign #mobile-header,
.covidwpg-redesign .main-navigation,
.covidwpg-redesign .top-bar {
    display: none !important;
}

.covidwpg-home #page,
.covidwpg-home #page.site,
.covidwpg-home .site.grid-container,
.covidwpg-home #primary,
.covidwpg-home .content-area,
.covidwpg-home main.site-main,
.covidwpg-home article,
.covidwpg-home .inside-article,
.covidwpg-home .entry-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.covidwpg-home .entry-header,
.covidwpg-home .page-header,
.covidwpg-home .generate-back-to-top {
    display: none !important;
}

.covid-site-header {
    position: sticky;
    top: 0;
    z-index: 9998;
    width: 100%;
    background: transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.admin-bar .covid-site-header {
    top: 32px;
}

.covid-header-main {
    background: var(--cw-ink);
}

.covid-header-main__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
}

.covid-header-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.covid-header-logo img {
    display: block;
    width: 156px;
    max-width: 100%;
    height: auto;
}

.covid-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.covid-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    background: var(--cw-orange);
    border: 1px solid var(--cw-orange);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .4px;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.covid-header-cta:hover,
.covid-header-cta:focus-visible {
    transform: translateY(-2px);
    background: #ff7b1d;
    border-color: #ff7b1d;
    color: #fff;
}

.covid-menu-toggle {
    display: none;
    width: 46px;
    height: 44px;
    padding: 10px 9px;
    background: transparent;
    border: 1px solid #3b414a;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

.covid-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
}

.covid-site-header.is-open .covid-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.covid-site-header.is-open .covid-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.covid-site-header.is-open .covid-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.covid-header-navrow {
    background: #fff;
    border-bottom: 3px solid var(--cw-blue);
}

.covid-site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1180px, calc(100% - 40px));
    min-height: 52px;
    margin: 0 auto;
}

.covid-site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    color: var(--cw-ink);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: color .18s ease, background .18s ease;
}

.covid-site-nav a::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: 9px;
    left: 28px;
    height: 3px;
    transform: scaleX(0);
    background: var(--cw-orange);
    transform-origin: center;
    transition: transform .18s ease;
}

.covid-site-nav a:hover,
.covid-site-nav a:focus-visible {
    background: var(--cw-blue-soft);
    color: var(--cw-blue-dark);
}

.covid-site-nav a:hover::after,
.covid-site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.betguide-page {
    width: 100%;
    overflow: hidden;
}

.betguide-page a {
    color: var(--cw-blue);
    font-weight: 800;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.betguide-page a:hover,
.betguide-page a:focus-visible {
    color: var(--cw-orange);
}

.betguide-page p {
    margin: 0 0 18px;
}

.betguide-page strong {
    color: var(--cw-ink);
    font-weight: 850;
}

.betguide-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
    align-items: stretch;
    width: min(1240px, calc(100% - 40px));
    min-height: 470px;
    margin: 38px auto 0;
    overflow: hidden;
    background: var(--cw-ink);
    border-radius: 24px;
    box-shadow: var(--cw-shadow);
}

.betguide-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    background: var(--cw-blue);
}

.betguide-hero::after {
    content: "";
    position: absolute;
    top: -120px;
    right: 18%;
    width: 340px;
    height: 340px;
    border: 55px solid rgba(20, 87, 255, .18);
    border-radius: 50%;
    pointer-events: none;
}

.betguide-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 60px 58px 66px;
}

.betguide-hero h1 {
    max-width: 780px;
    margin: 0 0 26px;
    color: #fff;
    font-size: clamp(44px, 5.4vw, 72px);
    font-weight: 950;
    letter-spacing: -3.2px;
    line-height: 1;
}

.betguide-hero__content > p {
    max-width: 760px;
    margin: 0;
    color: #dce1e7;
    font-size: 17px;
    line-height: 1.75;
}

.betguide-hero__content a {
    color: #80a7ff;
}

.betguide-hero__content strong {
    color: #fff;
}

.registration-cta {
    width: min(100%, 860px);
    margin: 28px auto 0;
}

.registration-cta button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 15px 28px;
    background: var(--cw-blue);
    border: 2px solid var(--cw-blue);
    border-radius: 10px;
    box-shadow: 0 8px 0 var(--cw-blue-dark);
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .5px;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.registration-cta button:hover,
.registration-cta button:focus-visible {
    transform: translateY(3px);
    box-shadow: 0 5px 0 var(--cw-blue-dark);
    background: #2a68ff;
}

.registration-cta--hero {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    width: auto;
    margin: 0;
    background: var(--cw-orange);
}

.registration-cta--hero button {
    min-height: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #fff;
    font-size: clamp(18px, 2vw, 26px);
    letter-spacing: .6px;
}

.registration-cta--hero button:hover,
.registration-cta--hero button:focus-visible {
    transform: none;
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
}

.betguide-section {
    width: min(1180px, calc(100% - 40px));
    margin: 76px auto 0;
    scroll-margin-top: 150px;
}

.section-opening {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    gap: 44px;
    align-items: center;
}

.section-opening__copy h2,
.betguide-section--bonus h2,
.betguide-section--profile h2,
.betguide-section--faq h2 {
    margin: 0 0 20px;
    color: var(--cw-ink);
    font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 950;
    letter-spacing: -2px;
    line-height: 1.06;
}

.section-opening__copy h2 {
    position: relative;
    padding-top: 18px;
}

.section-opening__copy h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 86px;
    height: 7px;
    background: var(--cw-orange);
    border-radius: 99px;
}

.section-opening__copy > p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
}

.section-opening__media {
    margin: 0;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--cw-line);
    border-radius: 16px;
    box-shadow: var(--cw-shadow-soft);
}

.section-opening__media img {
    display: block;
    width: 100%;
    height: auto;
}

.methods-intro {
    margin: 40px 0 22px !important;
    color: var(--cw-muted);
    font-weight: 800;
}

.method-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.method-block {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, .62fr);
    gap: 30px;
    align-items: center;
    min-width: 0;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--cw-line);
    border-radius: 18px;
    box-shadow: var(--cw-shadow-soft);
}

.method-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: var(--cw-blue);
    border-radius: 18px 0 0 18px;
}

.method-block--featured,
.method-block--wide {
    grid-column: 1 / -1;
}

.method-block--featured {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    padding: 38px 38px 38px 42px;
}

.method-block--compact {
    grid-template-columns: 1fr;
    align-content: start;
    padding: 0;
    overflow: hidden;
}

.method-block--compact::before {
    width: 100%;
    height: 6px;
    border-radius: 18px 18px 0 0;
}

.method-block--compact .method-block__copy {
    padding: 6px 28px 30px;
}

.method-block--compact .method-block__media {
    order: -1;
    min-height: 210px;
    padding: 28px 28px 8px;
    background: var(--cw-blue-soft);
}

.method-block--orange::before {
    background: var(--cw-orange);
}

.method-block--orange .method-block__media {
    order: 2;
    background: var(--cw-orange-soft);
}

.method-block--orange .method-block__copy {
    padding-top: 28px;
}

.method-block--wide {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
    background: linear-gradient(90deg, #fff 0 66%, #f3f6fb 66% 100%);
}

.method-block__copy {
    min-width: 0;
}

.method-block h3 {
    margin: 0 0 22px;
    color: var(--cw-ink);
    font-size: clamp(25px, 2.8vw, 34px);
    font-weight: 950;
    letter-spacing: -1px;
    line-height: 1.14;
    overflow: visible;
}

.method-block__media {
    margin: 0;
    min-width: 0;
}

.method-block__media img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: 230px;
    margin: 0 auto;
    object-fit: contain;
}

.content-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.content-list li {
    position: relative;
    margin: 0;
    padding: 11px 0 11px 28px;
    border-bottom: 1px solid #eceff2;
    line-height: 1.62;
}

.content-list li:last-child {
    border-bottom: 0;
}

.content-list li::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 4px;
    width: 10px;
    height: 10px;
    background: var(--cw-orange);
    border: 3px solid #fff;
    border-radius: 2px;
    box-shadow: 0 0 0 2px var(--cw-orange);
}

.method-block--blue .content-list li::before,
.betguide-section--mobile .content-list li::before {
    background: var(--cw-blue);
    box-shadow: 0 0 0 2px var(--cw-blue);
}

.promo-code {
    margin-top: 24px;
    padding: 20px;
    background: var(--cw-blue-soft);
    border: 1px solid #c8d7ff;
    border-radius: 12px;
}

.promo-code > strong {
    display: block;
    margin-bottom: 13px;
    font-size: 14px;
    line-height: 1.45;
}

.promo-code__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    overflow: hidden;
    background: #fff;
    border: 2px solid var(--cw-blue);
    border-radius: 9px;
}

.promo-code code {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 54px;
    padding: 10px 16px;
    color: var(--cw-blue-dark);
    font-family: Consolas, Monaco, monospace;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .5px;
    word-break: break-all;
}

.promo-copy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    min-width: 54px;
    padding: 0;
    background: var(--cw-blue);
    border: 0;
    color: #fff;
    cursor: pointer;
}

.promo-copy-button:hover,
.promo-copy-button:focus-visible {
    background: var(--cw-orange);
}

.promo-copy-button svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.promo-check-icon {
    display: none;
}

.promo-copy-button.is-copied {
    background: #17814d;
}

.promo-copy-button.is-copied .promo-copy-icon {
    display: none;
}

.promo-copy-button.is-copied .promo-check-icon {
    display: block;
}

.content-note {
    margin: 24px 0 0 !important;
    padding: 19px 22px;
    background: #fff;
    border-left: 6px solid var(--cw-yellow);
    box-shadow: var(--cw-shadow-soft);
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, .5fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--cw-ink);
}

.section-title {
    margin: 0;
    color: var(--cw-ink);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 950;
    letter-spacing: -1.8px;
    line-height: 1.05;
}

.section-heading-row > p {
    margin: 0;
    color: var(--cw-muted);
    font-size: 17px;
}

.mobile-flow {
    position: relative;
    margin-top: 16px;
}

.mobile-flow::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 238px;
    width: 2px;
    background: #cbd6f6;
}

.mobile-step {
    position: relative;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    padding: 24px 0 34px;
}

.mobile-step__heading {
    position: relative;
    z-index: 1;
    padding: 18px;
    background: var(--cw-ink);
    border-radius: 12px;
    box-shadow: var(--cw-shadow-soft);
}

.mobile-step__heading h4 {
    margin: 0;
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.35;
}

.mobile-step__heading strong {
    color: #fff;
}

.mobile-step__body {
    min-width: 0;
    padding-top: 8px;
}

.mobile-step__body > p:last-child,
.mobile-step__body > ul:last-child {
    margin-bottom: 0;
}

.mobile-step--with-gallery {
    grid-template-columns: 210px minmax(0, 1fr) 310px;
}

.mobile-step__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mobile-step__gallery figure {
    margin: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--cw-line);
    border-radius: 14px;
    box-shadow: var(--cw-shadow-soft);
}

.phone-shot {
    display: block;
    width: 100%;
    max-width: 135px;
    height: auto;
    margin: 0 auto;
}

.content-alert {
    margin: 20px 0 28px 266px;
    padding: 22px 24px;
    background: #fff9d9;
    border: 1px solid #f0d768;
    border-radius: 12px;
}

.content-alert > p:first-child {
    margin-bottom: 8px;
    font-size: 20px;
}

.content-alert .content-list li::before {
    background: #c28f00;
    box-shadow: 0 0 0 2px #c28f00;
}

.content-alert--important {
    margin: 30px 0 0;
    background: #fff0e5;
    border-color: #ffb782;
    border-left: 8px solid var(--cw-orange);
}

.betguide-section--bonus {
    position: relative;
    margin-top: 92px;
    padding: 56px 0 60px;
    color: #fff;
}

.betguide-section--bonus::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--cw-blue-dark);
}

.betguide-section--bonus h2,
.betguide-section--bonus p,
.betguide-section--bonus strong {
    color: #fff;
}

.betguide-section--bonus a {
    color: #bcd0ff;
}

.bonus-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 42px;
    align-items: center;
    margin-bottom: 30px;
}

.bonus-heading__media {
    margin: 0;
    padding: 18px;
    background: #fff;
    border-radius: 14px;
}

.bonus-heading__media img {
    display: block;
    width: 100%;
    height: auto;
}

.content-table-wrap {
    margin: 30px 0 24px;
    overflow: visible;
}

.content-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.content-table th,
.content-table td {
    padding: 17px 18px;
    border: 0;
    text-align: left;
    vertical-align: middle;
}

.content-table th {
    background: #071d58;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .35px;
    text-transform: uppercase;
}

.content-table th:first-child {
    border-radius: 10px 0 0 10px;
}

.content-table th:last-child {
    border-radius: 0 10px 10px 0;
}

.content-table td {
    background: #fff;
    color: var(--cw-text);
    box-shadow: 0 6px 0 rgba(0, 0, 0, .08);
}

.content-table td strong {
    color: var(--cw-ink);
}

.content-table tr:nth-child(2) td:first-child,
.content-table tr:nth-child(4) td:first-child {
    border-left: 7px solid var(--cw-orange);
}

.content-table tr:nth-child(3) td:first-child {
    border-left: 7px solid var(--cw-yellow);
}

.content-table td:first-child {
    border-radius: 10px 0 0 10px;
}

.content-table td:last-child {
    border-radius: 0 10px 10px 0;
}

.betguide-section--bonus .registration-cta {
    margin-top: 28px;
}

.betguide-section--bonus .registration-cta button {
    background: var(--cw-orange);
    border-color: var(--cw-orange);
    box-shadow: 0 8px 0 #a73f00;
}

.betguide-section--profile {
    padding: 4px 0 0;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: 28px;
    align-items: stretch;
}

.profile-layout__intro {
    padding: 38px;
    background: var(--cw-ink);
    border-radius: 18px;
    color: #e8ebef;
}

.profile-layout__intro h2,
.profile-layout__intro p,
.profile-layout__intro strong {
    color: #fff;
}

.profile-layout__intro figure {
    margin: 30px 0 0;
    padding: 18px;
    background: #fff;
    border-radius: 12px;
}

.profile-layout__intro img {
    display: block;
    width: 100%;
    height: auto;
}

.profile-layout__points {
    padding: 38px;
    background: #fff;
    border: 1px solid var(--cw-line);
    border-radius: 18px;
    box-shadow: var(--cw-shadow-soft);
}

.profile-layout__points > p:first-child {
    margin-bottom: 12px;
    color: var(--cw-blue-dark);
    font-size: 20px;
}

.profile-layout__points .registration-cta {
    margin-top: 24px;
}

.betguide-section--faq {
    margin-bottom: 82px;
}

.betguide-section--faq h2 {
    margin-bottom: 26px;
}

.faq-list {
    border-top: 2px solid var(--cw-ink);
}

.faq-item {
    margin: 0;
    border-bottom: 1px solid #bfc6cf;
}

.faq-item summary {
    position: relative;
    display: block;
    padding: 23px 66px 23px 0;
    color: var(--cw-ink);
    font-size: 18px;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
    background: var(--cw-blue);
    border-radius: 8px;
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

.faq-item[open] summary {
    color: var(--cw-blue-dark);
}

.faq-item[open] summary::after {
    content: "−";
    background: var(--cw-orange);
}

.faq-item__content {
    padding: 0 70px 24px 0;
    color: #4b545f;
}

.faq-item__content p:last-child {
    margin-bottom: 0;
}

.covid-site-footer {
    width: 100%;
    background: #fff;
    color: var(--cw-text);
}

.covid-footer-contactbar {
    background: var(--cw-ink);
}

.covid-footer-contactbar__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.covid-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 16px 20px;
    border-right: 1px solid #333942;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.covid-contact-item:first-child {
    border-left: 1px solid #333942;
}

.covid-contact-item:hover,
.covid-contact-item:focus-visible {
    background: #1a1f27;
    color: #fff;
}

.covid-contact-item svg {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-right: 12px;
    fill: var(--cw-orange);
}

.covid-contact-item span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.covid-support-band {
    background: #1a1f27;
}

.covid-support-band__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    min-height: 112px;
    margin: 0 auto;
}

.covid-support-band a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 20px 28px;
    text-decoration: none;
}

.covid-support-band a + a {
    border-left: 1px solid #353b44;
}

.covid-support-band img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 52px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.covid-payment-band {
    background: #f2f4f7;
    border-bottom: 1px solid #dde2e8;
}

.covid-payment-band__inner {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.covid-payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 78px;
    padding: 13px 18px;
    border-right: 1px solid #dce1e6;
    border-bottom: 1px solid #dce1e6;
}

.covid-payment-logo:nth-child(6n+1) {
    border-left: 1px solid #dce1e6;
}

.covid-payment-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 42px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.covid-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    min-height: 94px;
    margin: 0 auto;
}

.covid-footer-pages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
}

.covid-footer-pages a {
    color: var(--cw-ink);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.covid-footer-pages a:hover,
.covid-footer-pages a:focus-visible {
    color: var(--cw-blue);
}

.covid-footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    color: #6b7480;
    font-size: 13px;
    text-align: right;
}

.covid-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    background: var(--cw-orange);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 950;
}

@media (max-width: 1080px) {
    .betguide-hero {
        grid-template-columns: minmax(0, 1.2fr) minmax(240px, .55fr);
    }

    .betguide-hero__content {
        padding: 48px 46px 48px 54px;
    }

    .section-opening {
        grid-template-columns: minmax(0, 1fr) 330px;
    }

    .mobile-step--with-gallery {
        grid-template-columns: 190px minmax(0, 1fr) 270px;
    }

    .mobile-step {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 42px;
    }

    .mobile-flow::before {
        left: 211px;
    }

    .content-alert {
        margin-left: 232px;
    }
}

@media (max-width: 900px) {
    .admin-bar .covid-site-header {
        top: 46px;
    }

    .covid-header-main__inner {
        width: calc(100% - 28px);
        min-height: 68px;
    }

    .covid-header-logo img {
        width: 136px;
    }

    .covid-header-cta {
        min-height: 42px;
        padding: 0 16px;
        font-size: 12px;
    }

    .covid-menu-toggle {
        display: block;
    }

    .covid-header-navrow {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        border-bottom-width: 4px;
        box-shadow: 0 14px 28px rgba(0, 0, 0, .14);
    }

    .covid-site-header.is-open .covid-header-navrow {
        display: block;
    }

    .covid-site-nav {
        display: block;
        width: 100%;
        min-height: 0;
    }

    .covid-site-nav a {
        display: flex;
        justify-content: flex-start;
        min-height: 52px;
        padding: 0 22px;
        border-bottom: 1px solid #e4e7eb;
    }

    .covid-site-nav a:last-child {
        border-bottom: 0;
    }

    .covid-site-nav a::after {
        display: none;
    }

    .betguide-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .registration-cta--hero {
        min-height: 82px;
    }

    .section-opening {
        grid-template-columns: 1fr;
    }

    .section-opening__media {
        order: -1;
    }

    .method-mosaic {
        grid-template-columns: 1fr;
    }

    .method-block,
    .method-block--featured,
    .method-block--wide {
        grid-column: auto;
        grid-template-columns: 1fr;
        background: #fff;
    }

    .method-block__media {
        order: -1;
    }

    .method-block--wide .method-block__media {
        order: 2;
    }

    .section-heading-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mobile-flow::before {
        display: none;
    }

    .mobile-step,
    .mobile-step--with-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 14px 0 26px;
    }

    .mobile-step__heading {
        width: fit-content;
        max-width: 100%;
    }

    .content-alert {
        margin-left: 0;
    }

    .bonus-heading {
        grid-template-columns: 1fr;
    }

    .bonus-heading__media {
        width: min(100%, 430px);
    }

    .profile-layout {
        grid-template-columns: 1fr;
    }

    .covid-footer-contactbar__inner {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .covid-contact-item,
    .covid-contact-item:first-child {
        justify-content: flex-start;
        min-height: 60px;
        padding-right: 20px;
        padding-left: 20px;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid #333942;
    }

    .covid-contact-item:last-child {
        border-bottom: 0;
    }

    .covid-support-band__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .covid-support-band a:nth-child(3) {
        border-left: 0;
    }

    .covid-support-band a:nth-child(n+3) {
        border-top: 1px solid #353b44;
    }

    .covid-payment-band__inner {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .covid-payment-logo:nth-child(6n+1) {
        border-left: 0;
    }

    .covid-payment-logo:nth-child(4n+1) {
        border-left: 1px solid #dce1e6;
    }

    .covid-footer-bottom {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 0;
    }

    .covid-footer-pages,
    .covid-footer-legal {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 700px) {
    body.covidwpg-redesign {
        font-size: 16px;
        line-height: 1.62;
    }

    .covid-header-cta {
        display: none;
    }

    .betguide-hero,
    .betguide-section {
        width: calc(100% - 24px);
    }

    .betguide-hero {
        margin-top: 18px;
        border-radius: 18px;
    }

    .betguide-hero__content {
        padding: 34px 24px 34px 30px;
    }

    .betguide-hero h1 {
        margin-bottom: 20px;
        font-size: clamp(34px, 10vw, 48px);
        letter-spacing: -1.8px;
    }

    .betguide-hero__content > p {
        font-size: 15px;
        line-height: 1.66;
    }

    .registration-cta--hero {
        min-height: 70px;
    }

    .registration-cta--hero button {
        font-size: 17px;
    }

    .betguide-section {
        margin-top: 54px;
        scroll-margin-top: 90px;
    }

    .section-opening {
        gap: 24px;
    }

    .section-opening__copy h2,
    .betguide-section--bonus h2,
    .betguide-section--profile h2,
    .betguide-section--faq h2,
    .section-title {
        font-size: clamp(30px, 9vw, 40px);
        letter-spacing: -1.2px;
    }

    .section-opening__copy > p {
        font-size: 16px;
        line-height: 1.68;
    }

    .section-opening__media {
        padding: 12px;
        border-radius: 12px;
    }

    .methods-intro {
        margin-top: 28px !important;
    }

    .method-mosaic {
        gap: 16px;
    }

    .method-block,
    .method-block--featured {
        gap: 20px;
        padding: 24px 20px 24px 26px;
        border-radius: 14px;
    }

    .method-block::before {
        width: 6px;
        border-radius: 14px 0 0 14px;
    }

    .method-block--compact {
        padding: 0;
    }

    .method-block--compact::before {
        width: 100%;
        height: 5px;
        border-radius: 14px 14px 0 0;
    }

    .method-block--compact .method-block__copy {
        padding: 4px 20px 24px;
    }

    .method-block--compact .method-block__media {
        min-height: 180px;
        padding: 22px 20px 6px;
    }

    .method-block--orange .method-block__copy {
        padding-top: 22px;
    }

    .method-block h3 {
        margin-bottom: 16px;
        font-size: clamp(23px, 7vw, 30px);
        letter-spacing: -.7px;
    }

    .method-block__media img {
        height: 190px;
    }

    .content-list li {
        padding: 10px 0 10px 26px;
    }

    .content-list li::before {
        top: 19px;
    }

    .promo-code {
        padding: 15px;
    }

    .promo-code__row {
        grid-template-columns: minmax(0, 1fr) 50px;
    }

    .promo-code code {
        min-height: 50px;
        padding: 9px 12px;
        font-size: 16px;
    }

    .promo-copy-button {
        width: 50px;
        min-width: 50px;
    }

    .section-heading-row {
        margin-bottom: 20px;
    }

    .mobile-step__heading {
        padding: 14px 16px;
    }

    .mobile-step__heading h4 {
        font-size: 18px;
    }

    .mobile-step__gallery {
        gap: 8px;
    }

    .mobile-step__gallery figure {
        padding: 7px;
        border-radius: 10px;
    }

    .content-alert,
    .content-alert--important {
        padding: 18px;
        border-radius: 10px;
    }

    .betguide-section--bonus {
        width: calc(100% - 24px);
        margin-top: 64px;
        padding: 42px 0 46px;
    }

    .content-table {
        display: block;
        border-spacing: 0;
    }

    .content-table tbody,
    .content-table tr,
    .content-table td {
        display: block;
        width: 100%;
    }

    .content-table tr:first-child {
        display: none;
    }

    .content-table tr:not(:first-child) {
        margin: 0 0 16px;
        overflow: hidden;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 7px 0 rgba(0, 0, 0, .09);
    }

    .content-table td,
    .content-table td:first-child,
    .content-table td:last-child {
        position: relative;
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        min-height: 0;
        padding: 13px 15px;
        border-left: 0 !important;
        border-bottom: 1px solid #e5e8ec;
        border-radius: 0;
        box-shadow: none;
    }

    .content-table td:last-child {
        border-bottom: 0;
    }

    .content-table td::before {
        content: attr(data-label);
        color: var(--cw-blue-dark);
        font-size: 11px;
        font-weight: 950;
        letter-spacing: .25px;
        line-height: 1.35;
        text-transform: uppercase;
    }

    .profile-layout__intro,
    .profile-layout__points {
        padding: 26px 20px;
        border-radius: 14px;
    }

    .faq-item summary {
        padding: 19px 54px 19px 0;
        font-size: 16px;
    }

    .faq-item summary::after {
        width: 34px;
        height: 34px;
        border-radius: 7px;
        font-size: 22px;
    }

    .faq-item__content {
        padding: 0 0 20px;
    }

    .covid-support-band__inner {
        width: 100%;
    }

    .covid-support-band a {
        min-height: 82px;
        padding: 14px 18px;
    }

    .covid-support-band img {
        height: 42px;
    }

    .covid-payment-band__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
    }

    .covid-payment-logo,
    .covid-payment-logo:nth-child(4n+1) {
        min-height: 66px;
        padding: 10px;
        border-left: 0;
    }

    .covid-payment-logo:nth-child(3n+1) {
        border-left: 1px solid #dce1e6;
    }

    .covid-payment-logo img {
        height: 34px;
    }

    .covid-footer-bottom {
        width: calc(100% - 28px);
    }

    .covid-footer-pages {
        gap: 8px 18px;
    }
}

@media (max-width: 440px) {
    .covid-header-main__inner {
        width: calc(100% - 20px);
    }

    .covid-header-logo img {
        width: 126px;
    }

    .betguide-hero,
    .betguide-section {
        width: calc(100% - 18px);
    }

    .betguide-hero__content {
        padding-right: 18px;
        padding-left: 24px;
    }

    .betguide-hero h1 {
        font-size: 32px;
    }

    .method-block,
    .method-block--featured {
        padding-right: 16px;
        padding-left: 22px;
    }

    .method-block--compact {
        padding: 0;
    }

    .method-block--compact .method-block__copy {
        padding-right: 16px;
        padding-left: 16px;
    }

    .method-block__media img {
        height: 170px;
    }

    .mobile-step__gallery {
        grid-template-columns: 1fr 1fr;
    }

    .content-table td,
    .content-table td:first-child,
    .content-table td:last-child {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 10px;
        padding: 12px;
    }

    .covid-support-band a {
        padding-right: 10px;
        padding-left: 10px;
    }

    .covid-support-band img {
        height: 36px;
    }

    .covid-payment-band__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .covid-payment-logo:nth-child(3n+1) {
        border-left: 0;
    }

    .covid-payment-logo:nth-child(2n+1) {
        border-left: 1px solid #dce1e6;
    }

    .covid-footer-pages {
        flex-direction: column;
        align-items: center;
    }

    .covid-footer-legal {
        flex-direction: column;
    }
}
