/**
 * Functions - Calculations
 * Simple functions to help developers calculate different values from percentages to sizing such as REMs.
 *
 * - 01 - Imports
 * - 02 - Target/Container Percentage
 * - 03 - REMs
 */
/*------------------------------------*\
  01 - Imports
\*------------------------------------*/
/*------------------------------------*\
  02 - Target/Container Percentage
  Calculate the percentage of a target size compared to a container size.
  - @param $target: Size of an element needing a calculated percentage.
  - @param $container: Size of the target's container, needed to calculate percentage.
  - @example = width: calc-percent(250, 1000);
\*------------------------------------*/
/*------------------------------------*\
  03 - REMs
  Calculate a size into REM units -- mostly used for font size rendering.
  - @param $size: Size of an element needing a calculated size into REMs.
  - @param $base: Base font size of the site -- defaults to 16px.
  - @example = font-size: calc-rem(24px);
\*------------------------------------*/
/*------------------------------------*\
  02 - Theme
\*------------------------------------*/
/*------------------------------------*\
  04 - Mappings
\*------------------------------------*/
/**
 * Settings - Typography
 * Standard sets of typographical variables and mappings to be of use across the site, for consistency and accuracy.
 *
 * - 01 - Line Heights
 * - 02 - Fonts
 */
/*------------------------------------*\
  01 - Line Heights
\*------------------------------------*/
/*------------------------------------*\
  02 - Fonts
\*------------------------------------*/
/*------------------------------------*\
  03 - Weights
\*------------------------------------*/
/**
 * Mixins - Buttons
 * Standard sets of Button mixins to be of use across the site, for consistency and accuracy.
 *
 * - 01 - Small
 * - 02 - Large Red
 * - 03 - Large Underline Red
 */
/*------------------------------------*\
  01 - Small
\*------------------------------------*/
/*------------------------------------*\
  02 - Large Red
\*------------------------------------*/
/*------------------------------------*\
  03 - Large Underline Red
\*------------------------------------*/
/**
 * Mixins - Media
 * Use these mixins when needing to easily define media styles, such as sizing, positioning, etc.
 *
 * - 01 - Background Image
 * - 02 - Responsive IFrame
 */
/*------------------------------------*\
  01 - Background Image
  Instead of using an inline style to define a background image, and needing to set an HTML image as a background
  image, use this mixin.
  - @param $position: Alignment of the image within it's frame [center, top, bottom] (default = center)
  - @example = @include background-image(center);
\*------------------------------------*/
/*------------------------------------*\
  02 - Responsive IFrame
  When needing an IFrame to be responsive to it's container, and ultimately for mobile devices, use this mixin. This
  mixin needs to be applied to the parent HTML element of the IFrame.
  - @param $width: Sizing width to determine the ratio of sizing needed for the responsive IFrame. [defaults to 16]
  - @param $height: Sizing height to determine the ratio of sizing needed for the responsive IFrame. [defaults to 9]
  - @example = @include responsive-iframe(16, 9);
\*------------------------------------*/
.teaser {
  display: block;
}
.teaser:not(:first-child) .teaser__content {
  padding-top: 48px;
}

.teaser__image {
  align-self: flex-start;
  -webkit-box-flex: 0;
          flex: none;
}
.teaser__image img {
  display: block;
}
@media (max-width: 767px) {
  .teaser__image {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .teaser__image {
    margin-right: 30px;
    width: 33.3333333333%;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .teaser__image {
    margin-right: 40px;
  }
}

.teaser__content {
  padding-bottom: 48px;
  max-width: 100%;
}

.teaser__content-divider {
  border-bottom: 1px solid var(--color-indivisible-blue);
}

.teaser__donation-link {
  background-color: #C84141;
  border: none;
  color: #fff;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: var(--font-size-body);
  font-weight: 800;
  letter-spacing: normal;
  letter-spacing: initial;
  padding: 1rem 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 150ms;
       -o-transition-duration: 150ms;
          transition-duration: 150ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.teaser__donation-link a {
  color: #FFFFFF;
  text-decoration: none;
}
.teaser__donation-link:hover, .teaser__donation-link:focus {
  color: #FFFFFF;
  text-decoration: none;
  background-color: #983736;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 150ms;
       -o-transition-duration: 150ms;
          transition-duration: 150ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.teaser__donation-link:focus {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 150ms;
       -o-transition-duration: 150ms;
          transition-duration: 150ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.teaser__grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  grid-gap: 9px;
  gap: 9px;
}
@supports not (gap: 9px) {
  .teaser__grid .views-row {
    margin-bottom: 9px;
  }
  .teaser__grid .views-row:not(:last-child) {
    margin-right: 9px;
  }
}

.teaser__image + .teaser__content {
  -webkit-box-flex: initial;
          flex: initial;
}
@media (min-width: 1280px) {
  .teaser__image + .teaser__content {
    width: 66.6666666667%;
  }
}

.teaser__title:not(:last-child) {
  margin-bottom: 0.5em;
}
.teaser__title .teaser__title-link i.fa-external-link-square-alt {
  color: var(--color-indivisible-red);
}

.teaser__meta {
  -webkit-box-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5em;
}
.teaser__meta > :not(:last-child) {
  margin-right: 1.5em;
}

.teaser__type {
  font-size: var(--font-size-body-small);
}
.teaser__type:not(:last-child) {
  margin-bottom: var(--space-gap);
}

.teaser__subtitle {
  font-size: var(--font-size-body-small);
  font-weight: var(--font-line-height-normal);
}

.teaser__description {
  line-height: var(--font-line-height-large);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: 30px;
}

.teaser__dateline {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
}

.teaser__author {
  font-size: var(--font-size-body-small);
}
.teaser__author:not(:last-child) {
  margin-bottom: 0.5em;
}

.teaser__more-link:not(:first-child) {
  margin-top: var(--space-gap);
}

.teaser__tags {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  margin-top: 32px;
}
.teaser__tags a {
  background: #e2ecf3;
  border-radius: 120px;
  color: var(--color-indivisible-navy);
  font-family: var(--font-family-sans);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  line-height: 30px;
  margin-bottom: 16px;
  padding: 4px 16px;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.teaser__tags a:hover {
  text-decoration: underline;
}
.teaser__tags a:not(:last-child) {
  margin-right: 16px;
}

.teaser--no-image .teaser__content {
  width: 100%;
}

.teaser--square {
  background-color: #e2ecf3;
  max-width: 328px;
  min-height: 220px;
  position: relative;
  width: 100%;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.teaser--square.js--block-link {
  cursor: pointer;
}
.teaser--square.js--block-link:hover {
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.teaser--square .teaser__content {
  padding: 30px;
  width: 100%;
  z-index: 1;
}
.teaser--square .teaser__content .teaser__description {
  color: var(--color-indivisible-black);
  margin: 0;
}
.teaser--square .teaser__content .teaser__title {
  color: var(--color-indivisible-black);
  font-size: var(--font-size-heading);
  margin: 0;
}
.teaser--square .teaser__content .teaser__title a {
  color: var(--color-indivisible-navy);
}
.teaser--square .teaser__content .teaser__title a:hover, .teaser--square .teaser__content .teaser__title a:focus {
  color: var(--color-indivisible-black);
}
@media (max-width: 991px) {
  .teaser--square .teaser__content {
    padding: var(--space-gap);
  }
}
.teaser--square .teaser__image--square {
  position: relative;
}
.teaser--square .teaser__image {
  margin: 0;
}

#block-views-block-featured-candidates-block-1 {
  padding-bottom: 0;
}

.teaser--featured-candidate {
  display: -webkit-box;
  display: flex;
  padding: 32px 0;
}
.teaser--featured-candidate:not(:last-child) {
  border-bottom: 1px solid var(--color-indivisible-blue);
}
.teaser--featured-candidate:first-of-type {
  margin-top: 32px;
  padding-top: 0;
}
.teaser--featured-candidate:last-child {
  padding-bottom: 0;
}
.teaser--featured-candidate .featured-candidate__details {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column nowrap;
  margin-left: 56px;
}
.teaser--featured-candidate .featured-candidate__details .teaser__description {
  margin-bottom: 32px;
}
.teaser--featured-candidate .featured-candidate__details .teaser__donate {
  background-color: #C84141;
  border: none;
  color: #fff;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: var(--font-size-body);
  font-weight: 800;
  letter-spacing: normal;
  letter-spacing: initial;
  padding: 1rem 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 150ms;
       -o-transition-duration: 150ms;
          transition-duration: 150ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 0;
  margin-bottom: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.teaser--featured-candidate .featured-candidate__details .teaser__donate a {
  color: #FFFFFF;
  text-decoration: none;
}
.teaser--featured-candidate .featured-candidate__details .teaser__donate:hover, .teaser--featured-candidate .featured-candidate__details .teaser__donate:focus {
  color: #FFFFFF;
  text-decoration: none;
  background-color: #983736;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 150ms;
       -o-transition-duration: 150ms;
          transition-duration: 150ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.teaser--featured-candidate .featured-candidate__details .teaser__donate:focus {
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 150ms;
       -o-transition-duration: 150ms;
          transition-duration: 150ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.teaser--featured-candidate .featured-candidate__details .teaser__website {
  border: none;
  border-bottom: 4px solid #C84141;
  color: #C84141;
  display: inline-block;
  padding: 0 0 0.25rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: var(--font-size-body);
  font-weight: 800;
  margin: 6px 15px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 150ms;
       -o-transition-duration: 150ms;
          transition-duration: 150ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 2px;
  margin-left: 0;
  margin-bottom: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.teaser--featured-candidate .featured-candidate__details .teaser__website:hover, .teaser--featured-candidate .featured-candidate__details .teaser__website:focus {
  color: #983736;
  border-color: #983736;
  text-decoration: none;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 150ms;
       -o-transition-duration: 150ms;
          transition-duration: 150ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.teaser--featured-candidate .featured-candidate__details .teaser__website:focus {
  outline: auto 2px #983736;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 150ms;
       -o-transition-duration: 150ms;
          transition-duration: 150ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.teaser--featured-candidate .featured-candidate__details .teaser__social {
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row;
}
.teaser--featured-candidate .featured-candidate__details .teaser__social .teaser__social-label {
  color: var(--color-indivisible-black);
  font-family: var(--font-family-serif);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  margin: 0;
  padding-right: 13px;
}
.teaser--featured-candidate .featured-candidate__details .teaser__social a.icon {
  color: var(--color-indivisible-navy);
  display: block;
  font-size: 1.5rem;
  margin: 0 5px 0 0;
  padding: 10px 13px;
}
.teaser--featured-candidate .featured-candidate__details .teaser__social a.icon:hover, .teaser--featured-candidate .featured-candidate__details .teaser__social a.icon:active {
  color: var(--color-indivisible-blue);
  text-decoration: none;
}
.teaser--featured-candidate .featured-candidate__media {
  background-color: black;
  -webkit-box-flex: 1;
          flex: 1;
  max-width: 422px;
  position: relative;
}
.teaser--featured-candidate .featured-candidate__media .teaser__image {
  margin-right: 0;
  width: auto;
}
.teaser--featured-candidate .featured-candidate__media .teaser__image img {
  display: block;
  height: auto;
  width: 100%;
}
.teaser--featured-candidate .featured-candidate__media .teaser__image::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50.52%, rgba(0, 0, 0, 0)), to(#000000));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 50.52%, #000000 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.52%, #000000 100%);
  content: "";
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.teaser--featured-candidate .featured-candidate__media .featured-candidate__content {
  bottom: 0;
  color: white;
  padding: 30px;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.teaser--featured-candidate .featured-candidate__media .featured-candidate__content .featured-candidate__title {
  font-size: var(--font-size-heading);
  line-height: 36px;
}
.teaser--featured-candidate .featured-candidate__media .featured-candidate__content .featured-candidate__title a {
  color: white;
}
.teaser--featured-candidate .featured-candidate__media .featured-candidate__content .featured-candidate__district,
.teaser--featured-candidate .featured-candidate__media .featured-candidate__content .featured-candidate__office {
  font-weight: 700;
  line-height: 30px;
  margin: 0;
}

@media (max-width: 991px) {
  .teaser--featured-candidate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-flow: column;
    padding: 32px 0;
  }
  .teaser--featured-candidate .featured-candidate__details {
    margin-left: 0;
  }
  .teaser--featured-candidate .featured-candidate__details .teaser__description {
    margin-bottom: 32px;
  }
  .teaser--featured-candidate .featured-candidate__details .teaser__donate,
.teaser--featured-candidate .featured-candidate__details .teaser__website {
    margin: 0 0 32px 0;
  }
  .teaser--featured-candidate .featured-candidate__media {
    margin-bottom: 32px;
  }
}
.featured-news.stories-block {
  margin-top: 0;
  padding-bottom: 0;
}
.featured-news .featured-news-title {
  color: var(--color-indivisible-black);
}
.featured-news .teaser {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.featured-news .teaser .teaser__title {
  font-size: var(--font-size-heading-huge);
}
.featured-news .teaser:first-child {
  margin-top: 60px;
}
.featured-news .teaser:last-of-type {
  border-bottom: 1px solid var(--color-indivisible-blue);
  margin-bottom: 60px;
  padding-bottom: 60px;
}
@media (min-width: 1280px) {
  .featured-news .teaser {
    margin-bottom: 5rem;
  }
  .featured-news .teaser:not(:first-child) {
    margin-top: 5rem;
  }
  .featured-news .teaser .teaser__content {
    padding: 0;
  }
  .featured-news .teaser .teaser__image {
    margin-right: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .featured-news .teaser {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
  }
  .featured-news .teaser .teaser__content {
    padding-bottom: 48px;
    padding-top: 48px;
  }
}
@media (max-width: 991px) {
  .featured-news .teaser {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
    margin-bottom: 4rem;
  }
  .featured-news .teaser:not(:first-child) {
    margin-top: 4rem;
  }
  .featured-news .teaser .teaser__content {
    padding-bottom: 32px;
    padding-top: 32px;
  }
  .featured-news .teaser .teaser__image {
    margin-right: 0;
    width: auto;
  }
}
@media (max-width: 767px) {
  .featured-news .teaser {
    margin-bottom: 3rem;
  }
  .featured-news .teaser:not(:first-child) {
    margin-top: 3rem;
  }
  .featured-news .teaser .teaser__content {
    padding-bottom: 24px;
    padding-top: 24px;
  }
  .featured-news .teaser .teaser__image {
    margin-bottom: 0;
  }
}

.teaser--organization {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
  margin-top: 60px;
}
.teaser--organization .teaser__description {
  margin-bottom: 24px;
}
.teaser--organization .teaser__content {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .teaser--organization {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-flow: column;
    margin-bottom: 32px;
    margin-top: 48px;
  }
}

.our-campaigns .teaser {
  margin-bottom: 5rem;
}
.our-campaigns .teaser:not(:first-child) {
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .our-campaigns .teaser {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .our-campaigns .teaser {
    margin-bottom: 4rem;
  }
  .our-campaigns .teaser:not(:first-child) {
    margin-top: 4rem;
  }
  .our-campaigns .teaser .teaser__image {
    margin-right: 0;
    width: auto;
  }
}
@media (max-width: 767px) {
  .our-campaigns .teaser {
    margin-bottom: 3rem;
  }
  .our-campaigns .teaser:not(:first-child) {
    margin-top: 3rem;
  }
  .our-campaigns .teaser .teaser__content {
    padding-bottom: 24px;
    padding-top: 24px;
  }
  .our-campaigns .teaser .teaser__image {
    margin-bottom: 0;
  }
}

.teaser--taxonomy .teaser {
  border-bottom: 1px solid var(--color-indivisible-blue);
  margin: 0 !important;
}
.teaser--taxonomy .teaser .teaser__content-divider {
  border-bottom: none;
}
.teaser--taxonomy .teaser__image {
  display: none;
}
.teaser--taxonomy .teaser__image + .teaser__content {
  width: 100%;
}