/* breakpoints */
/* We make the default width of page items the $max-width
   If you want to stretch the content beyond $max you can use the block width
   attribute .alignwide and .alignfull.
   See _default-blocks-overwrite--columns.scss.
*/
/* Breakpoint for the navigation */
/* Grid */
/* Font declaration */
/* Colors */
.has-black-background-color {
  background-color: #004156;
}

.has-black-color {
  color: #004156;
}

.has-white-background-color {
  background-color: white;
}

.has-white-color {
  color: white;
}

.has-mischka-background-color {
  background-color: #dd9d73;
}

.has-mischka-color {
  color: #dd9d73;
}

.has-valencia-background-color {
  background-color: #e3691a;
}

.has-valencia-color {
  color: #e3691a;
}

.has-tradewind-background-color {
  background-color: #dbeef4;
}

.has-tradewind-color {
  color: #dbeef4;
}

.has-curious-background-color {
  background-color: #e0bda1;
}

.has-curious-color {
  color: #e0bda1;
}

.has-pearlbush-background-color {
  background-color: #445159;
}

.has-pearlbush-color {
  color: #445159;
}

.has-gumbo-background-color {
  background-color: #7fa0aa;
}

.has-gumbo-color {
  color: #7fa0aa;
}

.has-loblolly-background-color {
  background-color: #f5ebe4;
}

.has-loblolly-color {
  color: #f5ebe4;
}

@media (max-width: 1023px) {
  .block-list-features {
    padding: 0 3.5rem;
  }
}
.block-list-features .block-list-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
}
.block-list-features .block-features__item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.block-list-features .block-features__item-title {
  order: 2;
  font-size: 1rem;
  font-weight: 400;
  width: 100%;
  text-align: center;
}
.block-list-features .block-features__item-image {
  order: 1;
  width: 100%;
  height: auto;
}
.block-list-features .block-features__item-tooltip {
  opacity: 0;
  position: absolute;
  width: calc(100% + 6rem);
  left: -3rem;
  top: 50%;
  transform: translateY(0.5rem);
  justify-content: center;
  align-items: center;
  background-color: var(--wp--preset--color--citrine);
  color: var(--wp--preset--color--marine);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 4px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
  transition: opacity 0.25s, transform 0.5s, box-shadow 0.5s;
}
.block-list-features .block-features__item:hover .block-features__item-tooltip {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
} /*# sourceMappingURL=list-features.css.map */
