@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800;900&display=swap');

.news-v2-hero,
.news-v2-section {
  box-sizing: border-box;
  font-family: 'Mulish', Arial, Helvetica, sans-serif;
}

.news-v2-hero *,
.news-v2-section * {
  box-sizing: border-box;
}

.news-v2-hero :not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not([class^="fa-"]):not([class*=" fa-"]):not([class^="icon-"]):not([class*=" icon-"]),
.news-v2-section :not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not([class^="fa-"]):not([class*=" fa-"]):not([class^="icon-"]):not([class*=" icon-"]) {
  font-family: 'Mulish', Arial, Helvetica, sans-serif;
}

.news-v2-hero a,
.news-v2-section a {
  color: inherit;
  text-decoration: none;
}

.news-v2-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 34px;
  color: var(--ink);
}

.news-v2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(0,180,92,.12), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(16,24,39,.08), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #eef8f3 52%, #f9fbff 100%);
}

.news-v2-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.news-v2-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.news-v2-breadcrumb a:hover {
  color: var(--brand-dark);
}

.news-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  padding: 8px 16px;
  border: 1px solid rgba(0,180,92,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 4px 14px rgba(15,23,42,.08);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.news-v2-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.065em;
}

.news-v2-title em {
  color: var(--brand);
  font-style: normal;
}

.news-v2-subtitle {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.6;
}

.news-v2-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  margin-top: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.news-v2-tabs::-webkit-scrollbar {
  display: none;
}

.news-v2-tab {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f7f9fc;
  color: #111827 !important;
  font-size: 13px;
  font-weight: 850;
  transition: background .16s, color .16s, transform .18s var(--ease);
}

.news-v2-tab:hover {
  transform: translateY(-1px);
}

.news-v2-tab--active {
  color: #fff !important;
  background: linear-gradient(135deg, #131d2e, #0b3324);
}

.news-v2-tab--active:hover,
.news-v2-tab--active:focus {
  color: #fff !important;
}

.news-v2-section {
  padding: 34px 0 60px;
  background: #f7f9fc;
  color: var(--ink);
}

.news-v2-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.news-v2-main,
.news-v2-sidebar {
  min-width: 0;
}

.news-v2-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-v2-featured-wrap {
  margin-bottom: 20px;
}

.news-v2-featured,
.news-v2-card,
.news-v2-side-card {
  display: block;
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15,23,42,.08);
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}

.news-v2-featured:hover,
.news-v2-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,180,92,.22);
  box-shadow: 0 12px 36px rgba(15,23,42,.1);
}

.news-v2-featured__grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
}

.news-v2-featured__media,
.news-v2-card__media {
  position: relative;
  overflow: hidden;
  background: #f7f9fc;
}

.news-v2-featured__media {
  min-height: 260px;
}

.news-v2-featured__media img,
.news-v2-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}

.news-v2-featured:hover img,
.news-v2-card:hover img {
  transform: scale(1.06);
}

.news-v2-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.news-v2-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted-2, #94a3b8);
  font-size: 12px;
  font-weight: 800;
}

.news-v2-meta__cat {
  color: var(--brand-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.news-v2-featured__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.035em;
  transition: color .16s;
}

.news-v2-featured:hover .news-v2-featured__title,
.news-v2-card:hover .news-v2-card__title,
.news-v2-hot:hover p {
  color: var(--brand-dark);
}

.news-v2-featured__desc,
.news-v2-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.65;
}

.news-v2-featured__desc {
  -webkit-line-clamp: 3;
}

.news-v2-search {
  margin-bottom: 22px;
}

.news-v2-search__field {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  box-shadow: 0 1px 4px rgba(15,23,42,.07);
}

.news-v2-search__field:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,180,92,.22);
}

.news-v2-search__field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.news-v2-search__field a {
  color: var(--muted);
  font-size: 20px;
  font-weight: 800;
}

.news-v2-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.news-v2-section__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.055em;
}

.news-v2-section__head h2 span {
  color: var(--brand);
}

.news-v2-section__head small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

.news-v2-section__head select {
  min-height: 40px;
  padding: 0 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.news-v2-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-v2-card {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  border-radius: 18px;
}

.news-v2-card__media {
  min-height: 132px;
}

.news-v2-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.news-v2-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 4px 10px;
  border-radius: 999px;
  color: #4b5563;
  background: #f1f5f9;
  font-size: 11px;
  font-weight: 900;
}

.news-v2-badge--featured {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  color: #fff;
  background: var(--brand);
}

.news-cat--project { color: #1d4ed8; background: #dbeafe; }
.news-cat--market { color: #b45309; background: #fef3c7; }
.news-cat--planning { color: #7c3aed; background: #ede9fe; }
.news-cat--policy { color: #be123c; background: #ffe4e6; }
.news-cat--invest { color: #047857; background: #d1fae5; }
.news-cat--legal { color: #c2410c; background: #ffedd5; }
.news-cat--default { color: #475569; background: #f1f5f9; }

.news-v2-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0 0 6px;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.02em;
  transition: color .16s;
}

.news-v2-card__desc {
  -webkit-line-clamp: 2;
  font-size: 12.5px;
}

.news-v2-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0f4f8;
  color: var(--muted-2, #94a3b8);
  font-size: 12px;
  font-weight: 800;
}

.news-v2-cta {
  flex: 0 0 auto;
  color: var(--brand-dark);
  font-weight: 900;
}

.news-v2-pagination {
  display: flex;
  justify-content: center;
  margin: 28px 0 4px;
}

.news-v2-pagination ul {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.news-v2-page-link,
.news-v2-pagination li span {
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.news-v2-pagination li.active a,
.news-v2-pagination li.active span {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.news-v2-page-link.is-disabled {
  color: #94a3b8;
  background: #f7f9fc;
}

.news-v2-side-card {
  padding: 20px;
}

.news-v2-side-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.news-v2-side-title > span {
  width: 5px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand);
}

.news-v2-side-title h3,
.news-v2-app-title,
.news-v2-promo h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.news-v2-hot-list,
.news-v2-cats,
.news-v2-store-list {
  display: flex;
  flex-direction: column;
}

.news-v2-hot {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.news-v2-hot--border {
  border-bottom: 1px solid #f0f4f8;
}

.news-v2-hot__rank {
  width: 24px;
  flex: 0 0 auto;
  color: #cbd5e1;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.news-v2-hot__rank.is-first {
  color: var(--brand);
}

.news-v2-hot__rank.is-second {
  color: #f5b731;
}

.news-v2-hot p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 850;
  line-height: 1.45;
  transition: color .16s;
}

.news-v2-hot small {
  display: block;
  margin-top: 4px;
  color: var(--muted-2, #94a3b8);
  font-size: 10.5px;
  font-weight: 750;
}

.news-v2-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: #344054;
  font-size: 13.5px;
  font-weight: 800;
  transition: color .16s;
}

.news-v2-cat-link--border {
  border-bottom: 1px solid #f0f4f8;
}

.news-v2-cat-link span {
  transition: transform .18s var(--ease);
}

.news-v2-cat-link:hover {
  color: var(--brand-dark);
}

.news-v2-cat-link:hover span {
  transform: translateX(4px);
}

.news-v2-cat-link b {
  flex: 0 0 auto;
  min-width: 28px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.news-v2-promo {
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 0, rgba(255,255,255,.28), transparent 32%),
    linear-gradient(135deg, #00352e, #00b45c);
  box-shadow: 0 12px 36px rgba(15,23,42,.1);
}

.news-v2-promo > div {
  font-size: 26px;
  line-height: 1;
}

/* Icon + title cùng 1 hàng */
.news-v2-promo__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.news-v2-promo h3 {
  color: #fff;
  margin: 0;
}

.news-v2-promo p {
  margin: 8px 0 16px;
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.55;
}

.news-v2-promo a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.news-v2-app-desc {
  margin: 5px 0 12px;
  color: var(--muted-2, #94a3b8);
  font-size: 12px;
  font-weight: 750;
}

.news-v2-store-list {
  gap: 8px;
}

.news-v2-store {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: #344054;
  transition: border-color .16s, transform .18s var(--ease);
}

.news-v2-store:hover {
  transform: translateY(-1px);
  border-color: rgba(0,180,92,.28);
}

.news-v2-store i {
  width: 22px;
  color: var(--brand);
  font-size: 20px;
  text-align: center;
}

.news-v2-store .fa-apple {
  color: var(--ink);
}

.news-v2-store span {
  display: block;
  color: var(--muted-2, #94a3b8);
  font-size: 10.5px;
  font-weight: 750;
}

.news-v2-store strong {
  display: block;
  margin-top: 1px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.news-v2-empty {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
  color: var(--muted);
  font-family: 'Mulish', Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-align: center;
}

.news-detail-breadcrumb-wrap,
.news-detail-breadcrumb-wrap *,
.news-detail-layout,
.news-detail-layout * {
  box-sizing: border-box;
}

.news-detail-breadcrumb-wrap,
.news-detail-layout {
  font-family: 'Mulish', Arial, Helvetica, sans-serif;
}

.news-detail-breadcrumb-wrap :not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not([class^="fa-"]):not([class*=" fa-"]):not([class^="icon-"]):not([class*=" icon-"]),
.news-detail-layout :not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not([class^="fa-"]):not([class*=" fa-"]):not([class^="icon-"]):not([class*=" icon-"]) {
  font-family: 'Mulish', Arial, Helvetica, sans-serif;
}

.news-detail-breadcrumb-wrap a,
.news-detail-layout a {
  color: inherit;
  text-decoration: none;
}

.news-detail-breadcrumb-wrap {
  border-bottom: 1px solid var(--line);
  background: #f7f9fc;
}

.news-detail-breadcrumb {
  min-height: 42px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted-2, #94a3b8);
  font-size: 12px;
  font-weight: 800;
}

.news-detail-breadcrumb a:hover {
  color: var(--brand-dark);
}

.news-detail-breadcrumb span:last-child {
  max-width: 360px;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 60px;
}

.news-detail-article {
  width: min(760px, 100%);
  min-width: 0;
}

.news-detail-head {
  margin-bottom: 24px;
}

.news-detail-head h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.045em;
}

.news-detail-desc {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.7;
}

.news-detail-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #f0f4f8;
  border-bottom: 1px solid #f0f4f8;
}

.news-detail-author,
.news-detail-meta-item,
.news-detail-meta-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-detail-author__avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.news-detail-author__name {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.news-detail-author__source,
.news-detail-meta-item {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.news-detail-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}

.news-detail-meta-actions {
  margin-left: auto;
}

.news-detail-meta-actions button,
.news-detail-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  transition: border-color .16s, color .16s, opacity .16s;
}

.news-detail-meta-actions button:hover,
.news-detail-share__btn--copy:hover {
  border-color: rgba(0,180,92,.3);
  color: var(--brand-dark);
}

.news-detail-figure {
  margin: 0 0 32px;
}

.news-detail-figure img {
  width: 100%;
  max-height: 440px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(15,23,42,.1);
}

.news-detail-layout .article-body {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.85;
}

.news-detail-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-detail-share > span {
  color: #344054;
  font-size: 14px;
  font-weight: 900;
}

.news-detail-share__btn--facebook,
.news-detail-share__btn--zalo {
  border-color: transparent;
  color: #fff;
}

.news-detail-share__btn--facebook {
  background: #1877f2;
}

.news-detail-share__btn--zalo {
  background: #0068ff;
}

.news-detail-share__btn:hover {
  opacity: .9;
}

.news-detail-share > a {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.news-detail-share > a:hover {
  color: var(--brand-dark);
}

.news-detail-related {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.news-detail-related h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.news-detail-related h2 span {
  width: 5px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand);
}

.news-detail-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.news-detail-related-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}

.news-detail-related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,180,92,.22);
  box-shadow: 0 8px 24px rgba(15,23,42,.08);
}

.news-detail-related-card img {
  width: 112px;
  height: 100%;
  min-height: 86px;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.news-detail-related-card:hover img {
  transform: scale(1.06);
}

.news-detail-related-card > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
}

.news-detail-related-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 850;
  line-height: 1.4;
}

.news-detail-related-card:hover p {
  color: var(--brand-dark);
}

.news-detail-related-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted-2, #94a3b8);
  font-size: 10.5px;
  font-weight: 750;
}

.news-detail-sidebar {
  position: sticky;
  top: 86px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-detail-newsletter {
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 0, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(135deg, #101827, #263244);
  box-shadow: 0 12px 36px rgba(15,23,42,.1);
}

.news-detail-newsletter > div {
  margin-bottom: 8px;
  font-size: 28px;
}

.news-detail-newsletter h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.news-detail-newsletter p {
  margin: 8px 0 16px;
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.55;
}

.news-detail-newsletter input {
  width: 100%;
  min-height: 40px;
  margin-bottom: 8px;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  outline: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.news-detail-newsletter button {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .news-v2-layout {
    grid-template-columns: 1fr;
  }

  .news-v2-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-article {
    width: 100%;
  }

  .news-detail-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .news-v2-hero {
    padding: 30px 0 26px;
  }

  .news-v2-hero__inner {
    align-items: flex-start;
    text-align: left;
  }

  .news-v2-title {
    font-size: 36px;
  }

  .news-v2-tabs {
    justify-content: flex-start;
    width: 100%;
  }

  .news-v2-featured__grid {
    grid-template-columns: 1fr;
  }

  .news-v2-featured__media {
    min-height: 220px;
  }

  .news-v2-section__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-v2-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .news-v2-card__media {
    min-height: 124px;
  }

  .news-v2-card__desc {
    display: none;
  }

  .news-v2-sidebar {
    grid-template-columns: 1fr;
  }

  .news-detail-sidebar,
  .news-detail-related__grid {
    grid-template-columns: 1fr;
  }

  .news-detail-meta-actions,
  .news-detail-share > a {
    margin-left: 0;
  }

  .news-detail-divider {
    display: none;
  }
}

@media (max-width: 520px) {
  .news-v2-section {
    padding-top: 26px;
  }

  .news-v2-card {
    grid-template-columns: 1fr;
  }

  .news-v2-card__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .news-v2-card__foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .news-detail-layout {
    padding-top: 26px;
  }

  .news-detail-meta-bar,
  .news-detail-share {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-detail-related-card {
    grid-template-columns: 1fr;
  }

  .news-detail-related-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}
