/**
 * @file
 * Link 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.
 */
.link-cards {
  margin: 5rem 0;
}
@media screen and (max-width: 73.0625rem) {
  .link-cards {
    margin: 3rem 0;
  }
}
@media screen and (max-width: 47.9375rem) {
  .link-cards {
    margin: 2rem 0;
  }
}

.link-cards__heading {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 73.0625rem) {
  .link-cards__heading {
    margin-bottom: 1.75rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .link-cards__heading {
    margin-bottom: 1.5rem;
  }
}

.link-card__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 73.0625rem) {
  .link-card__container {
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  }
}
.link-card__container.link-card__size--1, .link-card__container.link-card__size--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 73.0625rem) {
  .link-card__container.link-card__size--1, .link-card__container.link-card__size--2 {
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  }
}
.link-card__container.link-card__size--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 73.0625rem) {
  .link-card__container.link-card__size--3 {
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  }
}

.link-card {
  transition: transform 0.2s;
  background-color: #005028;
}
.link-card:hover {
  transform: scale(1.05);
}
.link-card a {
  text-decoration: none;
}

.link-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.link-card__content {
  background-color: #005028;
  padding: 1.5rem 10% 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.link-card__content svg {
  position: absolute;
  bottom: 1.75rem;
  right: 9%;
  width: 1.25rem;
  height: 1.25rem;
}
.link-card__content svg path {
  fill: #ffffff;
}

.link-card__title {
  font-family: "Proxima-Nova", sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
  hyphens: auto;
}
@media screen and (max-width: 47.9375rem) {
  .link-card__title {
    margin-bottom: 0.5rem;
  }
}

.link-card__button-text {
  color: #ffffff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  font-weight: 700;
  padding-right: 2rem;
  margin: auto 0 0;
}
@media screen and (max-width: 47.9375rem) {
  .link-card__button-text {
    font-size: 0.875rem;
  }
}

.link-card__image img {
  width: 100%;
  display: block;
  backface-visibility: hidden;
}

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