.egg-table-section {
  background-color: rgb(var(--color-background));
  word-break: break-word;
}

.egg-table__heading {
  text-align: center;
  font-size: 45px;
  margin-bottom: 8px;
}

.egg-table__subheading {
  text-align: center;
  margin-bottom: 24px;
  opacity: 0.7;
}

.egg-table__content {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgb(var(--color-text), 0.12);
  border-left: 1px solid rgb(var(--color-text), 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.egg-table__row {
  display: grid;
  grid-template-columns: repeat(var(--columns-desktop, 4), minmax(0, 1fr));
}

.egg-table__row--header .egg-table__cell {
  background-color: rgb(var(--color-text), 0.04);
}

.egg-table__cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 120px;
  padding: 20px 16px;
  text-align: center;
  background-color: rgb(var(--color-background));
  border-right: 1px solid rgb(var(--color-text), 0.12);
  border-bottom: 1px solid rgb(var(--color-text), 0.12);
}

.egg-table__cell--highlight {
  background-color: rgb(var(--color-text), 0.06);
}

.egg-table__cell--has-image {
  min-height: 160px;
}

.egg-table__cell-image {
  width: 100%;
  max-width: 72px;
  margin: 0 auto;
}

.egg-table__cell-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}


.egg-table__cell-title {
  font-weight: 600;
}

.egg-table__cell-text {
  opacity: 0.8;
  font-size: 14px;
}

  .egg-table__subheading {
    font-size: 35px;
  }

  .egg-table__cell-title {
    font-size: 30px;
  }

  .egg-table__cell-text {
    font-size: 30px;
  }


@media (max-width: 959px) {
  .egg-table__row {
    grid-template-columns: repeat(var(--columns-mobile, 2), minmax(0, 1fr));
  }

  .egg-table__cell {
    min-height: 100px;
    padding: 16px 12px;
  }

  .egg-table__cell--has-image {
    min-height: 140px;
  }

  .egg-table__cell-image {
    max-width: 56px;
  }
    .egg-table__subheading {
    font-size: 18px;
  }

  .egg-table__cell-title {
    font-size: 18px;
  }

  .egg-table__cell-text {
    font-size: 16px;
  }

  .egg-table__heading {
  font-size: 25px;
}
}