/**
 * @file
 * CSS fixes for padding issues.
 *
 * Fix for Feature content type nested section padding issue.
 * When sections with width-gutter are nested inside other width-gutter sections,
 * the margin gets applied twice. This removes margin from nested sections.
 */

/* Feature Content Type - Remove double gutter padding from nested sections */
.node-type-feature .content-item__body .section.width-gutter .section.width-gutter {
  margin-left: 0;
  margin-right: 0;
}
