/* =========================================================
   WHO WE ARE, VISION, MISSION & OVERALL GOAL
   ========================================================= */

:root{
  --wwa-max-width: 1220px;

  --wwa-page-bg: #ffffff;

  --wwa-heading: #0cc392;
  --wwa-title: #0b2f50;

  --wwa-text: #222222;
  --wwa-muted: #4f5965;

  --wwa-rule: #0cc392;
  --wwa-accent: #d09353;
}

/* =========================================================
   SECTION
   ========================================================= */

.wwa{
  width: 100%;
  /* background: var(--wwa-page-bg); */
  background: #eae7e7;
  color: var(--wwa-text);
}

.wwa__wrap{
  width: min(var(--wwa-max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 0;
}

/* =========================================================
   WHO WE ARE INTRODUCTION
   ========================================================= */

.wwa__intro{
  max-width: 1080px;
  margin: 0 0 clamp(42px, 6vw, 72px);
}

.wwa__title{
  margin: 0 0 28px;

  color: var(--wwa-heading);

  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.08;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.wwa__lead {
  margin: 0 0 18px;

  color: var(--wwa-text);

  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 400;
  line-height: 1.8;

  text-align: left;
}
 ul{
  margin: 0 0 18px;
  color: var(--wwa-text);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
 }

ul {
  margin: 0 0 18px;

  color: var(--wwa-text);

  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 400;
  line-height: 1.8;

  text-align: left;
}


.wwa__lead:last-child{
  margin-bottom: 0;
}

.wwa__lead strong{
  color: var(--wwa-accent);
  font-weight: 800;
}

/* =========================================================
   VISION, MISSION & OVERALL GOAL GRID
   ========================================================= */

.wwa__columns{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(36px, 5vw, 64px);
  row-gap: clamp(42px, 5vw, 64px);
  align-items: start;
}

.wwa__column{
  min-width: 0;
}

/* Makes Overall Goal span both Vision and Mission columns */
.wwa__column--full{
  grid-column: 1 / -1;
}

/* =========================================================
   COMPONENT HEADINGS
   ========================================================= */

.wwa__heading{
  margin: 0;

  color: var(--wwa-heading);

  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 900;
  line-height: 1.25;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* =========================================================
   GREEN DIVIDER RULE
   ========================================================= */

.wwa__rule{
  width: 100%;
  height: 2px;

  margin: 20px 0 22px;

  background: var(--wwa-rule);
}

/* =========================================================
   VISION, MISSION & GOAL TEXT
   ========================================================= */

.wwa__statement{
  margin: 0;

  color: var(--wwa-title);

  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  font-weight: 600;
  line-height: 1.75;

  text-align: left;
}

/* Overall Goal can use more horizontal space */
.wwa__column--full .wwa__statement{
  max-width: 1080px;
}

/* =========================================================
   LARGE SCREENS
   ========================================================= */

@media (min-width: 1400px){
  .wwa__wrap{
    padding-top: 88px;
    padding-bottom: 100px;
  }

  .wwa__intro{
    max-width: 1120px;
  }

  .wwa__columns{
    column-gap: 72px;
  }
}

/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 900px){
  .wwa__wrap{
    width: min(var(--wwa-max-width), calc(100% - 32px));
  }

  .wwa__intro{
    max-width: 100%;
  }

  .wwa__title{
    letter-spacing: 0.16em;
  }

  .wwa__columns{
    column-gap: 32px;
    row-gap: 44px;
  }

  .wwa__lead{
    font-size: 1rem;
    line-height: 1.75;
  }

  .wwa__statement{
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px){
  .wwa__wrap{
    width: calc(100% - 32px);
    padding: 42px 0 56px;
  }

  .wwa__intro{
    margin-bottom: 42px;
  }

  .wwa__title{
    margin-bottom: 22px;

    font-size: clamp(1.8rem, 9vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: 0.12em;
  }

  .wwa__lead{
    margin-bottom: 16px;

    font-size: 1rem;
    line-height: 1.72;
  }

  .wwa__columns{
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .wwa__column--full{
    grid-column: auto;
  }

  .wwa__heading{
    font-size: 1.12rem;
    line-height: 1.3;
    letter-spacing: 0.13em;
  }

  .wwa__rule{
    margin: 16px 0 18px;
  }

  .wwa__statement{
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

/* =========================================================
   EXTRA-SMALL MOBILE
   ========================================================= */

@media (max-width: 420px){
  .wwa__wrap{
    width: calc(100% - 24px);
    padding: 36px 0 48px;
  }

  .wwa__title{
    font-size: 1.72rem;
    letter-spacing: 0.1em;
  }

  .wwa__lead{
    font-size: 0.96rem;
  }

  .wwa__heading{
    font-size: 1.05rem;
    letter-spacing: 0.11em;
  }

  .wwa__statement{
    font-size: 0.95rem;
  }
}