/* =========================================================
 * MUSK - KHỐI NỘI DUNG
 *
 * Element nằm trong Section / Row / Column có sẵn.
 * Không đặt container hoặc max-width tổng.
 *
 * Tiêu đề dùng hệ .musk-title chung, nút dùng hệ .musk-btn
 * chung trong style.css. Ở đây KHÔNG đặt lại màu, bo góc hay
 * cỡ chữ cho hai thứ đó - chỉ lo khoảng cách giữa các phần.
 *
 * Cỡ chữ nội dung do ux-builder/typography.css quyết định.
 * ========================================================= */

.musk-text-block {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  padding: 50px 0;
}

.musk-text-block,
.musk-text-block *,
.musk-text-block *::before,
.musk-text-block *::after {
  box-sizing: border-box;
}

.musk-text-block__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* =========================================================
 * NỘI DUNG
 * ========================================================= */

.musk-text-block__description {
  margin-top: 22px;
  color: #29394f;
  font-weight: 400;
}

/* Khoảng cách giữa hai đoạn. Đoạn đầu không có margin trên để
   nó cách tiêu đề đúng bằng margin-top của cả khối. */

.musk-text-block__description p {
  margin: 0;
}

.musk-text-block__description p + p {
  margin-top: 18px;
}

/* =========================================================
 * NÚT
 * ========================================================= */

.musk-text-block__action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}

/* =========================================================
 * CĂN LỀ
 *
 * .musk-title tự lo phần tiêu đề, ở đây lo phần nội dung và nút.
 * ========================================================= */

.musk-text-block--center .musk-text-block__description {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.musk-text-block--center .musk-text-block__action {
  justify-content: center;
}

/* =========================================================
 * MOBILE
 * ========================================================= */

@media (max-width: 767px) {
  .musk-text-block {
    padding: 40px 0;
  }

  .musk-text-block__description {
    margin-top: 16px;
  }

  .musk-text-block__description p + p {
    margin-top: 14px;
  }

  .musk-text-block__action {
    margin-top: 22px;
  }
}
