/**
 * @file
 * Photo 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.
 */
.photo-cards {
  margin: 6rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  gap: 3.4375rem 4.4%;
}
@media screen and (max-width: 73.0625rem) {
  .photo-cards {
    row-gap: 2.5rem;
    margin: 3rem 0;
  }
}
@media screen and (max-width: 47.9375rem) {
  .photo-cards {
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    row-gap: 1.875rem;
    margin: 2rem 0;
  }
}

.photo-card a {
  text-decoration: none;
}
.photo-card a .photo-card__container {
  transition: transform 0.2s;
}
.photo-card a:hover .photo-card__container {
  transform: scale(1.05);
}

.photo-card__container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.photo-card__content {
  background-color: #005028;
  padding: 2rem 10%;
  flex: 1 0 0;
  position: relative;
}
.photo-card__content svg {
  position: absolute;
  bottom: 1rem;
  right: 6%;
  width: 1.875rem;
  height: 1.875rem;
}
.photo-card__content svg path {
  fill: #ffffff;
}

.photo-card__title {
  color: #ffffff;
  margin-bottom: 1rem;
  hyphens: auto;
  font-size: 2.5rem;
}
@media screen and (max-width: 47.9375rem) {
  .photo-card__title {
    margin-bottom: 0.5rem;
  }
}

.photo-card__subheading {
  font-family: "Proxima-Nova", sans-serif;
  text-transform: uppercase;
  font-size: 1.4375rem;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 1.5rem;
}
@media screen and (max-width: 47.9375rem) {
  .photo-card__subheading {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

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

.photo-card__image img {
  width: 100%;
}

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