/* ====== Help Section Wrapper ====== */
.twa-help-section {
  text-align: center;
}

/* ====== Header ====== */
.twa-help-header {
  margin-bottom: 64px;
}

.twa-help-heading {
  font-size: calc(var(--wp--preset--font-size--medium) + 8px);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1;
}

.twa-help-description {
  color: #767676;
  max-width: 655px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Wrapper chung */
.twa-help-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Row odd = 4 items */
.twa-help-row.row-odd {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Row even = 3 items */
.twa-help-row.row-even {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Responsive */
@media (max-width: 991px) {
  .twa-help-row.row-odd,
  .twa-help-row.row-even {
    /* grid-template-columns: repeat(2, 1fr); */
    /* text-align: center; */
    /* justify-items: center; */
    /* justify-content: center; */
    /* place-content: center; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .twa-help-item{
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 767px) {
    .twa-help-header {
        margin-bottom: 32px;
    }
}

@media (max-width: 600px) {
  /* .twa-help-row.row-odd,
  .twa-help-row.row-even {
    grid-template-columns: 1fr;
  } */

  .twa-help-item{
    flex: 0 0 100%;
  }
}

/* ====== Item ====== */
.twa-help-item {
  background: #fff;
  padding: 24px;
  /* border-radius: 8px; */
  text-align: left;
  text-align: center;
}

.twa-help-item *:last-child {
    margin-bottom: 0;
}

/* ====== Icon ====== */
.twa-help-icon {
  margin-bottom: 15px;
}

.twa-help-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* ====== Title ====== */
.twa-help-title {
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 500;
  margin-bottom: 16px;
  color: #353535;
  line-height: 1.2;
}

/* ====== Text ====== */
.twa-help-text {
  font-size: calc(var(--wp--preset--font-size--normal) - 2px);
  color: #767676;
  line-height: 1.4285714285714285714285714285714;
  letter-spacing: 0;
}
