@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body, html, * {
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
}

body {
  background: #fff;        /* nền ngoài khung */
}

.main-container {
  width: 1440px;  
  margin: 0px auto;          /* căn giữa và cách trên dưới 40px */
  overflow: hidden;           /* ẩn phần tràn */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;          /* tối thiểu full màn hình */
  /* padding: 32px;           nếu muốn có khoảng cách trong */
}
/*====================================================================Phần 1 Banner*/

.banner-float-btn {
  width: 107px;
  height: 107px;
  background: #D72323;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 1.5s, transform 1.5s, background 0.3s, font-size 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  text-align: center;
  user-select: none;
}
.banner-float-btn:not(.thd-cyber):hover {
  background: #F72323;
  font-size: 14px;
}
.banner-float-btn.thd-cyber {
  background: #5b5b5b;
  font-size: 12px;
  z-index: 2;
}
.banner-float-btn.thd-cyber:hover {
  background: #D72323;
  font-size: 13px;
}

/* Khi hiện overlay menu */
.banner-float-btn.show {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}

.banner-title,
  .banner-buttons {
    transition: transform 0.4s ease-in, opacity 0.4s ease-in;
    transform: translateY(-40px) !important;
    opacity: 0 !important;
  }

/*====================================================================Phần 2*/
.solutions {
  width: 1241px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.solutions-header {
  display: flex;
  gap: 40px;
  margin: 32px 0;
}
.dropdown-btn {
  width: 220px;
  height: 43px;
  font-size: 16px;
  background: #d9d9d9;
  color: #000;
  border: none;
  border-radius: 60px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: Inter, sans-serif;
  gap: 8px;
  padding: 0 16px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center; /* Mặc định căn giữa */
  gap: 8px;
  width: 220px;
  padding: 0 16px;
  transition: justify-content 0.3s;
}
.dropdown-btn.space-between {
  justify-content: space-between !important;
}
.dropdown-btn:focus {
  outline: none;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  max-height: 190px;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.3s, opacity 0.3s, visibility 0.3s;
  pointer-events: auto;
}
.dropdown-menu.hide {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown-item {
  padding: 8px 16px;
  cursor: pointer;
  font-size: 10px;
  font-family: Inter, sans-serif;
  background: transparent;
  color: #000;
  border-bottom: none;
  border-radius: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, color 0.3s, border-radius 0.3s;
}
.dropdown-item:hover {
  background: #D72323;
  color: #fff;
  border-radius: 8px;
}
.dropdown-item::after {
  content: "";
  display: block;
  height: 1px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.dropdown-item:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
.solutions-title {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.solutions-title h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

/* Card dọc */
.solution-list-vertical {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
}
/* Đảm bảo tất cả phần tử con trong thẻ dọc phần 2 dùng box-sizing: border-box */
.solution-list-vertical * {
  box-sizing: border-box;
}
.solution-vertical-card {
  position: relative;
  width: 128.81px;
  height: 562.04px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #e0e0e0;
}
.solution-vertical-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s;
  display: block;
}
.solution-vertical-card.active {
  width: 478.44px;
}
.solution-vertical-card.active .vertical-overlay {
  opacity: 1;
  pointer-events: auto;
}
.solution-vertical-card.active .vertical-title {
  opacity: 0;
  right: -50px;
}
.solution-vertical-card .vertical-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
  position: absolute;
  right: 48px;
  left: auto;
  bottom: 48px;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  opacity: 1;
  transition:
    opacity 0.3s,
    right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: opacity, right, transform;
  white-space: nowrap;
}
.solution-vertical-card:not(.active) .vertical-title {
  opacity: 1;
  right: 48px;
}
.solution-vertical-card:hover:not(.active) .vertical-title {
  opacity: 0;
  right: -50px;
}
.solution-vertical-card:hover .vertical-overlay {
  opacity: 1;
  pointer-events: auto;
}
/* Vertical line */
.solution-vertical-card::before {
  content: '';
  position: absolute;
  background-color: white;
  width: 2px;
  height: 150px;
  bottom: 48px;
  right: 40px;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}
.solution-vertical-card:nth-child(1)::before { height: 101px; }
.solution-vertical-card:nth-child(2)::before { height: 190px; }
.solution-vertical-card:nth-child(3)::before { height: 147px; }
.solution-vertical-card:nth-child(4)::before { height: 106px; }
.solution-vertical-card:nth-child(5)::before { height: 147px; }
.solution-vertical-card:nth-child(6)::before { height: 189px; }
.solution-vertical-card:hover::before,
.solution-vertical-card.active::before {
  opacity: 0;
}
.vertical-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 286.14px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  opacity: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 36.803px 36.864px 36.803px;
  pointer-events: none;
  transition: opacity 0.3s;
  align-items: flex-start;
}
.vertical-overlay-line {
  width: 404.83px;
  max-width: 100%;
  height: 2px;
  background: #fff;
  margin: 0 0 16px 0;
  align-self: flex-start;
  border-radius: 1px;
  display: block;
  opacity: 1;
}
.vertical-overlay h3 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 12px !important;
  color: #fff;
  font-family: Inter, sans-serif;
}

.vertical-overlay p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px 0;
  color: #fff;
  font-family: Inter, sans-serif;
  word-break: break-word; /* NGĂN TRÀN */
  overflow-wrap: break-word;
  box-sizing: border-box;
}

.vertical-overlay .explore-more-btn {
  margin-bottom: 0 !important;
}

.explore-more-btn, .explore-more-btn *, .explore-more-btn:visited {
  text-decoration: none !important;
}

.explore-more-btn {
  width: 161.56px;
  height: 40.48px;
  border-radius: 28px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #D9D9D9;
  font-size: 12.88px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9.201px 18.401px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: none;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}
.explore-more-btn span {
  font-size: 14px;
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: inline;
  width: auto;
  height: auto;
  line-height: 1;
}

.vertical-desc {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 6.4em; /* 4 dòng x 1.6em (line-height) */
}

/*====================================================================Phần 3 Sản Phẩm Dịch Vụ*/
.products {
  padding: 80px 0;
  text-align: center;
}

.product-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1134.06px;
  margin: 40px auto 0;
  position: relative;
}

.product-carousel-wrapper {
  position: relative;
  width: 1134.06px;
  overflow: hidden;
}

.product-list {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 20px 0;
  gap: 20px;
  row-gap: 20px;
}

.product-card-wrapper {
  margin: 0;
  border-radius: 30px 0px 30px 0px;
  overflow: hidden;
  background-color: #FFFFFF;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  height: 461.17px;
}

.product-card-wrapper:first-child {
  flex: 0 0 417.02px;
  width: 417.02px;
}

.product-card-wrapper:not(:first-child) {
  flex: 0 0 338.52px;
  width: 338.52px;
}

.product-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid #D72323;
}

.product-card-wrapper:hover .product-bottom-info {
  background-color: #D72323;
  color: #fff;
}

.product-card-wrapper:hover .product-bottom-info h3 {
  color: #fff;
}

.product-card {
  height: 80%;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-bottom-info {
  border-radius: 0 0 30px 0px;
  transition: background 0.3s, color 0.3s;
  height: 20%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.product-bottom-info h3 {
  color: #000;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

/* Nút tròn sản phẩm/dịch vụ */
.explore-product-btn {
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 39.249px;
  height: 39.249px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s;
}
.product-card-wrapper:hover .explore-product-btn svg path {
  fill: #fff !important;
}
.explore-product-btn svg {
  width: 39.249px;
  height: 39.249px;
  display: block;
}
.explore-product-btn svg path {
  fill: #C22621;
  transition: fill 0.3s;
}
.product-card-wrapper:first-child:hover .explore-product-btn {
  transform: translateX(20px);
}
.product-card-wrapper:hover .explore-product-btn {
  transform: none;
}

.product-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, color 0.3s, border 0.3s;
}

/* Đổi màu icon SVG khi hover */
.product-arrow:hover svg path {
  fill: #7D7D7D;
}

.product-arrow.left {
  left: 0;
  margin-left: -70px;
}

.product-arrow.right {
  right: 0;
  margin-right: -70px;
}

.product-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-card-wrapper:not(:first-child):hover .product-bottom-info h3 {
  transform: scale(0.9) translateX(-15px);
  transition: transform 0.3s;
}
.product-card-wrapper:first-child:hover .product-bottom-info h3 {
  transform: none;
}

.banner-buttons button,
#banner-buttons button {
  transition: color 0.3s;
}
#banner-buttons button[style*='background:#D72323'] {
  transition: color 0.3s;
}
#banner-buttons button[style*='background:#D72323']:hover {
  color: #000 !important;
}
#banner-buttons button[style*='background:#D72323']:hover svg path {
  fill: #000 !important;
}
/*====================================================================Phần 4 Sứ Mệnh - Về Chúng Tôi*/
/* Mission section styles */
.mission {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 60px 0;
}

.mission-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 32px;
  color: #000;
}

.mission-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 829.49px;
}

.orbit-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.mission-earth {
  width: 1259.5px;
  height: 829.49px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Hiệu ứng hover cho nút Về chúng tôi */
.vechungtoi-btn {
  color: #fff;
  background: #D72323;
  transition: color 0.2s;
}
.vechungtoi-btn .vechungtoi-arrow {
  color: #fff;
  transition: color 0.2s;
}
.vechungtoi-btn:hover,
.vechungtoi-btn:hover .vechungtoi-arrow {
  color: #000 !important;
}
.vechungtoi-btn:hover .vechungtoi-arrow-svg path {
  fill: #000 !important;
}
#vechungtoi-btn, #vechungtoi-btn *, #vechungtoi-btn:visited {
  text-decoration: none !important;
}
/*====================================================================Phần 5 Lý Do Chọn THD*/
.why-choose {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 48px 0;
}

.why-choose img {
  width: 1440px;
  height: 483px;
  display: block;
  margin: 0 auto;
}
/*=========================================Phần 6 slogan "The Innovative Technology Leader".*/
/* Scrolling Banner */
.scrolling-banner-section {
  width: 1440px;
  height: 119px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
}
.scrolling-banner-content {
  display: flex;
  align-items: center;
  position: absolute;
  animation: scrollBanner 20s linear infinite;
  white-space: nowrap;
  height: 100%;
}
.scrolling-banner-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
  height: 100%;
}
.scrolling-banner-logo {
  width: 90.8px;
  height: 81.97px;
  object-fit: contain;
}
.scrolling-banner-slogan {
  font-size: 80.71px;
  font-weight: bold;
  color: #EFEFEF;
  line-height: 1;
}
@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.666%);
  }
}
/*=========================================Phần 7 Câu chuyện thành công (Success Stories)*/
.story-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.story-tabs button {
  background: #eee;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  cursor: pointer;
  font-weight: 500;
}

.story-tabs .active {
  background: #D72323;
  color: #fff;
}

.story-content {
  display: flex;
  justify-content: center;
}

.story-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px #0001;
  padding: 24px;
}

.story-card img {
  width: 120px;
  border-radius: 12px;
}

/*=========================================Phần 8 Đối tác - Khách hàng*/
html, body {
  overflow-x: hidden;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #000;
}
.container {
  max-width: 100%;
  margin: auto;
  padding: 0 16px;
}

/* Đối tác - Khách hàng */
.partners {
  margin: 48px 0;
  max-width: 1440px;
  padding: 0 20px;
  overflow: hidden;
}
.section-title {
  text-align: center;
  margin-bottom: 30px;
  color: #000;
  font-weight: bold;
  font-size: 36px;
  font-family: 'Inter', sans-serif;
}
.partner-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  width: 550px;
  height: 90px;
  align-items: center;
  margin: 0 auto 30px auto;
  box-sizing: border-box;
  border: 2px solid #D0D0D0;
  border-radius: 50px;
  background: #fff;
}
.partner-tabs button {
  padding: 12px 16px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 25px;
  border: 2px solid #E0E0E0;
  background: #F1F1F1;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 55px;
  width: 236px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.partner-tabs button.active,
.partner-tabs button:hover {
  background: #D72323;
  color: #fff;
  border-color: #D72323;
}

.partner-slider {
  display: flex;
  gap: 40px;
  width: max-content;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.partner-logo {
  width: 83.17px;
  height: 46.14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo img {
  width: 83.17px;
  height: 46.14px;
  object-fit: contain;
  transition: all 0.3s;
  cursor: pointer;
}
.partner-slider-row {
  width: 100%;
  height: calc(50% - 10px);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.partner-slider-box {
  width: 885px;
  height: 257px;
  border: 2px solid #FF0000;
  border-radius: 50px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Animation cho slider */
.slide-left {
  animation: slideLeft 20s linear infinite;
  display: flex;
  gap: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: max-content;
}
.slide-right {
  animation: slideRight 20s linear infinite;
  display: flex;
  gap: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: max-content;
}
@keyframes slideLeft {
  0% { transform: translateX(0) translateY(-50%); }
  100% { transform: translateX(-50%) translateY(-50%); }
}
@keyframes slideRight {
  0% { transform: translateX(-50%) translateY(-50%); }
  100% { transform: translateX(0) translateY(-50%); }
}
.partner-row-1 .partner-slider {
  animation: slide 20s linear infinite;
}
.partner-row-2 .partner-slider {
  animation: slideReverse 20s linear infinite;
}
@keyframes slide {
  0% { transform: translateX(0) translateY(-50%); }
  100% { transform: translateX(-50%) translateY(-50%); }
}
@keyframes slideReverse {
  0% { transform: translateX(-50%) translateY(-50%); }
  100% { transform: translateX(0) translateY(-50%); }
}
/*=========================================Phần 9 Tin tức (News)*/
/* --- PHẦN 9: TIN TỨC --- */
#news-section .news-header {
  width: 270px;
  height: 144px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
#news-section .section-title {
  text-align: center;
  margin: 0;
  color: #000000;
  font-weight: bold;
  font-size: 36px;
  font-family: Inter;
}
#news-section .news-filter-group {
  width: 494px;
  height: 80px;
  border-radius: 50px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin: 0 auto 40px auto;
  box-sizing: border-box;
  gap: 30px;
  border: 1px solid #E0E0E0;
}
#news-section .news-filter-btn {
  font-size: 20px;
  font-family: Inter, sans-serif;
  font-weight: bold;
  border-radius: 35px;
  border: 1px solid #E0E0E0;
  background-color: #F1F1F1;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  width: 130px;
  height: 50px;
}
#news-section .news-filter-btn[data-filter="Tất cả"] { width: 80px; }
#news-section .news-filter-btn[data-filter="Tin công ty"] { width: 130px; }
#news-section .news-filter-btn[data-filter="Tin trong ngành"] { width: 175px; }
#news-section .news-filter-btn.active,
#news-section .news-filter-btn.hover {
  background-color: #D72323;
  color: white;
}
#news-section .news-carousel-container {
  position: relative;
  width: 1279px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#news-section .news-arrow-btn {
  border: none;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: none;
  padding: 0;
}
#news-section .news-arrow-btn.left { left: -75px; }
#news-section .news-arrow-btn.right { right: -75px; }
#news-section .news-arrow-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#news-section .news-arrow-btn:hover {
  background: #fff;
}
#news-section .news-arrow-btn:hover svg path {
  fill: #9D9B9B;}
#news-section .news-carousel-wrapper {
  flex-grow: 1;
  overflow: hidden;
}
#news-section .news-list {
  display: flex;
  gap: 20px;
  width: max-content;
  height: 410px;
  overflow: visible;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
}
#news-section .news-card {
  width: 301px;
  height: 410px;
  margin-left: -2px;
  border-radius: 20px;
  border: 1px solid #D9D9D9;
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  flex: 0 0 303px;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
#news-section .news-img-wrap {
  position: relative;
  width: 301px;
  height: 202px;
  overflow: hidden;
  margin-left: -2px;
  box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
#news-section .news-img-border {
  border: none;
}
#news-section .news-img {
  width: 301px;
  height: 202px;
  object-position: center;
  object-fit: cover;
  display: block;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
#news-section .news-card-content {
  position: absolute;
  top: 226.05px;
  left: 16px;
  width: 270px;
  height: 144px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  box-sizing: border-box;
  overflow: hidden;
  text-align: left;
}
#news-section .news-card-content h3 {
  font-size: 15px;
  margin: 0;
  color: #ACACAC;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 44px;
  text-align: left;
  font-style: italic;
}
#news-section .news-card-content p {
  font-size: 10px;
  color: #000;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 60px;
  text-align: left;
  font-style: italic;
}
#news-section .news-see-more-wrapper {
  text-align: center;
  margin-top: 40px;
}
#news-section .see-more {
  display: inline-block;
  padding: 12px 32px;
  background-color: #fff;
  color: black;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px;
  font-family: Inter;
}
#news-section .see-more svg path {
  transition: fill 0.2s;
}
#news-section .see-more:hover {
  color: #ACACAC;
  background: #fff;
}
#news-section .see-more:hover svg path {
  fill: #ACACAC;
}
/* --- END PHẦN 9: TIN TỨC --- */

.partner-tab:not(.active):hover {
  background: #D72323 !important;
  color: #fff !important;
  border-color: #D72323 !important;
  transition: all 0.3s;
}
.story-tab:not(.active):hover {
  background: #D72323 !important;
  color: #fff !important;
  transition: all 0.3s;
}

/* Áp dụng box-sizing: border-box cho phần 8, phần thẻ dọc ở phần 2, phần 9 */
.partners, .partner-tabs, .partner-slider, .partner-logo, .partner-slider-row, .partner-slider-box,
.solution-list-vertical, .solution-vertical-card, .vertical-overlay, .vertical-title,
#news-section, #news-section .news-header, #news-section .news-filter-group, #news-section .news-filter-btn,
#news-section .news-carousel-container, #news-section .news-list, #news-section .news-card,
#news-section .news-img-wrap, #news-section .news-card-content {
  box-sizing: border-box;
}
