
/*!***********************************************!*\
  !*** ../src/elements/partials/grid/grid.scss ***!
  \***********************************************/
/*******************************
 * Buttons
 ******************************/
/*
 * Applies the complete set of button styles with all desired style variations.
 * This mixin is normally applied to form buttons or links with
 * the desired button classes eg. .button.style-xxx.
 */
/*
 * Contains styles that all of the buttons have in common.
 * Some button styles might opt out or override some of these styles.
 * One benefit of this approach is that all of the buttons will be consistently
 * configurable with the CSS variables defined below.
 */
/*******************************
 * Button Styles
 *
 * Styles should define the way the buttons look. Depending on the project,
 * you may need to optimize each style based on the section / element that
 * a button is used in. For that purpose you can use the predefined CSS
 * variables to easily overwrite the desired colors based on your need.
 ******************************/
/*******************************
 * Inputs
 ******************************/
.grid-section {
  container: grid-section/inline-size;
  margin-block: var(--element-spacing-lg);
}
.grid-section .container {
  display: flex;
  flex-direction: column;
  gap: /* grow(32, 64) */ clamp(2rem, 1.4545454545rem + 2.4242424242vw, 4rem);
}
.grid-section :is(.prolog, .epilog) > :first-child, .grid-section :is(.prolog, .epilog) > link:first-child + * {
  margin-top: 0;
}
.grid-section :is(.prolog, .epilog) > :last-child {
  margin-bottom: 0;
}
.grid-section :is(.prolog, .epilog) > :is(.large-text, .lead-text):first-child > :first-child {
  margin-top: 0;
}
.grid-section :is(.prolog, .epilog) > :is(.large-text, .lead-text):last-child > :last-child {
  margin-bottom: 0;
}
.grid-section .grid-layout {
  --grid-layout-columns: var(--grid-section-columns, 1);
}
.grid-section .grid-layout > * {
  --col-xs: 1;
}

/*# sourceMappingURL=css-shared-template--grid.css.map*/