﻿:root {
  /* Base styles */
  --font-family: 'Roboto', sans-serif;
  --color-black: #000000;
  --color-link: #0073e6;
  --color-cta-bg: #84be63;
  --color-cta-list-bg: #eaf0f3;
  --color-cta-blue: #0900ff;

  /* Font sizes */
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-l: 20px;
  --font-size-xl: 22px;
  --font-size-2xl: 24px;
  --font-size-3xl: 28px;
  --font-size-4xl: 30px;
  --font-size-5xl: 50px;

  /* Line heights */
  --line-height-base: 27px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.advertorial-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: #1b4f72;
  color: #ffffff;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  line-height: 1.3;
}

.navbar {
  font-family: var(--font-family);
  width: 100%;
  padding: 10px 15px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 100;
  @media screen and (min-width: 768px) {
    padding: 10px 50px;
  }
  .logo {
    max-width: 220px;
    position: relative;
    display: block;
    img {
      width: 100%;
      height: auto;
    }
  }
  .navbar__right {
    a {
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 0px;
      border-radius: 10px;
      text-decoration: none;
      color: var(--color-black);
      background-color: var(--color-cta-bg);
      height: 48px;
      font-size: var(--font-size-base);
      padding: 0px 20px;
    }
  }
}
.listicle__wrapper {
  padding: 132px 15px 40px;
  max-width: 975px;
  margin: 0px auto 0;
  font-family: var(--font-family);

  @media screen and (min-width: 768px) {
    padding: 132px 30px 40px;
  }

  @media screen and (min-width: 1024px) {
    padding: 132px 40px 40px;
  }
  .meta {
    font-size: var(--font-size-base);
    color: var(--color-black);
    text-align: center;
    margin: 20px 0px;
    .disclaimer {
      color: #1b4f72;
      font-weight: 700;
      font-size: 15px;
    }
    .category {
      color: #069;
      font-weight: bold;
      text-transform: uppercase;
    }
  }

  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  :has(.mobile:empty) .desktop {
    display: block;
  }
  :has(.mobile:empty) .mobile {
    display: none;
  }
  @media (min-width: 768px) {
    .desktop {
      display: block;
    }
    .mobile {
      display: none;
    }
  }
}

.header__title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
  @media screen and (min-width: 768px) {
    font-size: var(--font-size-5xl);
  }
}
.header__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-black);
  text-align: center;
  margin: 15px 0 5px;
  font-weight: 200;
  @media screen and (min-width: 768px) {
    font-size: var(--font-size-xl);
  }
}

.listicle__info {
  display: flex;
  align-items: center;
  margin: 20px 0px 10px;

  img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
  }
  .info__author {
    display: flex;
    align-items: center;
    .line {
      height: 20px;
      width: 1px;
      margin: 0px 10px;
      background-color: rgba(0, 0, 0, 0.2);
      display: inline-block;
    }
  }
}

.listicle__body {
  .content__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .heading__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 24px 0px 20px;
    @media screen and (min-width: 768px) {
      font-size: var(--font-size-4xl);
    }
  }
  .content__text {
    margin-top: 20px;
    font-size: var(--font-size-base);
    @media screen and (min-width: 768px) {
      font-size: var(--font-size-lg);
    }
    a {
      color: var(--color-link);
      text-decoration: none;
    }
    p {
      margin-bottom: 22px;
    }
    ul {
      margin-left: 15px;
      list-style-type: disc;
      li {
        font-weight: bold;
        margin-bottom: 20px;
      }
    }
    h4 {
      font-size: var(--font-size-2xl);
      font-weight: 700;
      margin: 24px 0px 20px;
      @media screen and (min-width: 768px) {
        font-size: var(--font-size-4xl);
      }
    }
  }
  .blockquote__content {
    blockquote {
      border-left: 4px solid #1e5a90;
      background-color: #f5f5f5;
      padding: 20px 30px;
      font-style: normal;
      color: #333;
      margin: 35px 0;
      font-size: var(--font-size-base);
      @media screen and (min-width: 768px) {
        font-size: var(--font-size-lg);
      }
      &:empty,
      &:blank {
        display: none;
      }
    }
  }
  .cta__container {
    display: flex;
    justify-content: center;
    margin: 20px 0px 10px;
    a {
      text-align: center;
      display: block;
      border: 0px;
      border-radius: 10px;
      text-decoration: none;
      color: #FFFFFF;
      background-color: var(--color-cta-bg);
      background-image: none;
      text-align: center;
      max-width: 450px;
      height: 62px;
      line-height: 62px;
      padding: 0px 20px;
      font-size: var(--font-size-l);
      white-space: nowrap;
    }
  }

  .cta__headline {
    text-align: center;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 10px 0px;
  }
  .cta__list--container {
    display: grid;
    gap: 10px;
    padding: 20px 0px;
    grid-template-columns: repeat(2, 1fr);
    @media screen and (min-width: 768px) {
      grid-template-columns: repeat(3, 1fr);
    }
    a {
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 0px;
      border-radius: 10px;
      text-decoration: none;
      color: var(--color-cta-blue);
      background-color: var(--color-cta-list-bg);
      height: 62px;
      font-weight: 700;
      font-size: var(--font-size-2xl);
      @media screen and (min-width: 768px) {
        font-size: var(--font-size-4xl);
      }
    }
  }
}

[data-zip='yes'] {
  button.zip__submit {
    text-align: center;
    display: block;
    border: 0px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-black);
    background-color: var(--color-cta-bg);
    background-image: none;
    text-align: center;
    max-width: 450px;
    height: 62px;
    line-height: 62px;
    padding: 0px 20px;
    font-size: var(--font-size-l);
    white-space: nowrap;
    cursor: pointer;
    width: 100%;
  }

  .zip__submit--box {
    padding: 30px;
    margin: 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--color-cta-bg);
    border-radius: 10px;
    h4 {
      font-size: var(--font-size-2xl);
      font-weight: 700;
      @media screen and (min-width: 768px) {
        font-size: var(--font-size-4xl);
      }
    }
    .form {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
    .form-control {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      position: relative;
      label {
        position: absolute;
        top: -5px;
        left: 10px;
        background-color: #fff;
        padding: 0 5px;
        font-size: 10px;
      }
      input[type='text'] {
        font-size: 20px;
        padding: 10px 20px;
        border-radius: 50px;
      }
    }
  }
  .cta__container,
  .cta__headline {
    display: none;
  }
}
[data-zip=''] .zip__submit--box {
  display: none;
}

[data-content=''] {
  display: none !important;
}
footer {
  color: #999;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 10px;
  padding: 20px 15px 40px !important;
  margin: 0 auto !important;
  text-align: center;

  @media screen and (min-width: 768px) {
    padding: 20px 30px 40px !important;
  }

  @media screen and (min-width: 1024px) {
    padding: 20px 40px 40px !important;
  }

  a {
    color: #000;
    font-family: "Merriweather", serif;
    font-size: 0.85rem;
    text-decoration: none;
  }

  .footer__list {
    padding-left: 0;
    margin-left: -5px;
    list-style: none;
    margin: 0 0 16px;
    border-top: 1px solid #000;
    margin-top: 10px;
    padding-top: 16px;

    &>li {
      display: inline-block;
      padding-right: 5px;
      padding-left: 5px;
    }

    .privacyCalifornia,
    .piiOptOut {
      display: none !important;
    }
  }

  .footer__disclaimer {
    margin: 0 0 16px;
    line-height: 1.5;
  }

  .footer__copyright {
    margin: 0;
    color: #666;
    font-size: 12px;
    font-weight: 700;
  }
}

.contact-page {
  padding-top: 140px !important;
  padding-bottom: 40px !important;
}

.contact-page__content {
  max-width: 720px;
  margin: 0 auto;
  color: #222;
  line-height: 1.6;
}

.contact-page__content h1 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #1b4f72;
}

.contact-page__content p {
  margin-bottom: 14px;
  font-size: 16px;
}

.contact-page__details {
  margin: 24px 0;
  padding: 18px 20px;
  background: #f3f7fa;
  border-left: 4px solid #1b4f72;
}

.contact-page__details p {
  margin-bottom: 8px;
}

.contact-page__details a {
  color: #0073e6;
  text-decoration: none;
}

.contact-page__details a:hover {
  text-decoration: underline;
}

.privacy-page .contact-page__content h2 {
  font-size: 20px;
  margin: 28px 0 10px;
  color: #1b4f72;
}

