/*******************************************************************************
 * Element defaults
 ******************************************************************************/

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

html {
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

body { margin: 0; }

p {
  margin-block-start: 0;
  margin-block-end: 1rem;
}

strong { font-weight: bolder; }

.br { display: block; }

a {
  color: #0779D0;
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:active { text-decoration: underline; }

hr, .hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid #C6C6C6;
  border-left: 1px solid #C6C6C6;
}

[hidden] { display: none !important; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  margin-block-start: 0;
  margin-block-end: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.display-1 { font-size: 1.5rem; }

@media (min-width: 416px) {
  .display-1 {
    font-size: calc(24px + (64 - 24) * ((100vw - 416px) / (1104 - 416)));
  }
}

@media (min-width: 1104px) {
  .display-1 { font-size: 4rem; }
}

.display-2 { font-size: 1.5rem; }

@media (min-width: 416px) {
  .display-2 {
    font-size: calc(24px + (48 - 24) * ((100vw - 416px) / (1104 - 416)));
  }
}

@media (min-width: 1104px) {
  .display-2 { font-size: 3rem; }
}

.lead { font-size: 1.0625rem; }

@media (min-width: 416px) {
  .lead {
    font-size: calc(17px + (21 - 17) * ((100vw - 416px) / (1104 - 416)));
  }
}

@media (min-width: 1104px) {
  .lead { font-size: 1.3125rem; }
}

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

@media (min-width: 416px) {
  .text--larger {
    font-size: calc(18px + (18 - 16) * ((100vw - 416px) / (1104 - 416)));
  }
}

@media (min-width: 1104px) {
  .text--larger { font-size: 1.125rem; }
}

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

h1, .h1 { font-size: 1.3125rem; }

@media (min-width: 416px) {
  h1, .h1 {
    font-size: calc(21px + (28 - 21) * ((100vw - 416px) / (1104 - 416)));
  }
}

@media (min-width: 1104px) {
  h1, .h1 { font-size: 1.75rem; }
}

h2, .h2 { font-size: 1.25rem; }

@media (min-width: 416px) {
  h2, .h2 {
    font-size: calc(20px + (24 - 20) * ((100vw - 416px) / (1104 - 416)));
  }
}

@media (min-width: 1104px) {
  h2, .h2 { font-size: 1.5rem; }
}

/*******************************************************************************
 * Utilities
 ******************************************************************************/

/* Containers
 ******************************************************************************/

.container {
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding-inline-start: 1rem;
  padding-inline-end: 1rem;
}

@media (min-width: 69rem) {
  .container { max-width: 67rem; }
}

/* Backgrounds
 ******************************************************************************/

.background--light-grey { background-color: #F4F4F4; }

.background--dark-grey {
  color: #ffffff;
  background-color: #333333;
}

/* Highlights
 ******************************************************************************/

.highlight {
  padding: 0.125rem 0.25rem;
  background-color: #FFCA00;
  border-radius: 0.1875rem;
  font-style: normal;
  font-size: smaller;
  font-weight: bolder;
}

.highlight--red {
  background-color: #E40D0D;
}

/* Buttons
 ******************************************************************************/

.button {
  display: inline-block;
  cursor: pointer;
  text-align: start;
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  border: 0;
  background-color: hsl(212, 93%, 55%);
  box-shadow: 0px 4px 8px rgba(51, 51, 51, 0.2);
}

.button:hover,
.button:focus {
  background-color: hsl(212, 93%, 45%);
  text-decoration: none;
}

.button:active {
  background-color: hsl(212, 93%, 35%);;
}

.button--outline {
  background-color: #fff;
  color: #2284F7;
  border: 1px solid #C6C6C6;
  box-shadow: none;
}

.button--outline:hover,
.button--outline:focus {
  color: #fff;
  border: 1px solid hsl(212, 93%, 45%);
  box-shadow: 0px 4px 8px rgba(51, 51, 51, 0.2);
}

.button--outline:active {
  border: 1px solid hsl(212, 93%, 35%);
}

.button--full {
  display: block;
  width: 100%;
  text-align: center;
}

/*******************************************************************************
 * Components
 ******************************************************************************/

/* Cookie feature banner
 ******************************************************************************/

.cookie-feature-banner {
  display: flex;
  gap: 2rem;
}

.cookie-feature-banner__image {
  display: none;
  margin-top: 0.5rem;
  margin-bottom: -6rem;
}

@media (min-width: 769px) {
  .cookie-feature-banner__image {
    display: block;
  }
}

.skeleton .cookie-feature-banner__image {
  display: none;
}

.cookie-feature-banner__contents {
  margin: 0;
  padding: 1rem 0;
}

@media (min-width: 769px) {
  .cookie-feature-banner__contents {
    padding: 1.5rem 0;
  }
}

/* Ads blocked header
 ******************************************************************************/

.container.ads-blocked {
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 540px;
}

@media (min-width: 992px) {
  .container.ads-blocked {
    max-width: none;
  }
}

.ab-header-section-1 {
  padding: 2rem 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 992px) {
  .ab-header-section-1 {
    justify-content: center;
    text-align: center;
  }
}

.ab-header-section-1__heading {
  margin: 0;
  font-size: 1.5rem;
}

.ab-header-section-1__heading .ads-blocked {
  color: #E40D0D;
}

.ab-header-section-1__heading--with-block-count,
.--has-block-count .ab-header-section-1__heading { display: none; }
.--has-block-count .ab-header-section-1__heading.ab-header-section-1__heading--with-block-count { display: block; }

@media (min-width: 992px) {
  .ab-header-section-1__heading {
    font-size: 2.5rem;
  }
}

.ab-header-section-1__subheading {
  width: 100%;
  margin: 0 0 -0.5rem 0;
  font-size: 1.125rem;
  color: #666;
}
