:root {
  --flag-red: #B31942;
  --flag-blue: #0A3161;
  --white: #FFFFFF;
  --off-white: #F7F7F3;
  --ink: #111827;
  --muted: #5B6472;
  --shadow: rgba(0, 0, 0, 0.28);
  --header-height: 86px;
  --mobile-header-height: 132px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

button {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.hidden {
  display: none !important;
}

/* Header */

.campaign-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: 100%;
  height: var(--header-height);
  background: var(--white);
  box-shadow: 0 4px 12px var(--shadow);
}

.campaign-header-brand {
  display: flex;
  align-items: center;
  width: 58%;
  height: 100%;
  padding: 8px;
  background: var(--white);
}

.campaign-logo-button {
  width: 72px;
  height: 70px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.campaign-logo {
  width: auto;
  height: 70px;
  object-fit: contain;
}

.campaign-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 72px);
  height: 70px;
  padding: 0 18px;
  background: var(--flag-red);
  color: var(--white);
}

.campaign-title-wrap h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.05;
  text-transform: uppercase;
}

.campaign-nav {
  display: flex;
  align-items: center;
  width: 42%;
  height: 100%;
  padding: 8px;
  gap: 8px;
  background: var(--white);
}

.campaign-nav-button {
  height: 70px;
  width: 100%;
  border: none;
  background: var(--flag-blue);
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: filter 160ms ease, transform 160ms ease;
}

.campaign-nav-button:hover {
  filter: brightness(1.22);
}

.campaign-nav-button:active {
  transform: translateY(1px);
}

/* Shell */

.campaign-shell {
  width: 100%;
  min-height: calc(100vh - var(--header-height));
}

.campaign-view {
  width: 100%;
  min-height: calc(100vh - var(--header-height));
}

/* Footer */

.campaign-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  padding: 6px 12px;
  background: rgba(10, 49, 97, 0.82);
  color: var(--white);
  font-size: 12px;
}

/* Home hero */

.campaign-home {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: #081426;
}

.campaign-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.campaign-hero picture {
  display: block;
  width: 100%;
  height: calc(100vh - var(--header-height));
}

.campaign-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.campaign-hero-overlay {
  position: absolute;
  right: 32px;
  bottom: 54px;
  max-width: 520px;
  padding: 24px 28px;
  border-left: 6px solid var(--flag-red);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px var(--shadow);
  text-align: left;
}

.campaign-hero-kicker {
  margin: 0 0 8px;
  color: var(--flag-blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.campaign-hero-title {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 36px;
  line-height: 1.05;
}

.campaign-hero-copy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

/* Content pages */

.campaign-page {
  min-height: calc(100vh - var(--header-height));
  padding: 42px 28px 72px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.92)),
    var(--page-bg, none);
  background-size: cover;
  background-position: center;
}

.campaign-page-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.campaign-page-card {
  padding: 34px;
  border-top: 8px solid var(--flag-red);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px var(--shadow);
  text-align: left;
}

.campaign-page-card h2 {
  margin: 0 0 12px;
  color: var(--flag-blue);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 36px;
  line-height: 1.1;
}

.campaign-page-card h3 {
  margin: 26px 0 8px;
  color: var(--ink);
  font-size: 22px;
}

.campaign-page-card p {
  margin: 0 0 14px;
  color: #273244;
  font-size: 17px;
  line-height: 1.58;
}

.campaign-placeholder-list {
  margin: 14px 0 0;
  padding-left: 22px;
}

.campaign-placeholder-list li {
  margin: 8px 0;
  color: #273244;
  font-size: 16px;
  line-height: 1.45;
}

.campaign-note {
  margin-top: 20px;
  padding: 16px;
  border-left: 5px solid var(--flag-blue);
  background: #eef3f8;
  color: #273244;
  font-size: 15px;
  line-height: 1.45;
}

.support-carousel {

  display: grid;

  grid-template-columns: 48px 1fr 48px;

  gap: 14px;

  align-items: center;

  margin-top: 28px;

}

.support-carousel-card {

  display: grid;

  grid-template-columns: 220px 1fr;

  min-height: 275px;

  overflow: hidden;

  border: 2px solid rgba(10, 49, 97, 0.18);

  background: #ffffff;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);

}

.support-card-image-wrap {

  display: flex;

  align-items: center;

  justify-content: center;

  background: #eef3f8;

}

.support-card-image {
display: flex;
  width: 100%;

  height: 100%;

  /* object-fit: cover; */

}

.support-card-body {

  display: flex;

  flex-direction: column;

  justify-content: center;


  padding: 24px;

}

.support-card-body h3 {

    display: flex;
    height:auto;
  margin: 0 0 8px;

  color: var(--flag-blue);

  font-family: Georgia, "Times New Roman", Times, serif;

  font-size: 28px;

}

.support-card-type {

  margin: 0 0 14px !important;

  color: var(--flag-red) !important;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.8px;

}

.support-carousel-button {

  width: 48px;

  height: 64px;

  border: none;

  background: var(--flag-blue);

  color: var(--white);

  cursor: pointer;

  font-size: 38px;

  line-height: 1;

}

.support-carousel-button:hover {

  filter: brightness(1.2);

}

.support-carousel-dots {

  display: flex;

  justify-content: center;

  gap: 8px;

  margin-top: 16px;

}

.support-carousel-dot {

  width: 11px;

  height: 11px;

  padding: 0;

  border: none;

  border-radius: 999px;

  background: #b8c1cc;

  cursor: pointer;

}

.support-carousel-dot-active {

  background: var(--flag-red);

}
.support-community-flag {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 240px;
  padding: 10px 14px;
  background: var(--flag-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: -4px -4px 12px rgba(0, 0, 0, 0.2);
}

/* Small laptops */

@media (max-width: 1100px) {
  .campaign-title-wrap h1 {
    font-size: 23px;
  }

  .campaign-nav-button {
    font-size: 14px;
  }

  .campaign-hero-overlay {
    max-width: 460px;
  }
}

/* Tablets */

@media (max-width: 900px) {
  :root {
    --header-height: var(--mobile-header-height);
  }

  .campaign-header {
    flex-direction: column;
    height: var(--mobile-header-height);
  }

  .campaign-header-brand {
    width: 100%;
    height: 66px;
    padding: 6px;
  }

  .campaign-logo-button {
    width: 58px;
    height: 54px;
  }

  .campaign-logo {
    height: 54px;
  }

  .campaign-title-wrap {
    width: calc(100% - 58px);
    height: 54px;
    padding: 0 12px;
  }

  .campaign-title-wrap h1 {
    font-size: 19px;
  }

  .campaign-nav {
    width: 100%;
    height: 66px;
    padding: 6px;
    gap: 6px;
  }

  .campaign-nav-button {
    height: 54px;
    font-size: 13px;
  }

  .campaign-hero-image {
    object-position: center top;
  }

  .campaign-hero-overlay {
    right: 18px;
    bottom: 42px;
    left: 18px;
    max-width: none;
    padding: 18px;
  }

  .campaign-hero-title {
    font-size: 28px;
  }

  .campaign-page {
    padding: 28px 18px 72px;
  }

  .campaign-page-card {
    padding: 24px;
  }

  .campaign-page-card h2 {
    font-size: 30px;
  }
}

@media (max-width: 700px) {

  .support-carousel {

    grid-template-columns: 38px 1fr 38px;

    gap: 8px;

  }

  .support-carousel-card {

    grid-template-columns: 1fr;

  }

  .support-card-image-wrap {

    min-height: 160px;
    max-height:300px;

  }

  .support-card-body {
    height: 250px;
    padding: 18px;

  }

  .support-card-body h3 {

    font-size: 23px;

  }

  .support-carousel-button {

    width: 38px;

    height: 54px;

    font-size: 32px;

  }
  .support-carousel-card {
  min-height: 275px;
  height: auto;
}

}

/* Phones */

@media (max-width: 600px) {
  .campaign-title-wrap h1 {
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .campaign-nav-button {
    font-size: 11px;
    line-height: 1.15;
    padding: 0 6px;
  }

  .campaign-hero-overlay {
    bottom: 36px;
    padding: 16px;
  }

  .campaign-hero-kicker {
    font-size: 12px;
  }

  .campaign-hero-title {
    font-size: 24px;
  }

  .campaign-hero-copy {
    font-size: 14px;
  }

  .campaign-page-card h2 {
    font-size: 26px;
  }

  .campaign-page-card h3 {
    font-size: 20px;
  }

  .campaign-page-card p,
  .campaign-placeholder-list li {
    font-size: 15px;
  }
}

/* Very small phones */

@media (max-width: 390px) {
  .campaign-title-wrap h1 {
    font-size: 13px;
  }

  .campaign-nav-button {
    font-size: 10px;
  }
}
.support-carousel-card {
  position: relative;
}

.support-endorsement-flag {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 280px;
  padding: 10px 14px;
  background: var(--flag-red);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: -4px -4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 700px) {
  .support-endorsement-flag {
    max-width: 220px;
    padding: 8px 10px;
    font-size: 11px;
  }
}