/**
 * Color Palette
 */

 :root {
  /* Primary */
  --primary-900: #05050A;
  --primary-800: #09090F;
  --primary-700: #0E0F17;
  --primary-600: #141821;
  --primary-500: #202A3D;
  --primary-400: #344B63;
  --primary-300: #5C778C;
  --primary-200: #82ABBF;
  --primary-100: #D5F0FA;
  --primary-50: #F3FCFF;

  /* Secondary */
  --secondary-900: #1C2252;
  --secondary-800: #303875;
  --secondary-700: #345594;
  --secondary-600: #407EB8;
  --secondary-500: #2EA1D2;
  --secondary-400: #2FB9D7;
  --secondary-300: #5BC0DB;
  --secondary-200: #8EE1EB;
  --secondary-100: #9FFDFD;
  --secondary-50: #8EFCFE;

  /* Tertiary */
  --tertiary-900: #042E21;
  --tertiary-800: #074F3A;
  --tertiary-700: #0B805E;
  --tertiary-600: #0EAB7C;
  --tertiary-500: #10C281;
  --tertiary-400: #12CF96;
  --tertiary-300: #26DEA7;
  --tertiary-200: #51EDBE;
  --tertiary-100: #77F7D1;
  --tertiary-50: #9CF7DC;

  /* Accent */
  --accent-900: #1C1C04;
  --accent-800: #3B3708;
  --accent-700: #63551B;
  --accent-600: #917727;
  --accent-500: #B59F31;
  --accent-400: #E8D847;
  --accent-300: #FFF06C;
  --accent-200: #FDFF88;
  --accent-100: #FAFFB0;
  --accent-50: #F6F7E1;

  /* Success */
  --success-900: #3E801B;
  --success-800: #6CBF3F;
  --success-700: #A4F069;
  --success-600: rgba(10, 164, 69, 0.15);

  /* Warning */
  --warning-900: #CC4F02;
  --warning-800: #F7833B;
  --warning-700: #FFA269;
  --warning-600: rgba(255, 162, 69, 0.15);

  /* Error */
  --error-900: #8F1414;
  --error-800: #CC2B1D;
  --error-700: #F54A3B;
  --error-600: rgba(245, 74, 59, 0.15);

  /* Gradients & Styles */
  --gradient-1: linear-gradient(90deg, #F3FCFF, #FAFFB0);
  --gradient-2: linear-gradient(90deg, #030305, #0E0F17);
  --gradient-3: linear-gradient(90deg, #7396B0, #D1EBF4);
  --gradient-4: linear-gradient(90deg, #F3FCFF, #FAFFB0);
  --gradient-5: linear-gradient(90deg, #141821, #030305);
  --gradient-6: linear-gradient(90deg, #303031, #030305);
  --gradient-7: linear-gradient(90deg, #7396B0, #FAFFB0);
  --gradient-8: linear-gradient(90deg, #141821, #FAFFB0);

  /* CTA Buttons */
  --cta-enabled: #FAFFB0;
  --cta-hover: rgba(255, 255, 255, 0.24);
  --cta-focus: rgba(255, 255, 255, 0.36);
  --cta-pressed: rgba(255, 255, 255, 0.12);
  --cta2-enabled: #F3FCFF;
  --cta2-hover: rgba(255, 255, 255, 0.24);
  --cta2-focus: rgba(255, 255, 255, 0.36);
  --cta2-pressed: rgba(255, 255, 255, 0.12);
  --proce-enabled: #BA2B8F;
  --proce-hover: rgba(255, 255, 255, 0.24);
  --proce-focus: rgba(255, 255, 255, 0.36);
  --proce-pressed: rgba(255, 255, 255, 0.12);

  --body-background: var(--primary-700);
}


/**
 * Typography
 */

:root {
  /* Font Families */
  --font-primary: Raleway, sans-serif;
  --font-secondary: Poppins, sans-serif;
  --font-heading: var(--font-secondary);
  --font-b1: var(--font-primary);
  --font-b2: var(--font-primary);

  /* Font Sizes */
  --font-size-d1: var(--font-size-d1-mobile);
  --font-size-d2: var(--font-size-d2-mobile);
  --font-size-display-3: var(--font-size-display-3-mobile);
  --font-size-display-4: var(--font-size-display-4-mobile);

  --font-size-h1: var(--font-size-h1-mobile);
  --font-size-h2: var(--font-size-h2-mobile);
  --font-size-h3: var(--font-size-h3-mobile);
  --font-size-h4: var(--font-size-h4-mobile);
  --font-size-b1: var(--font-size-b1-mobile);
  --font-size-b2: var(--font-size-b2-mobile);

  /* Mobile Font Sizes */
  --font-size-d1-mobile: 4.5rem;    /* 72px */
  --font-size-d2-mobile: 1.5rem;    /* 24px */
  --font-size-display-3-mobile: 1rem;      /* 16px */
  --font-size-display-4-mobile: 1rem;      /* 16px */

  --font-size-h1-mobile: 1.375rem;         /* 22px */
  --font-size-h2-mobile: 1.25rem;          /* 20px */
  --font-size-h3-mobile: 1rem;             /* 16px */
  --font-size-h4-mobile: 0.875rem;         /* 14px */

  --font-size-b1-mobile: 1rem;         /* 16px */
  --font-size-b2-mobile: 0.875rem;     /* 14px */

  /* Tablet Font Sizes */
  --font-size-d1-tablet: 8.75rem;   /* 140px */
  --font-size-d2-tablet: 3rem;      /* 48px */
  --font-size-display-3-tablet: 2rem;      /* 32px */
  --font-size-display-4-tablet: 1.25rem;   /* 20px */

  --font-size-h1-tablet: 1.75rem;          /* 28px */
  --font-size-h2-tablet: 1.5rem;           /* 24px */
  --font-size-h3-tablet: 1.25rem;          /* 20px */
  --font-size-h4-tablet: 1rem;             /* 16px */

  --font-size-b1-tablet: 1.125rem;     /* 18px */
  --font-size-b2-tablet: 1rem;         /* 16px */

  /* Desktop Font Sizes */
  --font-size-d1-desktop: 11.25rem; /* 180px */
  --font-size-d2-desktop: 3.75rem;  /* 60px */
  --font-size-display-3-desktop: 2.5rem;   /* 40px */
  --font-size-display-4-desktop: 1.5rem;   /* 24px */

  --font-size-h1-desktop: 2rem;            /* 32px */
  --font-size-h2-desktop: 1.75rem;         /* 28px */
  --font-size-h3-desktop: 1.5rem;          /* 24px */
  --font-size-h4-desktop: 1.125rem;        /* 18px */

  --font-size-b1-desktop: 1.25rem;     /* 20px */
  --font-size-b2-desktop: 1.125rem;    /* 18px */

  /* Font Line Heights */
  --font-height-h1: 1.5;
  --font-height-h2: 1.5;
  --font-height-h3: 1.5;
  --font-height-h4: 1.5;
  --font-height-b1: 1.3;
  --font-height-b2: 1.25;
  --font-height-d1: 1.5;
  --font-height-d2: 1.5;
  --font-height-d3: 1.5;

  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-semibold: 500;
  --font-weight-bold: 600;
  --font-weight-extrabold: 700;
}

@media (min-width: 740px) {
  :root {
    /* Font Sizes */
    --font-size-d1: var(--font-size-d1-tablet);
    --font-size-d2: var(--font-size-d2-tablet);
    --font-size-display-3: var(--font-size-display-3-tablet);
    --font-size-display-4: var(--font-size-display-4-tablet);
    --font-size-h1: var(--font-size-h1-tablet);
    --font-size-h2: var(--font-size-h2-tablet);
    --font-size-h3: var(--font-size-h3-tablet);
    --font-size-h4: var(--font-size-h4-tablet);
    --font-size-b1: var(--font-size-b1-tablet);
    --font-size-b2: var(--font-size-b2-tablet);

    /* Font Line Heights */
    --font-height-b1: 1.3333;
  }
}

@media (min-width: 1260px) {
  :root {
    /* Font Sizes */
    --font-size-d1: var(--font-size-d1-desktop);
    --font-size-d2: var(--font-size-d2-desktop);
    --font-size-display-3: var(--font-size-display-3-desktop);
    --font-size-display-4: var(--font-size-display-4-desktop);
    --font-size-h1: var(--font-size-h1-desktop);
    --font-size-h2: var(--font-size-h2-desktop);
    --font-size-h3: var(--font-size-h3-desktop);
    --font-size-h4: var(--font-size-h4-desktop);
    --font-size-b1: var(--font-size-b1-desktop);
    --font-size-b2: var(--font-size-b2-desktop);

    /* Font Line Heights */
    --font-height-b1: 1.5;
  }
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-extrabold {
  font-weight: 800 !important;
}

.text-b1 {
  font-family: var(--font-primary);
  font-style: normal;
  font-size: var(--font-size-b1);
  font-weight: var(--font-weight-regular);
  line-height: var(--font-height-b1);
}

.text-b2 {
  font-family: var(--font-primary);
  font-style: normal;
  font-size: var(--font-size-b2);
  font-weight: var(--font-weight-regular);
  line-height: var(--font-height-b2);
}

.text-d1 {
  font-family: var(--font-secondary);
  font-style: normal;
  font-size: var(--font-size-d1);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--font-height-d1);
}

.text-d2 {
  font-family: var(--font-secondary);
  font-style: normal;
  font-weight: var(--font-weight-extrabold);
  font-size: var(--font-size-d2);
  line-height: var(--font-height-d2);
}

.text-d3 {
  font-family: var(--font-secondary);
  font-style: normal;
  font-size: var(--font-size-display-3);
  font-weight: var(--font-weight-bold);
  line-height: var(--font-height-d3);
}

.text-display-4 {
  font-family: var(--font-secondary);
  font-style: normal;
  font-size: var(--font-size-display-4);
  font-weight: var(--font-weight-bold);
}

h1, .h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--font-height-h1);
  margin: 0.5rem 0;
}

h2, .h2 {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--font-height-h2);
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
}

h3, .h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  line-height: var(--font-height-h3);
}

h4, .h4 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-bold);
}

.text-accent {
  color: var(--accent-100);
  text-shadow: 0 0 32px var(--accent-600);
}

a,
a:visited {
  color: var(--accent-50);
  text-decoration: none;
}

blockquote,
.blockquote {
  padding: 0.01px 1.5rem 0.01px 2rem;
  margin: 0;
}

blockquote::before,
.blockquote::before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMuNSAxOC40Yy0zLTQtLjctMTAuNiAwLTExLjQuNy0xLjYgMi4zLTMgMy43LTMgMy4zIDAgMy4zIDMgMiA0LjYtMS4zIDEuNi44IDYuMy44IDkuMyAwIDMuMS01LjIgMi4zLTYuNS41Wk0xNS41IDE4LjRjLTMtNC0uNy0xMC42IDAtMTEuNC43LTEuNiAyLjMtMyAzLjctMyAzLjMgMCAzLjMgMyAyIDQuNi0xLjMgMS42LjggNi4zLjggOS4zIDAgMy4xLTUuMiAyLjMtNi41LjVaIiBmaWxsPSIjQ0M0RjAyIi8+PC9zdmc+);
}

blockquote::after,
.blockquote::after {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIwLjUgNS42YzMgNCAuNyAxMC42IDAgMTEuNC0uNyAxLjYtMi4zIDMtMy43IDMtMy4zIDAtMy4zLTMtMi00LjZDMTYuMSAxMy44IDE0IDkgMTQgNmMwLTMuMSA1LjItMi4zIDYuNS0uNVpNOC41IDUuNmMzIDQgLjcgMTAuNiAwIDExLjQtLjcgMS42LTIuMyAzLTMuNyAzLTMuMyAwLTMuMy0zLTItNC42QzQuMSAxMy44IDIgOSAyIDYgMiAzIDcuMiAzLjggOC41IDUuNloiIGZpbGw9IiNDQzRGMDIiLz48L3N2Zz4=);
}

blockquote p:first-child,
.blockquote p:first-child {
  margin-top: 1rem;
}

blockquote p:last-child,
.blockquote p:last-child {
  margin-bottom: 1rem;
}

p {
  margin: 1.25rem 0;
}

h1 + p {
  margin-top: 0.5rem;
}

@media (min-width: 740px) {
  p {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1260px) {
  p {
    margin-top: 1.8rem;
    margin-bottom: 1.8rem;
  }

  h2 + p {
    margin-top: 1.5rem;
  }


  blockquote,
  .blockquote {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  blockquote::before,
  .blockquote::before,
  blockquote::after,
  .blockquote::after {
    width: 2rem;
    height: 2rem;
  }

  blockquote p:first-child,
  .blockquote p:first-child {
    margin-top: 1.5rem;
  }

  blockquote p:last-child,
  .blockquote p:last-child {
    margin-bottom: 1.5rem;
  }
}

/**
 * Forms
 */

.form {
  display: flex;
  flex-direction: column;
  color: var(--primary-200);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-top: 1.3rem;
}

.form label,
.form-label {
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  line-height: var(--font-height-h4);
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-200);
}

.form .error-message,
.form + .error-message {
  font-size: 80%;
  color: var(--error-700);
  margin-top: 0.5rem;
}

.form-checkbox label {
  font-family: var(--font-b2);
  font-size: var(--font-size-b2);
  line-height: var(--font-height-b2);
  font-weight: var(--font-weight-semibold);
}

.form-input {
  border-radius: 4px;
  background: transparent;
  border: 2px solid var(--primary-500);
  margin-top: 0.5rem;
  color: var(--primary-50);
  justify-content: center;
  padding: 12px 1rem;
  font-family: var(--font-secondary);
  color: var(--primary-50);
}

.form-input--secondary {
  background: var(--secondary-800);
  border: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.form-input:focus {
  border-color: var(--accent-500);
  outline: none;
}

.form-checkbox {
  margin-top: 1.5rem;
  color: var(--primary-200);
}

.checkbox {
  display: inline-block;
  position: relative;
  padding-left: 2rem;
  margin-right: 1rem;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: var(--font-size-b2);
  font-weight: var(--font-weight-regular);
  line-height: var(--font-height-b2);
}

.checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
  left: -99in;
}

.checkbox input[type="checkbox"] + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzIgMzIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNi42NyA1LjMzSDUuMzN2MjEuMzRoMjEuMzRWNS4zM1pNNS4zMyAyLjY3YTIuNjcgMi42NyAwIDAgMC0yLjY2IDIuNjZ2MjEuMzRjMCAxLjQ3IDEuMiAyLjY2IDIuNjYgMi42NmgyMS4zNGMxLjQ3IDAgMi42Ni0xLjIgMi42Ni0yLjY2VjUuMzNjMC0xLjQ3LTEuMTktMi42Ni0yLjY2LTIuNjZINS4zM1oiIGZpbGw9IiMyMDJBM0QiLz48L3N2Zz4=)
}

.checkbox input[type="checkbox"]:checked + label::before {
  height: 1.625rem;
  top: -0.09rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMzIgMzQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTI5LjMzIDZjLTIuNTQuOS00Ljg4IDIuMzQtNi44MyA0LjI2YTE4LjAyIDE4LjAyIDAgMCAwLTUgOS4yNyAxOC4xIDE4LjEgMCAwIDAtOC4xNy03LjA2djMuMzZhMTUuMjIgMTUuMjIgMCAwIDEgNi43IDcuNWg0LjE2di0uMjlhMTQuOTggMTQuOTggMCAwIDEgOS4xNC0xMy44VjZaIiBmaWxsPSIjRjNGQ0ZGIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik02LjY3IDcuMzNjLS43NCAwLTEuMzQuNi0xLjM0IDEuMzR2MTguNjZjMCAuNzQuNiAxLjM0IDEuMzQgMS4zNGgxOC42NmMuNzQgMCAxLjM0LS42IDEuMzQtMS4zNFYxOGgyLjY2djkuMzNhNCA0IDAgMCAxLTQgNEg2LjY3YTQgNCAwIDAgMS00LTRWOC42N2E0IDQgMCAwIDEgNC00SDE2djIuNjZINi42N1oiIGZpbGw9IiMyMDJBM0QiLz48L3N2Zz4=)
}

.button-primary {
  justify-content: center;
  border-radius: 1.5rem;
  box-shadow: 0 0 32px 0 var(--accent-600);
  border: 0;
  background: linear-gradient(180deg, var(--accent-100) 0%, #fff06c 100%);
  color: var(--primary-800);
  text-align: center;
  padding: 0.675rem 0.5rem;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--font-height-b1);
  font-size: var(--font-size-h3);
  cursor: pointer;
}

@media (min-width: 740px) {
  .form-group {
    margin-top: 2rem;
  }

  .form-checkbox {
    margin-top: 2rem;
  }
}

@media (min-width: 1260px) {
  .button-primary {
    font-size: var(--font-size-h3-tablet);
    padding-top: 0.81rem;
    padding-bottom: 0.81rem;
    border-radius: 1.8rem;
  }
}

/**
 * Layout
 */

:root {
  --container-padding-x: 16px;
  --container-max-width: 1376px
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-b1);
  font-weight: var(--font-weight-regular);
  line-height: var(--font-height-b2);
  background-color: var(--body-background);
  color: var(--primary-50);
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
  width: 100%;
  box-sizing: border-box;
}

.main {
  width: 100%;
  overflow: hidden;
}

.layout-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
  max-width: var(--container-max-width);
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 740px) {
  :root {
    --container-padding-x: 32px;
  }
}

/**
 * Utils
 */

.icon-text-arrow-right {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  position: relative;
  top: -0.1rem;
  margin-left: 0.3rem;
}

/**
 * Header
 */

.header {
  color: var(--primary-50);
  padding: 1rem 0;
  display: flex;
  align-items: center;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-logo {
  padding: 0.3125rem;
  margin: -0.3125rem;
  color: var(--primary-50);
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 1;
}

.header-logo svg {
  height: 100%;
  width: 100%;
  color: #fff;
}

.header-nav {
  display: flex;
  justify-content: space-around;
  background-color: var(--primary-700);
  color: var(--primary-50);
  position: sticky;
  bottom: 0;
  padding: 0 2rem;
}

.header-nav a {
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--primary-200);
  text-decoration: none;
  text-align: center;
  padding: 0.75rem 1rem;
  transition: color 0.1s;
  display: flex;
  align-items: center;
}

.header-nav a:hover {
  color: var(--primary-50);
}

.header-nav .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}

.header-right {
  display: flex;
  color: var(--primary-200);
}

.header-social-icon {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.3125rem;
  margin: -0.3125rem -0.3125rem -0.3125rem 0.5rem;
  transform: translateX(0.1rem);
  display: inline-block;
  transition: color 0.1s;
}

.header-social-icon svg {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0.1rem;
}

.header-social-icon:hover {
  color: var(--primary-50);
}

.header-raydium-icon svg {
  transform: scale(1.7);
}

@media (min-width: 740px) {
  .header-logo {
    width: 11rem;
  }

  .header-social-icon {
    width: 1.3rem;
    height: 1.3rem;
  }
}

@media (min-width: 1260px) {
  .header {
    background-color: var(--body-background);
    height: 6rem;
    border-bottom: 2px solid var(--primary-500);
    box-sizing: border-box;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
  }

  .header-logo {
    width: auto;
    flex-basis: 17.6rem;
    height: 2rem;
  }

  .header-social-icon {
    width: 1.7rem;
    height: 1.7rem;
  }
}

/**
 * Page Content
 */

.page-news main {
  margin-bottom: 150px;
}

.page-title {
  font-size: var(--font-size-d2);
  font-weight: var(--font-weight-bold);
  line-height: var(--font-height-h1);
  color: var(--accent-100);
  text-shadow: 0 0 30px var(--accent-500);
  margin: 0.9rem 0 3rem;
}

.news-item {
  margin-bottom: 3rem;
  color: var(--primary-200);
  font-size: var(--font-size-b1);
}

.news-item h1 {
  display: block;
  margin-top: 1.1rem;
}

.load-more {
  font-size: var(--font-size-b1);
  text-align: center;
  color: var(--accent-50);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4rem 0;
  transition: transform 0.5s ease-in-out;
}

.load-more:hover {
  transform: translate(0, 0.25rem);
}

.load-more svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  margin-top: 0.5rem;
}

.article {
  color: var(--primary-200);
  font-size: var(--font-size-b1);
}

.article h1,
.article h2,
.article h3,
.article h4 {
  color: var(--primary-50);
}

@media (min-width: 740px) {
  .page-title {
    margin-top: 2rem;
  }

  .news-item time {
    padding: 0.1rem 0.7rem;
  }
}

@media (min-width: 1260px) {
  .page-title {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .news-item {
    margin-bottom: 4.5rem;
  }

  .news-item h1 {
    margin-top: 1.5rem;
  }

  .load-more {
    margin: 5rem 0;
  }

  .load-more svg {
    width: 2rem;
    height: 2rem;
  }
}

/**
 * Misc
 */

.text-badge {
  color: var(--tertiary-100);
  border: 2px solid var(--primary-400);
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-bold);
  display: block;
  border-radius: 1rem;
  padding: 0 0.6rem;
  line-height: 1.425;
  display: inline;
}

.text-badge-filled {
  background-color: var(--primary-400);
}

.card {
  padding: 1.5rem 1rem;
  background: var(--primary-500);
  border-radius: 8px;
}

/**
 * Footer
 */

.footer {
  margin-top: 6rem;
  padding: 0.25rem 0 1rem;
  color: var(--primary-50);
  font-size: var(--font-size-b1);
  position: relative;
  z-index: 0;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url('/assets/images/footer-mobile.avif') no-repeat;
  background-position: 1% center;
  background-size: 100% 177px;
  height: 177px;
  width: 100%;
}

.footer .logo {
  height: 1rem;
  width: 8.8rem;
  margin-bottom: 2rem;
}

.footer .contact h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.65rem;
}

.footer .contact address {
  font-style: normal;
  color: var(--primary-200);
}

.footer .contact address p:first-child {
  margin-top: 0;
}

.footer .footer-links {
  margin: 0.5rem 0;
  list-style: none;
  padding: 0;
}

.footer .footer-links li {
  overflow: hidden;
}

.footer .footer-links a {
  color: var(--accent-50);
  text-decoration: none;
  margin: 0.5rem 0;
  display: block;
}

.footer .stay-in-loop a {
  color: var(--primary-50);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 1.7rem 0 2rem;
  text-decoration: none;
}

.footer .stay-in-loop h3 {
  margin: 0;
}

.footer .stay-in-loop .social-icon {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  border-radius: 50%;
  background: var(--secondary-800);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .stay-in-loop .social-icon .icon {
  height: 1.25rem;
  width: 1.25rem;
}

.copyright {
  text-align: center;
  margin-top: 7rem;
  font-weight: var(--font-weight-bold);
  color: var(--secondary-600);
}

.copyright-text {
  margin: 0;
}

@media (max-width: 739px) {
  .footer .container {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 740px) {
  .footer {
    margin-top: 6rem;
    padding-bottom: 1.5rem;
  }

  .footer::after {
    background-image: url('/assets/images/footer-tablet.avif');
    background-size: 100% 225px;
    background-position: center bottom;
    height: 225px;
  }

  .footer .logo {
    width: 11rem;
    height: 1.25rem;
  }

  .footer .contact h3 {
    margin-bottom: 1rem;
  }

  .footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }

  .footer .footer-links {
    min-width: 45%;
    text-align: right;
  }

  .footer .stay-in-loop a {
    margin-top: 2.8rem;
  }

  .copyright {
    margin-top: 8rem;
  }
}

@media (min-width: 1260px) {
  .footer {
    padding-bottom: 2.2rem;
  }

  .footer::after {
    background-image: url('/assets/images/footer-desktop.avif');
    background-size: 100% 327px;
    background-position: center bottom;
    height: 393px;
  }

  .footer .logo {
    width: 17.6rem;
    height: 2rem;
    margin-bottom: 3rem;
  }

  .footer .icon-text-arrow-right {
    width: 2rem;
    height: 2rem;
  }

  .footer .stay-in-loop a {
    margin-top: 3.5rem;
  }

  .copyright {
    margin-top: 13rem;
  }
}

/**
 * Sticky mobile navigation
 */

.sticky-nav {
  display: flex;
  justify-content: space-around;
  border-top: 2px solid var(--primary-500);
  background-color: var(--primary-700);
  position: sticky;
  bottom: 0;
  z-index: 10;
  padding: 0 0.5rem;
}

.sticky-nav a {
  font-family: var(--font-heading);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-bold);
  color: var(--primary-200);
  text-decoration: none;
  text-align: center;
  padding: 0.5rem 0 0.7rem;
  transition: color 0.1s;
  display: block;
}

.sticky-nav a:hover {
  color: var(--primary-50);
}

.sticky-nav .icon {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto 0.3rem;
}

@media (min-width: 375px) {
  .sticky-nav a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (min-width: 740px) {
  .sticky-nav {
    padding-left: 4%;
    padding-right: 4%;
  }

  .sticky-nav a {
    padding: 0.75rem 1rem;
  }
}

/**
 * Message page
 */

.message-view {
  text-align: center;
  width: 100%;
}

.message-view-image {
  position: relative;
  margin-bottom: 24px;
}

.message-view-image svg,
.message-view-image img {
  display: block;
  margin: 0 auto;
}

.message-view-image .happy-face,
.message-view-image .unhappy-face {
  width: 144px;
  height: 144px;
  display: block;
  color: var(--success-700);
  margin-bottom: -144px;
}

.message-view-image .unhappy-face {
  color: var(--warning-700);
}

.message-view-image .field-with-lights {
  width: 100%;
  max-width: 328px;
  aspect-ratio: 328/240;
  display: block;
  color: var(--success-700);
}

.message-view-title {
  margin-bottom: 0;
}

.message-view-text {
  color: var(--primary-200);
}

.message-view-text p:first-child {
  margin-top: 0;
}

.message-view-links {
  margin-top: 1.5rem;
}

@media (min-width: 740px) {
  .message-view-image {
    margin-bottom: 32px;
  }

  .message-view-links {
    margin-top: 2.3rem;
  }
}

/**
 * Helpers
 */

@media (max-width: 739px) {
  .hide-mobile {
    display: none !important;
  }

  .tablet-only {
    display: none !important;
  }

  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 740px) and (max-width: 1259px) {
  .hide-tablet {
    display: none !important;
  }

  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 740px) {
  .mobile-only {
    display: none !important;
  }
}

@media (min-width: 1260px) {
  .hide-desktop {
    display: none !important;
  }

  .tablet-only {
    display: none !important;
  }
}


/**
 * Fonts
 * This is used to load the fonts from Google Fonts: https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Raleway:wght@400;500;600;700&display=swap
 */

/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrJJnecnFHGPezSQ.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6Z1JlFd2JQEl8qw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6Z1xlFd2JQEk.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7Z1JlFd2JQEl8qw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCAIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCkIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCIIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCMIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyC0IT4ttDfA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCAIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCkIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCIIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCMIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyC0IT4ttDfA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCAIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCkIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCIIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCMIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyC0IT4ttDfA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCAIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCkIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCIIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCMIT4ttDfCmxA.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyC0IT4ttDfA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
