@charset "UTF-8";
/*
1. base styles
2. structure
3. typography
4. colors
5. images
*/
/* 1. base styles */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  font-size: 16px;
}

body {
  background: #fff;
  color: #0a0d1c;
  font-family: 'ff-tisa-web-pro', Georgia, Times, serif;
  line-height: 1.8;
}
@media (min-width: 0) and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

@media (min-width: 769px) {
  body {
    font-size: 20px;
  }
}

*,
*:before,
*:after {
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* 2. structure */
.container {
  width: 70.5rem;
  padding: 0 1.5rem;
  margin: 0 auto;
}
.container--small {
  width: 58.5rem;
}

.site-header {
  padding: 1.5rem 0;
  position: relative;
}
@media (min-width: 0) and (max-width: 768px) {
  .site-header {
    text-align: center;
  }
}

.site-header__columns {
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .site-header__columns > * {
    flex: 1;
  }
}
.site-header__logo {
  position: relative;
  z-index: 0;
  height: 2.25rem;
}

@media (min-width: 769px) {
  .site-nav {
    text-align: right;
  }
}
@media (min-width: 0) and (max-width: 768px) {
  .site-nav__main-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 4.5rem 0 1.5rem;
  }
}

.site-nav__main-menu,
.site-nav__submenu {
  list-style: none;
}
@media (min-width: 0) and (max-width: 768px) {
  .site-nav__main-menu li,
  .site-nav > ul > li > a {
    display: block;
  }
}

@media (min-width: 769px) {
  .site-nav__main-menu li,
  .site-nav > ul > li > a {
    display: inline-flex;
  }
}
@media (min-width: 769px) {
  .site-nav__main-menu > li {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }
}
@media (min-width: 769px) {
  .site-nav__main-menu > li:not(:last-child) {
    margin-right: 1.5rem;
  }
}
@media (min-width: 0) and (max-width: 768px) {
  .site-nav__submenu li a:before {
    content: '–';
    margin-right: 0.25rem;
    margin-left: -0.75rem;
    display: inline-block;
    opacity: 0.5;
  }
}

@media (min-width: 769px) {
  .site-nav__submenu {
    display: none;
    position: absolute;
    top: 2.25rem;
    left: 0;
    padding: 1.5rem;
    max-width: none;
  }
  .site-nav__submenu > li,
  .site-nav__submenu a {
    display: block;
    width: 7.5rem;
    text-align: left;
  }
}
.site-nav__dropdown {
  position: relative;
}
@media (min-width: 769px) {
  .site-nav__dropdown:hover > ul {
    display: block;
  }
}
.site-nav__dropdown > a:after {
  color: #ed443b;
  content: '\00a0▾';
}
.site-nav__button {
  display: none;
}
.site-nav__button-label {
  -webkit-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  transform: translateY(-65%);
  right: 1.5rem;
  margin-left: 2.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  z-index: 123;
}
@media (min-width: 769px) {
  .site-nav__button-label {
    display: none;
  }
}
.site-nav__logo {
  display: none;
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  z-index: 99;
}
.site-nav__button:checked {
  outline: 0;
  position: absolute;
  z-index: -2;
}
.site-nav__button:checked ~ .site-nav__main-menu {
  display: block;
}
.site-nav__button:checked ~ .site-nav__logo {
  display: block;
}

label {
  display: block;
}

input,
textarea {
  background: rgba(255, 224, 182, 0.5);
  display: block;
  width: 100%;
  border: 0;
  padding: 1rem 1.5rem;
  border-radius: 0.375rem;
  transition: background 300ms ease;
  font-size: 1rem;
  font-family: 'ff-tisa-web-pro', georgia, serif;
}
input:focus,
textarea:focus {
  background: #ffe0b6;
  outline: 0;
}

textarea {
  height: 9rem;
}

.story,
.story-img {
  display: none;
}

#story-1,
#story-1-img {
  display: block;
}

.hero__background {
  height: 100%;
  position: relative;
}
.hero__background:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero__content {
  text-align: center;
  position: relative;
}
@media (min-width: 769px) {
  .hero__content {
    width: 40.5rem;
    margin: 0 auto;
  }
}
.hero--light .hero__content {
  padding: 6.75rem 0;
}
@media (min-width: 0) and (max-width: 768px) {
  .hero--dark .hero__content {
    padding: 6.75rem 0;
  }
}

@media (min-width: 769px) {
  .hero--dark .hero__content {
    padding: 13.5rem 0;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
}
.button--small {
  padding: 0.75rem 1.25rem;
}

.go-up {
  position: fixed;
  bottom: 0.75rem;
  right: 1.5rem;
  display: none;
}
.header-not-at-top .go-up {
  display: block;
}
html[data-scroll='0'] .go-up {
  display: none;
}

.intro {
  display: flex;
  position: relative;
}
@media (min-width: 0) and (max-width: 768px) {
  .intro {
    flex-direction: column-reverse;
  }
}

@media (min-width: 769px) {
  .intro {
    padding-top: 10.5rem;
    flex-direction: row;
  }
}
.intro__image {
  display: block;
  max-width: none;
}
@media (min-width: 0) and (max-width: 768px) {
  .intro__image {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
}

@media (min-width: 769px) {
  .intro__image {
    width: 34.5rem;
  }
}
.intro__text {
  text-align: center;
}
@media (min-width: 0) and (max-width: 768px) {
  .intro__text {
    padding: 6.75rem 0;
  }
}

@media (min-width: 769px) {
  .intro__text {
    width: 34.5rem;
    max-width: none;
    position: absolute;
    right: 0;
    top: 4.5rem;
  }
}
@media (min-width: 769px) {
  .intro__text-wrapper {
    position: relative;
    padding: 50% 0;
  }
}
@media (min-width: 769px) {
  .intro__text-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 12rem);
  }
}

.audio {
  text-align: center;
  position: relative;
}
@media (min-width: 0) and (max-width: 768px) {
  .audio {
    padding: 10.5rem 0;
  }
}

@media (min-width: 769px) {
  .audio {
    padding: 15rem 0;
  }
}
.audio__button {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  border: 0;
}

.cta {
  text-align: center;
}
@media (min-width: 0) and (max-width: 768px) {
  .cta {
    padding: 6.75rem 0;
  }
}

@media (min-width: 769px) {
  .cta {
    padding: 10.5rem 0;
  }
}

.site-footer {
  padding: 6.75rem 0 0;
}
.site-footer__columns {
  display: flex;
}
@media (min-width: 0) and (max-width: 768px) {
  .site-footer__columns {
    flex-direction: column;
  }
}

.site-footer ul {
  margin-left: 1.5rem;
}
@media (min-width: 0) and (max-width: 768px) {
  .site-footer__column:not(:last-child) {
    margin-bottom: 2.25rem;
  }
}

.site-footer__column--info,
.site-footer__column--take-action {
  flex-basis: 25%;
}
.site-footer__column--take-action ul {
  margin-bottom: 0.75rem;
}
.site-footer__column--colophon {
  flex-basis: 50%;
}
.site-footer__copyright {
  text-align: center;
  padding: 6.75rem 0 3.75rem;
}

p:not(:last-child) {
  margin-bottom: 0.75rem;
}
p + p {
  margin-top: 2.25rem;
}
p + h2 {
  margin-top: 2.25rem;
}

.pagination {
  list-style: none;
  text-align: center;
}
.pagination li,
.pagination a {
  display: inline-block;
}
.pagination a {
  position: relative;
  z-index: 1;
  margin-right: 1.5rem;
}
.pagination .active {
  position: relative;
}
.pagination .active:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(-35%, -5%);
  content: ' ';
  border-radius: 0.75rem;
  display: block;
  z-index: 0;
}
.pagination--page {
  margin-bottom: 3.75rem;
}

.featured-post {
  margin-bottom: 3.75rem;
}
.featured-post__date {
  margin-top: 0.75rem;
}
@media (min-width: 0) and (max-width: 768px) {
  .featured-post {
    margin-top: 1.5rem;
  }
}

@media (min-width: 769px) {
  .featured-post {
    margin-top: 3.75rem;
  }
}
.featured-post__content {
  display: flex;
}
@media (min-width: 0) and (max-width: 768px) {
  .featured-post__content {
    flex-direction: column;
  }
  .featured-post__content > div:first-child {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 769px) {
  .featured-post__content > * {
    flex: 1;
  }
  .featured-post__content > div:first-child {
    margin-right: 1.5rem;
  }
  .featured-post__content > div:last-child {
    position: relative;
    margin-left: 1.5rem;
  }
}
.featured-post__pagination {
  text-align: left;
}
@media (min-width: 0) and (max-width: 768px) {
  .featured-post__pagination {
    margin-top: 1.5rem;
  }
}

@media (min-width: 769px) {
  .featured-post__pagination {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.stories-nav {
  margin-bottom: 1.5rem;
}
.stories-nav__categories,
.stories-nav li,
.stories-nav a {
  display: inline-block;
}
.stories-nav a {
  margin-right: 1.5rem;
}

.stories-grid {
  margin-bottom: 3.75rem;
}
@media (min-width: 0) and (max-width: 768px) {
  .stories--archive .stories-grid {
    margin-top: 1.5rem;
  }
}

@media (min-width: 769px) {
  .stories--archive .stories-grid {
    margin-top: 3.75rem;
  }
}
.stories-grid__list {
  display: grid;
  list-style: none;
}
@media (min-width: 769px) {
  .stories-grid__list {
    grid-gap: 2.25rem;
    margin-bottom: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 0) and (max-width: 768px) {
  .stories-grid__list li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

.story-block {
  line-height: 1;
}
.story-block__text {
  padding: 1.5rem;
  background: #fff;
  border: 1px #ddd solid;
  border-top: 0;
  margin-top: -4px;
}
.story-block__meta,
.story-block__title {
  margin-bottom: 1.5rem;
}
.story-block__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 0) and (max-width: 768px) {
  .post-container {
    margin-top: 1.5rem;
  }
}

@media (min-width: 769px) {
  .post-container {
    margin-top: 6rem;
  }
}
.post-container__meta {
  text-align: center;
}
.post-container__title {
  text-align: center;
}
.post-container__main-image img {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 769px) {
  .post-container__content {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
.post-container__content img {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  width: 100%;
}

.more-stories-title {
  text-align: center;
  margin: 3.75rem 0;
}

@media (min-width: 0) and (max-width: 768px) {
  .text-block {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
}

@media (min-width: 769px) {
  .text-block {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    display: flex;
  }
  .text-block > * {
    flex: 1;
  }
  .text-block h2 {
    margin-right: 3.75rem;
  }
  .text-block div {
    flex-basis: 50%;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  .text-block div {
    margin-top: 0;
  }
}

.text-block + .text-block {
  padding-top: 0;
}

/* 3. typography */
.site-nav {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}
@media (min-width: 0) and (max-width: 768px) {
  .site-nav {
    line-height: 2.25rem;
  }
}

@media (min-width: 0) and (max-width: 768px) {
  .site-nav__submenu {
    font-size: 0.875rem;
  }
}

@media (min-width: 769px) {
  .site-nav__submenu {
    line-height: 2.25rem;
  }
}

h1 {
  font-size: 2.4em;
  line-height: 1.25;
  font-weight: 600;
}
h1 + * {
  margin-top: 2.25rem;
}

h2 {
  font-size: 1.6em;
  line-height: 1.125;
  font-weight: 600;
}
h2 + * {
  margin-top: 1.5rem;
}

h3,
label {
  font-size: 1.125em;
  line-height: 2.25;
  font-weight: 600;
}
h3 + *,
label + * {
  margin-top: 0.75rem;
}

.button {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  border: 0;
}

.site-nav,
h1,
h2,
h3,
label,
.button {
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
}

.site-footer {
  font-size: 1.125rem;
}

.audio__button {
  text-transform: uppercase;
  font-size: 0.8125rem;
}

/* 4. colors */
a {
  color: #ed443b;
  font-weight: bold;
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
}

.subtle-link,
.story-block__meta a,
.story-block__title a,
.pagination a,
.stories-nav a {
  color: #131417;
}

.muted {
  opacity: 0.6;
}

.pagination .active:before {
  background: #ffe0b6;
}

@media (min-width: 0) and (max-width: 768px) {
  .site-nav__main-menu {
    background-color: #131417;
  }
}

.hero--dark .site-nav__main-menu > li > a {
  color: #fff;
}
.hero--light .site-nav__main-menu > li > a {
  color: #131417;
}
.site-nav__button:checked ~ ul > li > a {
  color: #fff;
}
.site-nav__dropdown > a:after {
  color: #ed443b;
}
@media (min-width: 0) and (max-width: 768px) {
  .site-nav__submenu li a {
    color: rgba(255, 255, 255, 0.75);
  }
  .site-nav__submenu li a:before {
    opacity: 0.5;
  }
}

@media (min-width: 769px) {
  .site-nav__submenu {
    background: #fff;
  }
  .site-nav__submenu a {
    color: #131417;
  }
}
.site-nav__button-label {
  background-color: transparent;
  color: #fff;
}

.hero--dark {
  background-color: #131417;
  color: #fff;
}
.hero--light {
  background-color: #ffe0b6;
}
.hero--dark .hero__background {
  background-image: linear-gradient(180deg, rgba(19, 20, 23, 0.15) 0%, rgba(19, 20, 23, 0) 50%);
}
.hero--dark .hero__background:before {
  background-color: rgba(19, 20, 23, 0.3);
}

.button {
  color: #fff;
  background: #ed443b;
  transition: color 300ms ease, background-color 300ms ease;
}
.button:hover {
  background: #e01f15;
}
.button--secondary {
  background: none;
  box-shadow: inset 0 0 0 2px #ed443b;
}
.button--secondary:hover {
  background: none;
  color: #e01f15;
  border-color: #e01f15;
}
.button--secondary-reverse {
  color: #ed443b;
}

.peach {
  background: #ffe0b6;
}

.audio {
  color: #fff;
  background: #ed443b;
}
.audio__button {
  background: rgba(19, 20, 23, 0.4);
}

.site-footer {
  background: #131417;
  color: #fff;
}
.site-footer a {
  color: #fff;
}
.site-footer__copyright {
  opacity: 0.75;
}
.site-footer__button {
  box-shadow: inset 0 0 0 2px #fff;
}
.site-footer__button:hover {
  color: #ffe0b6;
  box-shadow: inset 0 0 0 2px #ffe0b6;
}

@media (min-width: 0) and (max-width: 768px) {
  .intro__text {
    box-shadow: -48px 0 0 0 #ffe0b6, 48px 0 0 0 #ffe0b6;
  }
}

/* 5. images */
.hero--dark {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.home .hero--dark {
  background-image: url(/images/home-hero.jpg);
}
@media (min-width: 0) and (max-width: 768px) {
  .home .hero--dark {
    background-position: right;
  }
}

.louisiana .hero--dark {
  background-image: url(/images/louisiana.jpg);
}
.volunteer .hero--dark {
  background-image: url(/images/volunteer.jpg);
}
@media (min-width: 0) and (max-width: 768px) {
  .volunteer .hero--dark {
    background-position: left;
  }
}

.site-nav__button-label {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.hero--light .site-nav__button-label {
  background-image: url(/images/menu-black.svg);
}
.site-nav__button-label {
  background-image: url(/images/menu.svg);
}
input:checked + .site-nav__button-label {
  background-image: url(/images/close.svg);
}

.audio {
  background-image: url(/images/audio.gif);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 21rem;
}
.audio__button:before {
  content: url(/images/muted.svg);
  vertical-align: middle;
  margin-right: 0.75rem;
  position: relative;
  top: 2px;
}

/*# sourceMappingURL=style.css.map */
