  /* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
 * 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;
}
*/
@media (min-width: 62rem) {
  .block-primary-nav-column {
    grid-row: 1/2;
    padding: clamp(2rem, 0.8928571429rem + 1.7857142857vw, 2.5rem) 0;
  }
}
@media (max-width: 61.98rem) {
  .block-primary-nav-column > .wp-block-button.is-style-text {
    margin: 0;
  }
}
.block-primary-nav-column > .wp-block-button.is-style-text .wp-block-button__link {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.block-primary-nav-column > .wp-block-button.is-style-text .wp-block-button__link::after {
  font-size: 1rem;
}
.block-primary-nav-column > .wp-block-button.is-style-text .wp-block-button__link:hover {
  color: #707070;
}
.block-primary-nav-column > .wp-block-button.is-style-text:not(:last-of-type) .wp-block-button__link {
  margin-bottom: 1.5rem;
}
.block-primary-nav-column p {
  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);
  margin-bottom: var(--overline-margin-bottom);
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-bottom: 0.25rem;
  color: #707070;
}
.block-primary-nav-column p:last-child {
  margin-bottom: 0;
}
.block-primary-nav-column p::after {
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  content: "";
  width: 5rem;
  height: 0.25rem;
  background-color: #a2c3cf;
  clip-path: polygon(5% 0%, 100% 0, 95% 100%, 0% 100%);
}
.block-primary-nav-column p a {
  color: #707070;
  text-decoration: none;
}
.block-primary-nav-column p a:hover, .block-primary-nav-column p a:focus {
  text-decoration: none;
}