.floora-chemia-tech{
  --floora-chemia-tech-gap: 10px;
  --floora-chemia-tech-col-gap: 14px;
  --floora-chemia-tech-row-pad-y: 10px;
  --floora-chemia-tech-label-w: 45%;
  --floora-chemia-tech-value-w: 55%;
  --floora-chemia-tech-label-align: left;
  --floora-chemia-tech-value-align: right;
  --floora-chemia-tech-divider-color: rgba(0,0,0,.08);

  display: flex;
  flex-direction: column;
  gap: var(--floora-chemia-tech-gap);
}

.floora-chemia-tech__heading{
  font-weight: 700;
}

.floora-chemia-tech__row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--floora-chemia-tech-col-gap);
  padding: var(--floora-chemia-tech-row-pad-y) 0;
  border-bottom: 1px solid var(--floora-chemia-tech-divider-color);
}

.floora-chemia-tech__row.is-no-divider{
  border-bottom: none;
}

.floora-chemia-tech__row:last-child{
  border-bottom: none;
}

/* TABLE: 2 kolumny obok siebie */
.floora-chemia-tech[data-layout="table"] .floora-chemia-tech__row{
  flex-direction: row;
}

.floora-chemia-tech[data-layout="table"] .floora-chemia-tech__label{
  width: var(--floora-chemia-tech-label-w);
  flex: 0 0 var(--floora-chemia-tech-label-w);
  text-align: var(--floora-chemia-tech-label-align);
  font-weight: 600;
}

.floora-chemia-tech[data-layout="table"] .floora-chemia-tech__value{
  width: var(--floora-chemia-tech-value-w);
  flex: 0 0 var(--floora-chemia-tech-value-w);
  text-align: var(--floora-chemia-tech-value-align);
}

/* LIST: jeden pod drugim */
.floora-chemia-tech[data-layout="list"] .floora-chemia-tech__row{
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.floora-chemia-tech[data-layout="list"] .floora-chemia-tech__label,
.floora-chemia-tech[data-layout="list"] .floora-chemia-tech__value{
  width: 100%;
  flex: 0 0 auto;
}

.floora-chemia-tech[data-layout="list"] .floora-chemia-tech__label{
  text-align: var(--floora-chemia-tech-label-align);
  font-weight: 600;
}

.floora-chemia-tech[data-layout="list"] .floora-chemia-tech__value{
  text-align: var(--floora-chemia-tech-value-align);
}
