/**
 * @file
 * CTA Card styles.
 */
/**
 * @file
 * Dependencies.
 *
 * The necessary dependencies for compiling styles.
 * Nothing here should compile into CSS, helpers only.
 */
/**
 * @file
 * Color variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Typography declarations.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Functions.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/* Remove the unit of a length.
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 *
 * Reference: https://css-tricks.com/snippets/sass/strip-unit-function/
*/
/* Convert a value (raw number or pixel size) into rems. */
/**
 * @file
 * General variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Mixins.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * Breakpoint
 *
 * usage example:
 * @include breakpoint($feature: max-width, $value: 1509px) {
 *  display: none;
 * }
 */
/* Dynamic containment mixin. */
/**
 * @file
 * Z-Indices.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
.cta-cards {
  margin: 6rem 0;
}
@media screen and (max-width: 73.0625rem) {
  .cta-cards {
    margin: 3rem 0;
  }
}
@media screen and (max-width: 47.9375rem) {
  .cta-cards {
    margin: 2rem 0;
  }
}
.cta-cards.cta-cards--has-sidebar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 47.9375rem) {
  .cta-cards.cta-cards--has-sidebar {
    display: block;
  }
}

.cta-cards__container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.125rem, 1fr));
  gap: 2.5rem 4.4%;
}
@media screen and (max-width: 73.0625rem) {
  .cta-cards__container {
    row-gap: 1.875rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .cta-cards__container {
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  }
}
.cta-cards--has-sidebar .cta-cards__container {
  width: 65.3495440729%;
  grid-template-columns: repeat(auto-fill, minmax(17.25rem, 1fr));
}
@media screen and (max-width: 47.9375rem) {
  .cta-cards--has-sidebar .cta-cards__container {
    width: 100%;
  }
}

.cta-card {
  border: 0.375rem solid #003366;
  padding: 2rem 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-card .green-button {
  display: block;
  margin-top: auto;
}

.cta-card__title {
  margin-bottom: 1.25rem;
  hyphens: auto;
  font-size: 2.6rem;
}
@media screen and (max-width: 47.9375rem) {
  .cta-card__title {
    margin-bottom: 0.5rem;
  }
}

.cta-card__description {
  line-height: 1.5;
  color: #003366;
  padding-right: 2rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 47.9375rem) {
  .cta-card__description {
    font-size: 0.875rem;
  }
}
.cta-card__description a {
  color: #003366;
}

.cta-sidebar {
  width: 30.3951367781%;
}
@media screen and (max-width: 47.9375rem) {
  .cta-sidebar {
    width: 100%;
    border-top: 1px solid #D3D3D3;
    padding-top: 2rem;
    margin-top: 2.5rem;
  }
}

/*# sourceMappingURL=cta-cards.css.map*/