.news_wrapper {
  max-width: 1200px;
  min-height: 100vh;
}
ul.breadcrumb {
  padding: 10px 2px;
  list-style: none;
  width: 100%;
}
ul.breadcrumb li {
  display: inline;
  font-size: 14px;
}
ul.breadcrumb li + li:before {
  padding: 8px;
  color: black;
  content: ">\00a0";
}
ul.breadcrumb li a {
  color: #8894aa;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}

ul.breadcrumb li.active {
  color: #232338;
  font-weight: 600;
}

/* Left */

.news_meta {
  font-size: 14px;
  color: #555;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.news_meta .meta_item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news_meta .category a {
  color: #00a0e9;
  text-decoration: none;
}

.news_meta .share a {
  margin-left: 5px;
  font-size: 16px;
  color: #333;
}

.news_meta .share a:hover {
  color: #00a0e9;
}

.news_content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
  text-align: justify;
}
.news_content p.fw-bold.text-primary {
  font-weight: 600;
  color: #232338;
}

/* Right */
.title_new_right {
  margin-top: 4.2rem;
}

.news_item {
  width: 400px;
}

.wrapper_right_img {
  width: 35%;
  /*height: 88px;*/
  margin-right: 10px;
}
.new_img_right {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news_text {
  width: 65%;
}

.date_right {
  text-decoration: none;
}
/*CSS bổ sung V1 - 11/02/2026
.sport-page {
  font-family: "Inter", sans-serif;
  background: #f9fbff;
  color: #1f2937;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 10%;
  align-items: center;
}

.hero img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* CONTENT BLOCK */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 80px 10%;
  align-items: center;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse .block-text {
  direction: ltr;
}

.block-image img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.block-image img:hover {
  transform: scale(1.04);
}

.block-text {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.block-text h2 {
  margin-bottom: 16px;
  color: #2563eb;
}

/* HIGHLIGHT */
.highlight .block-text {
  background: #eff6ff;
}

/* EMPHASIS */
.emphasis .block-text {
  background: #ecfeff;
}

/* TABLE */
.table-section {
  padding: 80px 10%;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

thead {
  background: #2563eb;
  color: #ffffff;
}

th, td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

tbody tr:hover {
  background: #f1f5f9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero,
  .content-block {
    grid-template-columns: 1fr;
  }
}
