/*------------------------------------*\
  #SETTINGS
\*------------------------------------*/
/*------------------------------------*\
  #TYPOGRAPHY
\*------------------------------------*/
/* $font-size-yotta : 8.875rem !default;  // 142px */
/* $font-size-zetta : 7.375rem !default;  // 118px */
/* $font-size-exa   : 6.250rem !default;   // 100px */
/* $font-size-kilo  : 1.750rem !default; // 28px */
/* $font-size-hecto : 1.500rem !default; // 24px */
/* $font-size-base  : 1.000rem !default; // 16px Base font size */
/* $font-size-centi : 0.750rem !default; // 12px */
/* $font-size-micro : 0.625rem !default; // 10px */
/*------------------------------------*\
  #COLORS
\*------------------------------------*/
/* $color-grey-2: #E6E9ED !default; */
/*------------------------------------*\
  #SPACING-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #ELEMENT-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/**
 * Returns the value of the `$key` value of a provided `$map`.
 */
/**
 * Uses `getProperty()` to return a value from the `$colors` map.
 */
/**
 * Uses `getProperty()` to return a value from the `$breakpoints` map.
 */
/*------------------------------------*\
  #TYPOGRAPHY
\*------------------------------------*/
/*------------------------------------*\
  #COLORS
\*------------------------------------*/
/*------------------------------------*\
  #ELEMENT-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HEADER-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HORIZONTAL-SPACING
\*------------------------------------*/
/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
/*------------------------------------*\
  #TOOLS
\*------------------------------------*/
/**
 * Responsive Mixin
 * This mixin is designed for a _cleaner_ first approach
 * This means that css isn't overridden but rather replaced for
 * different viewport widths; making it easier to inspect/debug css
 *
 * Usage:
 * @include media-query(exclude-medium)    { ... }
 * @include media-query(medium-up-to-site) 	   { ... }
 * ... etc
 */
/**
 * [Adds styles to allow an element's height scale proportionatelly]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 */
/**
 * [Calculates the percentage aspect ratio (what % height is compared to the width)]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * *****REMEMBER TO USE MARGIN OR PADDING AND NOT TOP/BOTTOM******
 * [Calculates the center of an element in relation to a provided width and height.
 * Useful to place an absolute element at the center of another when
 * the positioned element cannot be the target's child ]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * [In the  awful case you can't use Flexbox to vertically align something]
 * @param  {[type]} $transform:       false         [Use transforms to align instead of the absolute trick]
 * @param  {[type]} $pos:             absolute      [position type]
 * @param  {[type]} $posAdj:          0             [position adjustment. If $transform is true, this value only affects the 'top' property.]
 * @param  {[type]} $alignHorizontal: false         [Includes horizontal alignment]
 */
/**
 * Generate Enumerated Class
 * Iterates from 0 to the specified length and generates classes that set the specified property
 * @param  {[String]} $classname:       required      [Required: Specify the class name]
 * @param  {[String]} $property:        $classname    [Optional: Specify the enumerated property (if it's different from the name of the class)]
 * @param  {[Number]} $length:          10            [Optional: Specify the end of the loop]
 * @param  {[String]} $units:           null          [Optional: specify units to append to the enumerated property]
 */
/**
* [Strip the pesky units from values]
* @param  {[Number]} $value
*/
/**
* [Fluid Type]
*/
/**
 * Set size for color swatch
 * @param {String} $size
 * @param {String} $inset
 */
.article-wrapper {
  margin-top: 1rem;
}

.article-section:not(:first-child) {
  margin-top: 1.25rem;
}

.article-section__title {
  margin-bottom: 0.75rem;
}

.article-section__item {
  margin-bottom: 0.35rem;
}

.article-section__link {
  font-size: 0.875rem;
}
.article-section__link:hover {
  text-decoration: underline;
}

.promotion-sidebar {
  display: none;
}
@media (min-width: 48rem) {
  .promotion-sidebar {
    display: block;
  }
}

.promotions-disclaimer,
.promotions-item {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 3.125rem;
}

.promotions-item__text {
  margin-bottom: 0.75rem;
}

.promotions-item__title {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.promotion-item__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.promotion-item__link {
  margin-right: 1.25rem;
}

.gift-title,
.gift-content,
.gift-form {
  margin-bottom: 2rem;
}

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