/*
Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value. By default, the base pixel value used to calculate the rem value is taken from the `$global-font-size` variable.
@access private
@param {Number} $value - Pixel value to convert.
@param {Number} $base [null] - Base for pixel conversion.
@returns {Number} A number in rems, calculated based on the given value and the base pixel value. rem values are passed through as is.
*/
/*
Removes the unit (e.g. px, em, rem) from a value, returning the number only.
@param {Number} $num - Number to strip unit from.
@returns {Number} The same number, sans unit.
*/
/*
Converts one or more pixel values into matching rem values.
@param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses.

@param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base.

@returns {List} A list of converted values.
*/
.block-featured-pods__pod {
  position: relative;
  margin-bottom: 1.25rem;
  display: block;
  overflow: hidden;
}

.block-featured-pods__pod:hover .block-featured-pods__pod-image {
  transform: scale(1.1);
}

@media only screen and (min-width: 1400px) {
  .block-featured-pods__pod {
    margin-bottom: 0;
  }
}

.block-featured-pods__pod-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: all 5s ease-out;
}

.block-featured-pods__pod-heading {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #1a242d;
}

@media only screen and (min-width: 1400px) {
  .block-featured-pods__pod-heading {
    font-size: 1.875rem;
  }
}

.block-featured-pods__pod-heading span {
  color: #06758c;
}

.block-featured-pods__pod-copy {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #626262;
  margin-top: 1.875rem;
}

@media only screen and (min-width: 1400px) {
  .block-featured-pods__pod-copy {
    font-size: 1.125rem;
  }
}

.block-featured-pods__pod-container {
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 1.875rem;
}

@media only screen and (min-width: 1400px) {
  .block-featured-pods__pod-container {
    padding: 3.75rem;
  }
}

.block-featured-pods .e-button {
  margin-top: 1.875rem;
}

/*# sourceMappingURL=block-featured-pods.css.map */
