@charset "UTF-8";
/**
 * CONTENTS
 *
 * SETTINGS
 * Config...............Project-level configuration and feature switches.
 * Core.................inuitcss’ core and setup settings.
 * Global...............Project-wide variables and settings.
 *
 * TOOLS
 * Font-size............A mixin which guarantees baseline-friendly line-heights.
 * Clearfix.............Micro clearfix mixin.
 * Hidden...............Mixin for hiding elements.
 * Sass MQ..............inuitcss’ default media query manager.
 *
 * GENERIC
 * Box-sizing...........Better default `box-sizing`.
 * Normalize.css........A level playing field using @necolas’ Normalize.css.
 * Reset................A tiny reset to complement Normalize.css.
 * Shared...............Sensibly and tersely share some global commonalities
 *                      (particularly useful when managing vertical rhythm).
 *
 * ELEMENTS
 * Page.................Set up our document’s default `font-size` and
 *                      `line-height`.
 * Headings.............Very minimal (i.e. only font-size information) for
 *                      headings 1 through 6.
 * Images...............Base image styles.
 * Tables...............Simple table styles.
 *
 * OBJECTS
 * Wrapper..............Page constraint object.
 * Layout...............Generic layout module.
 * Media................Image- and text-like content side by side. The
 *                      poster-child of OOCSS.
 * Flag.................Table-layout-based advancement on the Media object.
 * List-bare............Lists with no bullets or indents.
 * List-inline..........A list whose items all site in a line.
 * Box..................Simple boxing abstraction.
 * Block................Image-on-top-of-text object.
 * Ratio................A container for maintaining aspect ratio of content.
 * Crop.................Provide a cropping context for media (images, etc.).
 * Table................Classes for manipulating `table`s.
 * Pack.................Pack items into available horizontal space.
 *
 * COMPONENTS
 * Buttons..............An example button component, and how it fits into the
 *                      inuitcss framework.
 *
 * UTILITIES
 * Clearfix.............Bind our clearfix onto a utility class.
 * Widths...............Simple width helper classes.
 * Headings.............Reassigning our heading styles to helper classes.
 * Spacings.............Nudge bits of the DOM around with these spacing
 *                      classes.
 * Responsive-Spacings..Enhances the function of normal spacings for
 *                      responsive usage.
 * Print................Reset-like styles taken from the HTML5 Boilerplate.
 * Hide.................Helper classes to hide content
 */
/* General
========================================================================== */
/* General
========================================================================== */
/* Fractions
========================================================================== */
/* Ratios
========================================================================== */
/* Breakpoints
========================================================================== */
/*==========================================================================
  #COLORS
  ========================================================================== */
/* Color Palette
========================================================================== */
/* Color Options
========================================================================== */
body.path-blog main,
body.path-newsletter main {
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body.path-blog main header,
body.path-newsletter main header {
  flex: 1 0 100%;
}
body.path-blog main article,
body.path-newsletter main article {
  flex: 0 0 280px;
  margin: 0.5rem;
  text-align: center;
}
body.path-blog main article > a,
body.path-newsletter main article > a {
  display: block;
  aspect-ratio: 4/3;
  object-fit: contain;
}
body.path-blog main article h1, body.path-blog main article h2, body.path-blog main article h3, body.path-blog main article h4, body.path-blog main article h5,
body.path-newsletter main article h1,
body.path-newsletter main article h2,
body.path-newsletter main article h3,
body.path-newsletter main article h4,
body.path-newsletter main article h5 {
  font-size: 1rem;
}
body.path-blog main .c-subscribe-bar,
body.path-newsletter main .c-subscribe-bar {
  flex: 1 0 100%;
}

.c-blog-content__hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.c-blog-content__bg {
  position: absolute;
  top: -20px;
  bottom: 20px;
  left: -20px;
  right: -20px;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.7;
  filter: blur(10px);
}
.c-blog-content__img {
  padding-top: 96px;
  padding-bottom: 96px;
  margin-bottom: 24px;
}
.c-blog-content__img img {
  border: 6px solid var(--primary-color);
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.c-blog-content__content {
  max-width: 720px;
  display: block;
  margin: auto;
  padding: 24px;
}

/*# sourceMappingURL=blog.css.map */
