/* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.block-blog-tags {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.acf-block.bg-transparent + .block-blog-tags, .acf-block.bg-white + .block-blog-tags {
  margin-top: clamp(-4.5rem, -1.2857142857rem + -3.5714285714vw, -3rem);
  padding-top: 0;
}
.block-blog-tags__tags-title {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
}
.bg-navy .block-blog-tags__tags-title {
  color: #bdbfd1;
}
.block-blog-tags__tags {
  margin-bottom: 2rem;
}
@media (min-width: 48rem) {
  .block-blog-tags__tags {
    margin-bottom: auto;
  }
}
.block-blog-tags__tag {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin: 0rem 1rem 0.5rem 0rem;
  color: #0d0d0d;
  text-decoration: underline;
}
.block-blog-tags__tag:hover, .block-blog-tags__tag:focus {
  color: #4bc031;
  text-decoration: underline;
}
@media (min-width: 48rem) {
  .block-blog-tags__share-icons-col {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }
}
@media (min-width: 62rem) {
  .block-blog-tags__share-icons-col:first-child {
    margin-left: 8.3333333333%;
  }
}
@media (min-width: 75rem) {
  .block-blog-tags__share-icons-col:first-child {
    margin-left: 16.6666666667%;
  }
}
.block-blog-tags__share-icons-col:first-child .share-icons {
  margin-right: auto;
  margin-left: 0;
}