/*
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.
*/
.project-single__back-btn {
  display: inline-block;
  font-size: 32px;
  font-size: 2rem;
  margin-bottom: 1.56em;
  text-decoration: none;
}

.project-single__back-btn:hover {
  text-decoration: underline;
}

@media (min-width: 992px) {
  .project-single__back-btn {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.project-single__film {
  margin: 3.125rem auto 0;
  max-width: 1670px;
  width: 100%;
}

.project-single__summary {
  padding: 3.75rem 0.9375rem;
}

@media (min-width: 576px) {
  .project-single__summary {
    padding: 7.5rem 0.9375rem;
  }
}

.project-single__quote + .project-single__summary {
  padding-top: 0;
}

.project-single__summary-section {
  margin-bottom: 55px;
}

.project-single__summary-title {
  margin-bottom: 0.7em;
}

.project-single__summary-title a, .project-single__summary-title a:hover, .project-single__summary-title a:focus, .project-single__summary-title a:active, .project-single__summary-title a:focus:active {
  color: #FFF;
  text-decoration: none;
}

.project-single__summary-list {
  font-size: 22px;
  font-size: 1.375rem;
  list-style: none;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.project-single__summary-list li + li {
  margin-top: 12px;
}

.project-single__related-container {
  padding: 4.6875rem 0 12.5rem;
}

.project-single__related-title {
  margin-bottom: 1.5em;
}

.project-single__related-gallery-container {
  padding: 0 35px;
}

@media (min-width: 1200px) {
  .project-single__related-gallery-container {
    padding: 0;
  }
}

.project-single__related-gallery .glide__arrow {
  width: 14px;
}

.project-single__related-gallery .glide__arrow--left {
  left: -25px;
}

.project-single__related-gallery .glide__arrow--right {
  right: -25px;
}

@media (min-width: 1200px) {
  .project-single__related-gallery .glide__arrows {
    display: none;
  }
}

.related-card {
  text-decoration: none;
}

.related-card:hover {
  text-decoration: underline;
}

.related-card__title {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 10px;
}

/*# sourceMappingURL=single-project.css.map */
