/**
 * Flowchart Block Styles
 *
 * Desktop: 3 panels side-by-side (Inputs | OMAHA | Outputs)
 * Mobile: stacked vertically with arrows between panels
 *
 * @package OMAHA_Data
 * @since 1.0.0
 */
.flowchart-block {
  padding-inline: var(--wp--style--root--padding-right);
}
.flowchart-block__grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
}
.flowchart-block__arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  padding-top: 1rem;
}
.flowchart-block__arrow-desktop {
  display: block;
}
.flowchart-block__arrow-mobile {
  display: none;
}
.flowchart-block__panel {
  flex: 1;
  background: var(--wp--preset--color--white);
  min-width: 0;
}
.flowchart-block__panel--center {
  background: var(--wp--preset--color--primary);
  flex: 1.1;
}
.flowchart-block__panel--center .flowchart-block__panel-header {
  border-bottom-color: var(--wp--preset--color--primary);
}
.flowchart-block__panel--center .flowchart-block__panel-title {
  color: var(--wp--preset--color--white);
  font-weight: 800;
}
.flowchart-block__panel--center .flowchart-block__category-title {
  color: var(--wp--preset--color--primary);
}
.flowchart-block__panel--center .flowchart-block__panel-body {
  background: var(--wp--preset--color--white);
  margin: 0 8px 8px;
}
.flowchart-block__panel--center .flowchart-block__divider {
  border-color: var(--wp--preset--color--primary);
}
.flowchart-block__panel-header {
  border-bottom: 6px solid var(--wp--preset--color--secondary);
}
.flowchart-block__panel-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 1.7px;
  padding: 0.75rem 1rem;
  margin: 0;
  color: var(--wp--preset--color--secondary);
}
.flowchart-block__panel-body {
  padding: 1rem 1.25rem 1.5rem;
}
.flowchart-block__divider {
  border: none;
  border-top: 1px solid var(--wp--preset--color--secondary);
  margin: 1rem 0;
}
.flowchart-block__category {
  min-height: 140px;
}
.flowchart-block__category-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wp--preset--color--secondary);
  margin: 0 0 0.75rem;
}
.flowchart-block__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 0.5rem;
}
.flowchart-block__item {
  flex: 1 1 0;
  max-width: 125px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}
.flowchart-block__item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flowchart-block__item-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.flowchart-block__item-label {
  font-size: 1rem;
  color: var(--wp--preset--color--secondary);
  line-height: 1.2;
}
@media (max-width: 1050px) and (min-width: 782px) {
  .flowchart-block__item-icon {
    width: 44px;
    height: 44px;
  }
  .flowchart-block__item-label {
    font-size: 0.875rem;
  }
}
@media (max-width: 781px) {
  .flowchart-block {
    padding-inline: 1rem;
  }
  .flowchart-block__grid {
    flex-direction: column;
    gap: 0;
  }
  .flowchart-block__arrow {
    width: auto;
    height: 50px;
  }
  .flowchart-block__arrow-desktop {
    display: none;
  }
  .flowchart-block__arrow-mobile {
    display: block;
  }
  .flowchart-block__panel {
    width: calc(100% - 22px);
    max-width: 550px;
    margin-inline: auto;
  }
  .flowchart-block__panel--center {
    width: 100%;
    box-sizing: border-box;
    padding-inline: 11px;
    padding-bottom: 13px;
  }
  .flowchart-block__panel--center .flowchart-block__panel-body {
    margin: 0;
  }
  .flowchart-block__panel-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
  }
  .flowchart-block__divider {
    display: none;
  }
  .flowchart-block__category {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 0.75rem 0.5rem 1.25rem;
    border-right: 1px solid var(--wp--preset--color--secondary);
  }
  .flowchart-block__category:last-of-type {
    border-right: none;
  }
  .flowchart-block__item {
    width: 100%;
    flex: 0 0 auto;
    min-height: 75px;
  }
  .flowchart-block__items {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 0.5rem;
  }
  .flowchart-block__item-icon {
    width: 48px;
    height: 48px;
  }
  .flowchart-block__item-label {
    font-size: 0.78rem;
  }
  .flowchart-block__category-title {
    font-size: 0.875rem;
  }
  .flowchart-block__panel-title {
    font-size: 2rem;
    letter-spacing: 1.6px;
  }
  .flowchart-block__panel-header {
    border-bottom-width: 3px;
  }
}
@media (max-width: 450px) {
  .flowchart-block__panel-title {
    font-size: 1.875rem;
  }
  .flowchart-block__category-title {
    font-size: 0.775rem;
    margin-bottom: 0.4rem;
  }
  .flowchart-block__item-label {
    font-size: 0.7rem;
  }
}

/*# sourceMappingURL=block-style.css.map */
