:root {
  --news-shadow: 0 10px 35px rgba(20, 53, 112, .08)
}

.subpage-main {
  background: #fff
}

.subpage-heading {
  padding: 24px 0 34px;
  background: linear-gradient(135deg, #f2f6ff, #fbfdff);
  border-bottom: 1px solid var(--line)
}

.subpage-heading-compact {
  padding: 20px 0
}

.page-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.page-title-row .eyebrow {
  color: var(--blue2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase
}

.page-title-row h1 {
  font-size: clamp(25px, 3vw, 42px);
  margin: 8px 0 10px;
  color: var(--blue);
  font-weight: 800
}

.page-title-row p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7
}

.page-title-icon {
  font-size: 90px;
  color: #dbe7fb;
  margin-right: 5%
}

.list-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--news-shadow);
  margin-bottom: 34px
}

.list-featured-image {
  position: relative;
  min-height: 360px;
  overflow: hidden
}

.list-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.list-featured:hover img {
  transform: scale(1.035)
}

.news-category {
  display: inline-flex;
  width: max-content;
  padding: 6px 10px;
  border-radius: 5px;
  background: var(--blue2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase
}

.list-featured-image .news-category {
  position: absolute;
  left: 18px;
  top: 18px
}

.list-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px
}

.list-featured-body h2 {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  margin: 14px 0
}

.list-featured-body p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #7b859b;
  font-size: 12px;
}

.read-more {
  color: var(--blue2);
  font-weight: 700
}

.read-more i {
  transition: .2s
}

.read-more:hover i {
  margin-left: 5px
}

.news-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--blue);
  margin-bottom: 8px
}

.news-filter-bar h2 {
  font-size: 20px;
  color: var(--blue);
  font-weight: 800;
  margin: 0 0 4px;
  text-transform: uppercase
}

.news-filter-bar span {
  font-size: 11px;
  color: var(--muted)
}

.filter-actions {
  display: flex;
  gap: 7px
}

.filter-actions select {
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 32px 0 12px;
  color: #4a5670;
  background: #fff
}

.filter-actions button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: #6f7a90
}

.filter-actions button.active {
  background: var(--blue);
  color: #fff
}

.news-row {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line)
}

.news-row-image {
  height: 165px;
  border-radius: 10px;
  overflow: hidden
}

.news-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.news-row:hover img {
  transform: scale(1.05)
}

.news-row-body h3 {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
  margin: 9px 0
}

.news-row-body h3 a:hover {
  color: var(--blue2)
}

.news-row-body p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  margin: 10px 0 0
}

.category-green {
  background: #0a9f73
}

.category-purple {
  background: #7446c8
}

.category-orange {
  background: #f18700
}

.category-blue {
  background: #087abf
}

.news-sidebar {
  top: 20px;
  display: grid;
  gap: 20px
}

.sidebar-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(20, 53, 112, .05)
}

.sidebar-card>h2 {
  font-size: 16px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
  position: relative
}

.sidebar-card>h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 52px;
  height: 2px;
  background: var(--blue2)
}

.sidebar-search {
  height: 46px;
  display: flex;
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  overflow: hidden
}

.sidebar-search input {
  border: 0;
  outline: 0;
  min-width: 0;
  flex: 1;
  padding: 0 13px;
  font-size: 12px
}

.sidebar-search button {
  width: 48px;
  border: 0;
  background: var(--blue);
  color: #fff
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.category-list li+li {
  border-top: 1px dashed var(--line)
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  color: #49546b;
  transition: .2s;
}

.category-list a:hover {
  color: var(--blue2);
  padding-left: 4px
}

.category-list span {
  display: flex;
  align-items: center;
  gap: 9px
}

.category-list b {
  width: 28px;
  height: 24px;
  border-radius: 12px;
  background: #edf3ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 10px
}

.sidebar-news {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 12px 0
}

.sidebar-news+.sidebar-news {
  border-top: 1px dashed var(--line)
}

.sidebar-news>span {
  font-size: 25px;
  color: #cbd7ec;
  font-weight: 800
}

.sidebar-news h3 {
  font-size: 12px;
  line-height: 1.55;
  margin: 0 0 5px;
  font-weight: 600
}

.sidebar-news small,
.sidebar-thumb small {
  color: #8993a7;
  font-size: 12px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.tag-cloud a {
  padding: 7px 10px;
  border-radius: 17px;
  background: #f3f6fb;
  color: #59657b;
  font-size: 10px
}

.tag-cloud a:hover {
  background: var(--blue);
  color: #fff
}

.article-detail {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(22px, 4vw, 48px);
  box-shadow: var(--news-shadow)
}

.article-detail>h1 {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.45;
  color: #152242;
  font-weight: 800;
  margin: 14px 0 20px
}

.article-head-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line)
}

.font-tools {
  display: flex;
  gap: 5px
}

.font-tools button {
  height: 34px;
  min-width: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #556178;
  font-size: 11px
}

.article-lead {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  color: #34405a;
  margin: 26px 0
}

.article-hero {
  margin: 0 0 26px
}

.article-hero img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 10px
}

.article-detail figcaption {
  text-align: center;
  color: #7f899c;
  font-size: 10px;
  font-style: italic;
  margin-top: 8px
}

.article-body {
  font-size: 15px;
  line-height: 1.9;
  color: #303b52
}

.article-body p {
  margin-bottom: 20px
}

.article-body h2 {
  font-size: 22px;
  color: var(--blue);
  font-weight: 750;
  margin: 30px 0 15px
}

.article-body blockquote {
  position: relative;
  margin: 28px 0;
  padding: 24px 28px 24px 68px;
  background: #f2f6ff;
  border-left: 4px solid var(--blue2);
  border-radius: 0 9px 9px 0
}

.article-body blockquote>i {
  position: absolute;
  left: 23px;
  top: 19px;
  font-size: 31px;
  color: #9bb9ee
}

.article-body blockquote p {
  margin: 0;
  font-weight: 600;
  color: #34466a
}

.article-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0
}

.article-image-grid figure {
  margin: 0
}

.article-image-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px
}

.article-source {
  text-align: right;
  font-size: 11px;
  color: #6e798e;
  font-style: italic;
  margin-top: 26px
}

.article-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line)
}

.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 12px;
}

.article-tags a {
  padding: 6px 9px;
  border-radius: 15px;
  background: #f2f5fa;
  color: #526078
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}

.share-buttons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff
}

.facebook {
  background: #1877f2
}

.zalo {
  background: #0068ff;
  font-weight: 800
}

.copy-link {
  background: #687389
}

.related-news {
  margin-top: 35px
}

.related-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  background: #fff
}

.related-card img {
  width: 100%;
  height: 145px;
  object-fit: cover
}

.related-card>div {
  padding: 13px
}

.related-card small {
  font-size: 12px;
  color: #8a94a8
}

.related-card h3 {
  font-size: 14px;
  line-height: 1.55;
  margin: 6px 0 0;
  font-weight: 650
}

.sidebar-thumb {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 12px 0
}

.sidebar-thumb+.sidebar-thumb {
  border-top: 1px dashed var(--line)
}

.sidebar-thumb img {
  width: 92px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px
}

.sidebar-thumb h3 {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 6px;
  font-weight: 600
}

.subscribe-card {
  padding: 28px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #0848b6, #032c7f)
}

.subscribe-card>i {
  font-size: 42px
}

.subscribe-card h2 {
  font-size: 18px;
  font-weight: 750;
  margin: 12px 0 7px
}

.subscribe-card p {
  font-size: 11px;
  color: #dfe9fb
}

.subscribe-card form {
  display: flex;
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  height: 43px
}

.subscribe-card input {
  border: 0;
  outline: 0;
  min-width: 0;
  flex: 1;
  padding: 0 11px;
  font-size: 11px
}

.subscribe-card button {
  border: 0;
  background: #ffb000;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 0 12px
}

@media(max-width:1199px) {
  .news-sidebar {
    margin-top: 10px
  }
  .list-featured {
    grid-template-columns: 1fr 1fr
  }
  .news-page .sticky-xl-top {
    position: static !important
  }
}

.news-list-page.grid-view {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px
}

.news-list-page.grid-view .news-row {
  display: block;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden
}

.news-list-page.grid-view .news-row-image {
  display: block;
  height: 190px;
  border-radius: 0
}

.news-list-page.grid-view .news-row-body {
  padding: 16px
}

.news-list-page.grid-view .news-row-body p {
  display: none
}

@media(max-width:767px) {
  .subpage-heading {
    padding: 16px 0 24px
  }
  .page-title-icon {
    display: none
  }
  .page-title-row h1 {
    font-size: 23px
  }
  .page-title-row p {
    font-size: 12px
  }
  .news-page.section,
  .article-page.section {
    padding-top: 20px
  }
  .list-featured {
    display: block;
    border-radius: 10px;
    margin-bottom: 25px
  }
  .list-featured-image {
    display: block;
    min-height: 230px;
    height: 230px
  }
  .list-featured-body {
    padding: 18px
  }
  .list-featured-body h2 {
    font-size: 17px
  }
  .list-featured-body p {
    font-size: 12px
  }
  .news-filter-bar {
    align-items: flex-end
  }
  .news-filter-bar h2 {
    font-size: 16px
  }
  .filter-actions select {
    max-width: 155px;
    font-size: 10px
  }
  .filter-actions button {
    display: none
  }
  .news-row {
    grid-template-columns: 112px 1fr;
    gap: 12px;
    padding: 15px 0
  }
  .news-row-image {
    height: 92px
  }
  .news-row-body h3 {
    font-size: 13px;
    line-height: 1.5;
    margin: 7px 0
  }
  .news-row-body p {
    display: none
  }
  .news-row-body .article-meta span:nth-child(2) {
    display: none
  }
  .news-row-body .news-category {
    font-size: 8px;
    padding: 4px 7px
  }
  .news-list-page.grid-view {
    display: block;
    margin-top: 0
  }
  .sidebar-card {
    padding: 17px
  }
  .article-detail {
    padding: 18px;
    border-radius: 10px
  }
  .article-detail>h1 {
    font-size: 23px
  }
  .article-head-meta {
    align-items: flex-start;
    gap: 12px
  }
  .font-tools {
    display: none
  }
  .article-lead {
    font-size: 14px
  }
  .article-hero img {
    height: 250px
  }
  .article-body {
    font-size: 14px;
    line-height: 1.8
  }
  .article-body h2 {
    font-size: 18px
  }
  .article-body blockquote {
    padding: 18px 18px 18px 48px
  }
  .article-body blockquote>i {
    left: 15px;
    font-size: 24px
  }
  .article-image-grid {
    grid-template-columns: 1fr
  }
  .article-image-grid img {
    height: 220px
  }
  .article-bottom {
    align-items: flex-start;
    flex-direction: column
  }
  .related-card {
    display: grid;
    grid-template-columns: 115px 1fr
  }
  .related-card img {
    height: 100%;
    min-height: 105px
  }
  .related-news .col-md-4+.col-md-4 {
    margin-top: 0
  }
}

@media print {
  header,
  .smart-search,
  .footer,
  .backtop,
  .video-modal,
  .news-sidebar,
  .related-news,
  .article-bottom,
  .font-tools {
    display: none !important
  }
  .subpage-heading {
    padding: 0;
    background: #fff
  }
  .article-detail {
    border: 0;
    box-shadow: none;
    padding: 0
  }
  .article-page {
    padding: 0
  }
  .article-detail>h1 {
    font-size: 28px
  }
}
