@charset "UTF-8";

#xet-page {
  word-break: keep-all;
  font-size: 16px;
  color: #111;
}

/* default */
#xet-page * {
  box-sizing: border-box;
}

#xet-page p {
  margin: 0;
}

#xet-page a {
  text-decoration: none;
  color: inherit;
}

#xet-page img {
  max-width: 100%;
}

#xet-page .page__title-wrp {
  margin-bottom: 40px;
}

#xet-page .page__title-wrp .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
}

#xet-page .page__title-wrp .desc {
  margin-top: 20px;
}

/* Tab */
#xet-page .tab-wrp {
  position: relative;
}

#xet-page .tab-wrp ul.tab-menus {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, auto);
  gap: 10px;
}

#xet-page .tab-wrp ul.tab-menus li {
  border: 1px solid #d9e4e5;
}

#xet-page .tab-wrp ul.tab-menus li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-weight: 500;
  border: 1px solid transparent;
  border-bottom: 0;
}

#xet-page .tab-wrp ul.tab-menus li.is_on a {
  border-color: #0a1e3c;
  background-color: #c86258;
  color: #fff;
}

#xet-page .tab-wrp .tab-contents .content {
  display: none;
  padding: 20px 0;
  min-height: 200px;
}

#xet-page .tab-wrp .tab-contents .content div + figure {
  margin-top: 10px !important;
}

#xet-page .tab-wrp .tab-contents .content figure {
  display: block;
  margin: 0;
  text-align: center;
}

#xet-page .tab-wrp .tab-contents .content img {
  vertical-align: top;
}

#xet-page .tab-wrp .tab-contents .content.is_on {
  display: block;
}

/* dark mode */
body.color_scheme_dark #xet-page {
  color: #fff;
}

/* Responsive
-------------------------------------------------------------------------------------------------------- */
@media (min-width: 992px) {

  #xet-page .page__title-wrp .title {
    font-size: 36px;
  }

  #xet-page .tab-wrp ul.tab-menus {
    justify-content: space-between;
  }

  #xet-page .tab-wrp ul.tab-menus li {
    width: auto;
    flex: 1;
  }
}

@media (max-width: 991px) {
  #xet-page .tab-wrp ul.tab-menus {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
  }
}
