@font-face {
  font-family: "Varela";
  src: url("../fonts/VarelaRound-Regular.woff") format("woff2"), url("../fonts/VarelaRound-Regular.woff") format("woff");
}
:root {
  --c-black: #232323;
  --c-white: #ffffff;
  --c-grey: #647079;
  --c-primary: #1970F4;
  --c-green: #34b534;
  --c-purple: #aa49f3;
  --c-orange: #007EB7;
  --c-red: #D54140;
  --c-olive: #adab1e;
  --size-1: 4.5rem;
  --size-2: 2.5rem;
  --size-3: 2rem;
  --size-4: 1.5rem;
  --size-5: 1.25rem;
  --size-6: 1rem;
  --size-7: 0.8rem;
  --size-8: 0.7rem;
  --font-body: Varela, sans-serif;
  --font-heading: Varela, sans-serif;
  --max-width: 1400px ;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.text-black {
  color: #232323 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-grey {
  color: #647079 !important;
}

.text-primary {
  color: #1970F4 !important;
}

.text-green {
  color: #34b534 !important;
}

.text-purple {
  color: #aa49f3 !important;
}

.text-orange {
  color: #007EB7 !important;
}

.text-red {
  color: #D54140 !important;
}

.text-olive {
  color: #adab1e !important;
}

.fill-black {
  background-color: #232323 !important;
}

.fill-white {
  background-color: #ffffff !important;
}

.fill-grey {
  background-color: #647079 !important;
}

.fill-primary {
  background-color: #1970F4 !important;
}

.fill-green {
  background-color: #34b534 !important;
}

.fill-purple {
  background-color: #aa49f3 !important;
}

.fill-orange {
  background-color: #007EB7 !important;
}

.fill-red {
  background-color: #D54140 !important;
}

.fill-olive {
  background-color: #adab1e !important;
}

.text-size-1 {
  font-size: 4.5rem;
}

.text-size-2 {
  font-size: 2.5rem;
}

.text-size-3 {
  font-size: 2rem;
}

.text-size-4 {
  font-size: 1.5rem;
}

.text-size-5 {
  font-size: 1.25rem;
}

.text-size-6 {
  font-size: 1rem;
}

.text-size-7 {
  font-size: 0.8rem;
}

.text-size-8 {
  font-size: 0.7rem;
}

.is-news {
  color: #D54140;
}

.is-features {
  color: #007EB7;
}

.is-sport {
  color: #34b534;
}

.is-entertainment {
  color: #aa49f3;
}

.is-politics {
  color: #adab1e;
}

.text-style-heading {
  line-height: 110%;
}

.text-style-heading {
  font-family: "Varela", sans-serif;
}

.text-style-body {
  font-family: "Varela", sans-serif;
}

.text-align-centered {
  text-align: center;
}

.text-align-justified {
  text-align: justify;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

.is-capitalized {
  text-transform: capitalize;
}

.is-lowercase {
  text-transform: lowercase;
}

.is-uppercase {
  text-transform: uppercase;
}

.is-italic {
  font-style: italic;
}

.is-style-normal {
  font-style: normal;
}

.is-underlined {
  text-decoration: underline;
}

.text-weight-300 {
  font-weight: 300;
}

.text-weight-500 {
  font-weight: 500;
}

.text-weight-900 {
  font-weight: 900;
}

h1 {
  font-size: clamp(1rem, 6vw, 2rem);
  font-family: var(--font-heading);
  line-height: var(--size-2);
  font-weight: 600;
}

.is-marginless {
  margin: 0 !important;
}

.is-paddingless {
  padding: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-5 {
  margin: 1.5rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mr-5 {
  margin-right: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.ml-5 {
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-5 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-6 {
  margin: 3rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.mr-6 {
  margin-right: 3rem !important;
}

.mb-6 {
  margin-bottom: 3rem !important;
}

.ml-6 {
  margin-left: 3rem !important;
}

.mx-6 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.m-wide {
  margin: 100px !important;
}

.mt-wide {
  margin-top: 100px !important;
}

.mr-wide {
  margin-right: 100px !important;
}

.mb-wide {
  margin-bottom: 100px !important;
}

.ml-wide {
  margin-left: 100px !important;
}

.mx-wide {
  margin-left: 100px !important;
  margin-right: 100px !important;
}

.my-wide {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-5 {
  padding: 1.5rem !important;
}

.pt-5 {
  padding-top: 1.5rem !important;
}

.pr-5 {
  padding-right: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 1.5rem !important;
}

.pl-5 {
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-6 {
  padding: 3rem !important;
}

.pt-6 {
  padding-top: 3rem !important;
}

.pr-6 {
  padding-right: 3rem !important;
}

.pb-6 {
  padding-bottom: 3rem !important;
}

.pl-6 {
  padding-left: 3rem !important;
}

.px-6 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.p-auto {
  padding: auto !important;
}

.pt-auto {
  padding-top: auto !important;
}

.pr-auto {
  padding-right: auto !important;
}

.pb-auto {
  padding-bottom: auto !important;
}

.pl-auto {
  padding-left: auto !important;
}

.px-auto {
  padding-left: auto !important;
  padding-right: auto !important;
}

.py-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

.p-wide {
  padding: 100px !important;
}

.pt-wide {
  padding-top: 100px !important;
}

.pr-wide {
  padding-right: 100px !important;
}

.pb-wide {
  padding-bottom: 100px !important;
}

.pl-wide {
  padding-left: 100px !important;
}

.px-wide {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.py-wide {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

@media (min-width: 1024px) {
  .menu-wrapper .row {
    display: flex;
    justify-content: center;
  }
}

.main-navigation {
  width: 100%;
}
.main-navigation__toggle {
  margin: 0;
  display: block;
  border: 0;
  color: var(--c-black);
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  line-height: 40px;
  font-weight: 400;
  background-color: var(--c-dark-blue);
}
@media (min-width: 1024px) {
  .main-navigation__toggle {
    display: none;
  }
}
.main-navigation__checkbox {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
@media (max-width: 1024px) {
  .main-navigation {
    font-size: 80%;
  }
  .main-navigation__checkbox:checked ~ .main-menu {
    display: block;
  }
  .main-navigation__checkbox:focus ~ .main-navigation__toggle {
    border: 1px solid #705f5a;
  }
}

.main-menu {
  margin-top: 0;
  display: none;
  text-transform: uppercase;
  position: absolute;
  font-weight: 400;
  width: 100%;
  left: 0;
  top: 100%;
  z-index: 1000;
  background-color: var(--c-white);
}
@media (min-width: 1024px) {
  .main-menu {
    display: flex;
    position: relative;
    justify-content: space-evenly;
    width: 100%;
    background-color: transparent;
    top: 0;
  }
  .main-menu > * + * {
    margin-left: 20px;
  }
}
.main-menu__toggle {
  transform: rotate(90deg);
  margin: 0;
  padding: 0;
  cursor: pointer;
  z-index: 500;
  position: absolute;
  line-height: 100%;
  color: var(--c-light-blue);
  right: 10px;
  width: 25px;
  padding-top: 3px;
  height: 25px;
  background-color: red;
  top: 5px;
}
@media (min-width: 1024px) {
  .main-menu__toggle {
    background-color: transparent;
    color: white;
    position: relative;
    right: 0;
    top: 7px;
    display: none;
  }
}
.main-menu__item {
  position: relative;
  line-height: 40px;
  text-align: center;
  display: block;
}
.main-menu__item input[type=checkbox] {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
@media (max-width: 1024px) {
  .main-menu__item input[type=checkbox]:checked ~ .sub-menu {
    display: block;
  }
  .main-menu__item input[type=checkbox]:focus ~ .main-menu__toggle {
    border: 1px solid #705f5a;
  }
}
@media (min-width: 1024px) {
  .main-menu__item {
    display: inline-block;
    display: flex;
  }
  .main-menu__item:focus-within .sub-menu {
    display: block;
  }
}
.main-menu__item:last-of-type {
  margin-right: 0;
  border-bottom: 0;
}
@media (min-width: 1024px) {
  .main-menu__item--has-children:hover .sub-menu {
    display: block;
  }
}
.main-menu__link {
  text-decoration: none;
  width: 100%;
  display: block;
  color: var(--c-black);
}

.sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: none;
  flex-direction: column;
  z-index: 1000;
  display: none;
  background-color: var(--c-light-blue);
  font-size: 85%;
}
@media (min-width: 1024px) {
  .sub-menu {
    position: absolute;
    top: 100%;
  }
}
.sub-menu__item {
  text-align: center;
}
.sub-menu__link {
  display: block;
  text-align: center;
  width: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: var(--c-white);
}
@media (min-width: 1024px) {
  .sub-menu__link {
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.is-news .main-menu__link:hover {
  color: #D54140;
}

.is-features .main-menu__link:hover {
  color: #007EB7;
}

.is-sport .main-menu__link:hover {
  color: #34b534;
}

.is-entertainment .main-menu__link:hover {
  color: #aa49f3;
}

.is-politics .main-menu__link:hover {
  color: #adab1e;
}

.alignwide {
  margin-left: -80px;
  margin-right: -80px;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
}

.alignfull img {
  width: 100vw;
}

@media screen and (max-width: 767px) {
  .wysiwyg .has-large-font-size {
    font-size: 130% !important;
  }
}
.wysiwyg .wp-block-cover.alignfull {
  padding: 0;
}
.wysiwyg .alignwide {
  margin: 32px calc(25% - 25vw);
  max-width: 100vw;
  width: 100vw;
}
.wysiwyg .alignfull > *[class*=inner-container] {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--size-1) 60px;
}
.wysiwyg .slim *[class*=inner-container] {
  max-width: 1200px;
  margin: 0 auto;
}
.wysiwyg .wp-block-separator {
  opacity: 0.2;
}
.wysiwyg > .wp-block-cover:first-of-type {
  --height: 90px;
  padding-bottom: var(--height);
  padding-bottom: var(--size-3);
}
.wysiwyg > .wp-block-cover:first-of-type *[class*=inner-container] {
  min-height: 300px;
}
.wysiwyg > .wp-block-cover:first-of-type:before {
  right: 50%;
  clip-path: polygon(100% 100%, 0 0, 0 100%);
}
.wysiwyg > .wp-block-cover:first-of-type:after {
  left: 50%;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.wysiwyg > .wp-block-cover:first-of-type:after, .wysiwyg > .wp-block-cover:first-of-type:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  z-index: 100;
  border-bottom: var(--height) solid #FFF;
}
.wysiwyg h1 {
  margin: 0;
}
.wysiwyg p + ul, .wysiwyg h2 + ul, .wysiwyg h3 + ul, .wysiwyg h4 + ul {
  margin-top: 0.75rem;
}
.wysiwyg a:not([class]) {
  color: var(--c-light-blue);
  font-weight: 600;
}
.wysiwyg *[class*=has-background] + * a:not([class]) {
  color: inherit;
}
.wysiwyg img, .wysiwyg .wp-block-image img {
  width: 100%;
  height: auto;
}
.wysiwyg figcaption {
  font-size: 80%;
  line-height: 120%;
  margin-top: 0.5rem;
}
.wysiwyg .wp-block-columns:only-child {
  margin-bottom: 0;
}
.wysiwyg .wp-block-column > * + * {
  margin-top: var(--size-4);
}
.wysiwyg *[class*=inner-container] > * + * {
  margin-top: var(--size-3);
}
.wysiwyg .wp-block-column:not(:first-child) {
  margin-left: 0;
}
.wysiwyg .wp-block-cover, .wysiwyg .wp-block-cover-image {
  min-height: auto;
}
.wysiwyg table td, .wysiwyg table th {
  border: 1px solid gray;
  padding: 1rem;
}
.wysiwyg > * + * {
  margin-top: 1rem;
}
.wysiwyg .column_tiles {
  margin-top: 0.5rem;
}
.wysiwyg .column_tiles .wp-block-group__inner-container > * + * {
  margin-top: 30px;
}
.wysiwyg .column_tiles .wp-block-column {
  padding: 1rem;
  background-color: rgba(100, 112, 121, 0.5);
  color: var(--c-dark-blue);
}
.wysiwyg .column_tiles .wp-block-column h4 {
  margin: 0;
  text-transform: uppercase;
  color: var(--c-dark-blue);
}
.wysiwyg .column_tiles .wp-block-column h4 + p {
  margin-top: 0.5rem;
}

.wp-block-button__link {
  background-color: var(--c-black);
  padding: 10px 15px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
}
.wp-block-button__link:hover {
  color: inherit;
}

@media screen and (max-width: 767px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:only-child) {
    flex: 1;
    margin-left: 0;
  }
}
.has-black-color {
  color: #232323;
}

.has-black-background-color {
  background-color: #232323;
}

.wp-block-button__link.has-black-color:hover {
  color: #232323;
  opacity: 0.8;
}

.has-white-color {
  color: #ffffff;
}

.has-white-background-color {
  background-color: #ffffff;
}

.wp-block-button__link.has-white-color:hover {
  color: #ffffff;
  opacity: 0.8;
}

.has-grey-color {
  color: #647079;
}

.has-grey-background-color {
  background-color: #647079;
}

.wp-block-button__link.has-grey-color:hover {
  color: #647079;
  opacity: 0.8;
}

.has-primary-color {
  color: #1970F4;
}

.has-primary-background-color {
  background-color: #1970F4;
}

.wp-block-button__link.has-primary-color:hover {
  color: #1970F4;
  opacity: 0.8;
}

.has-green-color {
  color: #34b534;
}

.has-green-background-color {
  background-color: #34b534;
}

.wp-block-button__link.has-green-color:hover {
  color: #34b534;
  opacity: 0.8;
}

.has-purple-color {
  color: #aa49f3;
}

.has-purple-background-color {
  background-color: #aa49f3;
}

.wp-block-button__link.has-purple-color:hover {
  color: #aa49f3;
  opacity: 0.8;
}

.has-orange-color {
  color: #007EB7;
}

.has-orange-background-color {
  background-color: #007EB7;
}

.wp-block-button__link.has-orange-color:hover {
  color: #007EB7;
  opacity: 0.8;
}

.has-red-color {
  color: #D54140;
}

.has-red-background-color {
  background-color: #D54140;
}

.wp-block-button__link.has-red-color:hover {
  color: #D54140;
  opacity: 0.8;
}

.has-olive-color {
  color: #adab1e;
}

.has-olive-background-color {
  background-color: #adab1e;
}

.wp-block-button__link.has-olive-color:hover {
  color: #adab1e;
  opacity: 0.8;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 1.2rem;
  position: relative;
  width: 100%;
  min-height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: 1px solid black;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 100%;
  color: var(--c-dark-blue);
}

strong {
  font-weight: 500;
}

.flex-fill {
  flex: 1 0 auto;
}

.row {
  padding: 0 30px;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media screen and (min-width: 639px) {
  .row {
    padding: 0 60px;
  }
}
.row--full {
  padding: 0;
}
@media screen and (min-width: 1536px) {
  .row--slim {
    width: 60%;
  }
}
@media screen and (min-width: 768px), print {
  .row--has-sidebar {
    display: grid;
    grid-template-columns: 70% 30%;
  }
  .row--has-sidebar > *:first-child {
    padding-right: 40px;
  }
}

.sidebar {
  font-size: 80%;
  margin-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .sidebar {
    border-left: 1px solid var(--c-grey);
    padding-left: 40px;
    margin-top: 0;
  }
}
.sidebar > * + * {
  margin-top: 2rem;
}
.sidebar__social {
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 8px;
  border: 1px solid var(--c-grey);
}
.sidebar__social > * + * {
  border-top: 1px solid var(--c-grey);
}
.sidebar__social a {
  padding: 0.5rem 1rem;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .sidebar__social a {
    text-align: right;
  }
}
.sidebar__social a:hover {
  background-color: var(--c-grey);
}

.page-wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.page-fill {
  flex: 1 0 auto;
}

.page-header__masthead {
  padding: 1rem 0;
}
@media screen and (min-width: 768px), print {
  .page-header__masthead {
    padding: 3rem;
  }
}
.page-header__masthead .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-header__logo {
  max-width: 240px;
}
@media screen and (min-width: 1024px) {
  .page-header__logo {
    max-width: 340px;
  }
}
.page-header__mmu {
  display: none;
}
@media screen and (min-width: 1024px) {
  .page-header__mmu {
    display: block;
    width: 120px;
  }
}

.ticker {
  font-size: 90%;
  display: none;
}
@media screen and (min-width: 768px), print {
  .ticker {
    display: block;
  }
}
.ticker ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.homepage-feature {
  display: grid;
  grid-template-columns: 50% 50%;
}
.homepage-feature > * {
  display: block;
}
@media screen and (min-width: 1024px) {
  .homepage-feature {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    grid-template-rows: 300px 200px;
  }
  .homepage-feature > * + * {
    margin-top: 0;
  }
}
.homepage-feature__hero {
  grid-row: 1/2;
  grid-column: 1/3;
}
@media screen and (min-width: 1024px) {
  .homepage-feature__hero {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.homepage-feature__newsletter {
  background-color: #e4e4e4;
  padding: 2rem;
  grid-column: 1/3;
}
@media screen and (min-width: 1024px) {
  .homepage-feature__newsletter {
    grid-column: 2/4;
    border-top: 15px solid var(--c-white);
    border-left: 15px solid var(--c-white);
  }
}
.page-footer {
  --c-fade: #7D8C98;
}
.page-footer__logo {
  max-width: 200px;
}
.page-footer .footer-navigation {
  border-bottom: 1px solid var(--c-grey);
  padding: 1rem 0 2rem 0;
}
.page-footer .footer-navigation .menu {
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px), print {
  .page-footer .footer-navigation .menu {
    gap: 30px;
  }
}
.page-footer .footer-navigation .menu-item {
  flex: 50%;
  flex-grow: 0;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .page-footer .footer-navigation .menu-item {
    flex: auto 0;
  }
}
.page-footer .footer-navigation .menu-item.is-news a:hover {
  color: #D54140;
}
.page-footer .footer-navigation .menu-item.is-features a:hover {
  color: #007EB7;
}
.page-footer .footer-navigation .menu-item.is-sport a:hover {
  color: #34b534;
}
.page-footer .footer-navigation .menu-item.is-entertainment a:hover {
  color: #aa49f3;
}
.page-footer .footer-navigation .menu-item.is-politics a:hover {
  color: #adab1e;
}
.page-footer nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-footer nav ul li {
  display: inline-block;
}
.page-footer nav ul a {
  color: var(--c-fade);
}

.page-footer-signoff {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
}
.page-footer-signoff > * + * {
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  .page-footer-signoff {
    flex-direction: row;
    text-align: right;
  }
  .page-footer-signoff > * + * {
    margin-top: 0;
  }
}
.page-footer-signoff__primary {
  font-size: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-footer-signoff__primary span {
  color: var(--c-fade);
}
.page-footer-signoff__primary br {
  display: none;
}
@media screen and (min-width: 768px), print {
  .page-footer-signoff__primary br {
    display: block;
  }
}
.page-footer-signoff__primary img {
  align-self: center;
}
@media screen and (min-width: 1024px) {
  .page-footer-signoff__primary {
    flex-direction: row;
    text-align: left;
  }
  .page-footer-signoff__primary .page-footer__logo {
    margin-right: 15px;
  }
}
.page-footer-signoff__secondary {
  color: var(--c-fade);
}
.page-footer-signoff__secondary ul.menu > * + * {
  margin-left: 15px;
}

.button {
  padding: 0.5rem 1.5rem;
  display: inline-block;
  background-color: var(--c-dark-blue);
}

.category-label {
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 600;
}

.article-tile {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.article-tile__inner {
  position: relative;
  color: var(--c-white);
}
.article-tile:before {
  content: "";
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.article-tile--single {
  padding-top: 90px;
  font-size: clamp(0.7rem, 5vw, 1.8rem);
}
.article-tile--secondary {
  padding-top: 60px;
  font-size: clamp(0.6rem, 5vw, 1rem);
}

.article-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.article-list__meta {
  display: flex;
  justify-content: space-between;
}

.article-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px), print {
  .article-block {
    flex-direction: row;
  }
}
.article-block__category {
  background-color: var(--c-white);
  position: absolute;
  right: 0;
  top: 0;
  border-bottom-left-radius: 8px;
  z-index: 1;
  font-size: 80%;
  text-transform: uppercase;
  padding: 3px 9px;
  font-weight: 600;
}
.article-block__link {
  display: inline-block;
  line-height: 120%;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
  font-size: 120%;
}
.article-block__image {
  position: relative;
  height: 240px;
  background-color: var(--c-grey);
}
@media screen and (min-width: 768px), print {
  .article-block__image {
    flex: 40% 0;
  }
}
.article-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-block__content {
  flex: 1 0;
}
.article-block--secondary {
  gap: 15px;
  flex-direction: row;
}
.article-block--secondary .article-block__link {
  font-size: 90%;
}
.article-block--secondary .article-block__image {
  min-height: auto;
  aspect-ratio: 1/1;
  height: 120px;
}
@media screen and (min-width: 768px), print {
  .article-block--secondary .article-block__image {
    height: 140px;
  }
}

.article-loop--secondary {
  margin-bottom: 3rem;
}
.article-loop--secondary > * + * {
  margin-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .article-loop--secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
  .article-loop--secondary > * + * {
    margin-top: 0;
  }
}

.single-article__hero {
  height: 300px;
  background-color: var(--c-grey);
}
.single-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.single-article__meta {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-grey);
}
.single-article__share {
  display: flex;
}
.single-article__share > span {
  margin-right: 5px;
}
.single-article__content {
  margin-top: -50px;
  background-color: var(--c-white);
  padding: 1rem 2rem;
  margin-left: 2rem;
  margin-right: 2rem;
  border-radius: 15px;
  position: relative;
}

.pagination > * {
  border: 1px solid var(--c-black);
  display: inline-block;
  width: 40px;
  text-align: center;
  aspect-ratio: 1/1;
  padding: 0.3rem;
}
.pagination > *:hover {
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.pagination *.current, .pagination *.dots {
  opacity: 0.3;
  pointer-events: none;
}
.pagination *.dots {
  border: 0;
}

.wpp-list {
  margin-left: 0;
  padding: 0;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
