@charset "UTF-8";
/* -------------------------------------------------------------
   DESIGN SYSTEM & CUSTOM STYLES FOR VNCERAMIC / VIBCA
------------------------------------------------------------- */
:root {
  --color-primary-green: #0A6B40;
  --color-primary-red: #C81E1E;
  --font-main: 'Be Vietnam Pro', sans-serif;
  --font-title: 'Roboto Condensed', sans-serif;
  --fs-base: 16px;
  --fs-title-index: clamp(20px, calc(40 * 100vw / 1920), 40px);
}
@media (max-width: 767px) {
  :root {
    --fs-base: 15px;
  }
}

body {
  font-family: var(--font-main);
  font-size: var(--fs-base);
  margin: 0;
  padding: 0;
  color: #333;
  top: 0 !important;
}

.skiptranslate {
  display: none !important;
}

.detail-content h2,
.detail-content h3,
.detail-content h4,
.detail-content h5,
.detail-content h6 {
  margin-bottom: 15px;
  line-height: 1.5;
  color: var(--color-text);
}
.detail-content h2,
.detail-content h3,
.detail-content h4 {
  font-weight: 700;
}
.detail-content p {
  line-height: 1.5;
  margin-bottom: 15px;
  margin-top: 0;
}
.detail-content figure {
  margin-bottom: 15px;
}
.detail-content figure img {
  display: block;
}
.detail-content figure figcaption {
  text-align: center;
  padding: 5px 15px;
  font-size: var(--fs-text-min);
  font-style: italic;
}
.detail-content ul,
.detail-content ol {
  margin-bottom: 15px;
  padding-left: 25px;
}
.detail-content ul li,
.detail-content ol li {
  padding-bottom: 5px;
  line-height: 1.5;
}
.detail-content ul li:last-child,
.detail-content ol li:last-child {
  padding-bottom: 0;
}
.detail-content ul li::marker,
.detail-content ol li::marker {
  color: var(--color-text);
}
.detail-content ul {
  list-style-type: disc;
}
.detail-content ul li {
  list-style-type: disc;
  color: var(--color-text);
}
.detail-content ol {
  list-style-type: decimal;
}
.detail-content ol li {
  list-style-type: decimal;
}
.detail-content .image-center {
  display: flex;
  justify-content: center;
  margin: 0 auto 15px;
}
.detail-content .image-center img {
  margin: auto;
}
.detail-content .image-left {
  float: left;
  margin-bottom: 15px;
  margin-right: 15px;
}
.detail-content .image-right {
  float: right;
  margin-bottom: 15px;
  margin-left: 15px;
}
.detail-content a {
  text-decoration: underline;
}
.detail-content a:hover {
  color: var(--color-main);
}
.detail-content table {
  margin-bottom: 15px;
  border-collapse: collapse;
  width: 100%;
}
.detail-content table tr th {
  line-height: 1;
  font-weight: 400;
  font-size: var(--fs-text);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-top-color: var(--color-main);
}
.detail-content table tr th:first-child {
  border-left-color: var(--color-main);
}
.detail-content table tr th:last-child {
  border-right-color: var(--color-main);
}
.detail-content table tr th,
.detail-content table tr td {
  font-size: var(--fs-text);
  line-height: 1.5;
  padding: 5px;
}
.detail-content img {
  max-width: 100%;
  height: initial;
}
.detail-content iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
}
.detail-content .iframe_video {
  margin-bottom: 15px;
}
.detail-content .iframe_video iframe,
.detail-content .iframe_video video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

/* -------------------------------------------------------------
   SITE HEADER
------------------------------------------------------------- */
.site-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 10px 40px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.header-brand-logo {
  flex-shrink: 0;
  padding-right: 35px;
}

.header-brand-logo img {
  height: 75px;
  width: auto;
  display: block;
}

.header-right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding-bottom: 8px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}

.topbar-link:hover {
  color: var(--color-primary-green);
}

.icon-red {
  color: var(--color-primary-red) !important;
  font-size: 14px;
}

.flag-icon {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

/* DROPDOWN CHỌN NGÔN NGỮ TOPBAR */
.language-selector {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.selected-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.selected-lang:hover {
  background-color: #F3F4F6;
}

.language-selector .arrow-icon {
  font-size: 12px;
  transition: transform 0.25s ease;
  color: #6B7280;
}

.language-selector.open .arrow-icon {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 6px 0;
  margin-top: 6px;
  list-style: none;
  min-width: 135px;
  z-index: 1100;
  display: none;
  border: 1px solid #E5E7EB;
}

.language-selector.open .lang-dropdown {
  display: block;
  animation: fadeInDown 0.2s ease;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}

.lang-option:hover,
.lang-option.active {
  background-color: #F4F9F6;
  color: var(--color-primary-green);
  font-weight: 600;
}

/* MAIN NAV & SEARCH TRIGGER CẠNH NAV-MENU */
.header-main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding-top: 6px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  text-decoration: none;
  color: #222222;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 0;
  display: block;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-menu > li.active > a,
.nav-menu > li:hover > a {
  color: var(--color-primary-green);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 230px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--color-primary-green);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  display: none;
  z-index: 100;
}

.nav-menu > li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  padding: 10px 18px;
  display: block;
  color: #444444;
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px dashed #f0f0f0;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu li:hover a {
  background-color: #f4f9f6;
  color: var(--color-primary-green);
}

/* KHỐI TÌM KIẾM CẠNH NAV MENU */
.search-trigger-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.search-trigger:hover {
  background-color: #E8F5EE;
}

.search-trigger i {
  color: var(--color-primary-green);
  font-size: 17px;
}

.search-box-popup {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border: 1px solid #D1D5DB;
  border-radius: 25px;
  padding: 4px 6px 4px 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  display: none;
  align-items: center;
  width: 250px;
  z-index: 1050;
  margin-top: 8px;
}

.search-box-popup.active {
  display: flex;
  animation: fadeInDown 0.2s ease;
}

.search-box-popup input {
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 14px;
  width: 100%;
  background: transparent;
  color: #111827;
}

.search-box-popup button {
  background: var(--color-primary-green);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.search-box-popup button:hover {
  background: #075231;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* HERO BANNER SLIDER */
.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #eef5f1;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 992px) {
  .hero-swiper .swiper-slide img {
    min-height: 420px;
  }
}
@media (max-width: 991px) {
  .hero-swiper .swiper-slide img {
    min-height: unset;
    height: auto;
    object-fit: contain;
  }
}
/* -------------------------------------------------------------
   KHỐI DANH SÁCH HỘI VIÊN (MEMBER SECTION)
------------------------------------------------------------- */
.hoivien-section {
  background: url("../images/bg_hoivien.png") center/cover no-repeat;
  background-color: #E6F3ED;
  padding: 55px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hoivien-section {
    padding: 15px 0;
  }
}

.hoivien-title {
  text-align: center;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .hoivien-title {
    margin-bottom: 10px;
  }
}

.hoivien-title h2 {
  font-size: 32px;
  color: var(--color-primary-green);
  font-weight: 700;
  margin: 0 0 8px 0;
  font-family: var(--font-title);
}
@media (max-width: 767px) {
  .hoivien-title h2 {
    font-size: 25px;
  }
}

.hoivien-title .red-line {
  width: 40px;
  height: 3px;
  background-color: #C81E1E;
  margin: 0 auto;
  border-radius: 2px;
}

.hoivien-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .hoivien-tabs {
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: start;
  }
  .hoivien-tabs::-webkit-scrollbar {
    height: 0;
  }
}

.tab-pill {
  background: #ffffff;
  border: 1px solid #138A59;
  color: #138A59;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .tab-pill {
    white-space: nowrap;
    font-weight: 400;
  }
}

.tab-pill:hover,
.tab-pill.active {
  background: linear-gradient(180deg, #26A275 0%, #0C7046 100%);
  color: #ffffff;
  border-color: #138A59;
  box-shadow: 0 4px 12px rgba(19, 138, 89, 0.25);
}

.hoivien-slider-wrapper {
  position: relative;
  padding: 0;
  box-sizing: border-box;
}
.hoivien-slider-wrapper .owl-stage {
  display: flex;
}
.hoivien-slider-wrapper .owl-stage .member-slide, .hoivien-slider-wrapper .owl-stage .hoivien-card {
  height: 100%;
}

.member-swiper {
  padding: 10px 5px 25px 5px !important;
  overflow: hidden !important;
  width: 100%;
}
@media (max-width: 767px) {
  .member-swiper {
    padding: 10px 0 0 0 !important;
  }
}

.hoivien-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 18px 20px 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 325px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 767px) {
  .hoivien-card {
    padding: 10px;
    height: initial;
  }
}

.hoivien-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.card-logo {
  width: 100%;
  aspect-ratio: 223/111;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.card-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.card-divider {
  width: 40px;
  height: 2px;
  background-color: #8CC63F;
  margin: 10px 0 12px 0;
}

.card-company-name {
  font-weight: 700;
  color: #333333;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
  min-height: 47px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-company-name a {
  text-decoration: none;
  font-weight: 700;
  color: #333333;
  font-size: var(--fs-base);
}
@media (max-width: 767px) {
  .card-company-name a {
    font-weight: 600;
    text-transform: initial;
  }
}
.card-company-name:hover {
  color: #138A59;
}
.card-company-name:hover a {
  color: #138A59;
}

.card-website {
  font-size: 14px;
  color: #2D80E2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-weight: 400;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-website:hover {
  text-decoration: underline;
}

.btn-card-action {
  display: inline-block;
  width: 85%;
  max-width: 100%;
  padding: 8px 0;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: 1px solid #138A59;
  color: #138A59;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .btn-card-action {
    font-weight: 400;
  }
}
.btn-card-action.active, .btn-card-action:Hover {
  background: linear-gradient(180deg, #26A275 0%, #0C7046 100%);
  backdrop-filter: blur(5px);
  color: #fff;
}

.member-swiper-prev,
.member-swiper-next {
  background: #ffffff !important;
  color: #333333 !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
}

.member-swiper-prev {
  left: -17px !important;
}
@media (max-width: 767px) {
  .member-swiper-prev {
    left: 0 !important;
  }
}

.member-swiper-next {
  right: -25px !important;
}
@media (max-width: 767px) {
  .member-swiper-next {
    right: 0 !important;
  }
}

.member-swiper-prev:after,
.member-swiper-next:after {
  display: none !important;
}

.member-swiper-prev i,
.member-swiper-next i {
  font-size: 18px;
  color: #444444;
}

.member-swiper-prev:hover i,
.member-swiper-next:hover i {
  color: #138A59;
}

/* -------------------------------------------------------------
   MAIN CONTENT LAYOUT
------------------------------------------------------------- */
.main-content-section {
  padding: 50px 0;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .main-content-section {
    padding: 15px 0;
  }
}

.main-content-grid {
  display: grid;
  grid-template-columns: calc(76.3% - 35px) 23.7%;
  gap: 35px;
  align-items: start;
}
@media (max-width: 767px) {
  .main-content-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .main-content-grid > * {
    width: 100%;
  }
}

.main-content-grid-2 {
  display: grid;
  grid-template-columns: calc(67.3% - 30px) 31.7%;
  gap: 30px;
  align-items: start;
}
@media (max-width: 767px) {
  .main-content-grid-2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .main-content-grid-2 > * {
    width: 100%;
  }
}

/* SECTION TITLE WITH RED BAR & GREY LINE */
.section-title-block {
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .section-title-block {
    margin-bottom: 10px;
  }
}

.section-title-block h2 {
  font-size: var(--fs-title-index);
  color: var(--color-primary-green);
  font-weight: 700;
  font-family: var(--font-title);
  margin: 0;
}

.section-title-block .title-lines {
  display: flex;
  align-items: center;
  margin-top: 6px;
  width: 100%;
}

.section-title-block .red-bar {
  width: 35px;
  height: 3px;
  background-color: #C81E1E;
  border-radius: 2px;
  flex-shrink: 0;
}

.title-with-grey-line .grey-line {
  flex: 1;
  height: 1px;
  background-color: #E5E7EB;
}

/* 1. KHỐI TIN TỨC NỔI BẬT */
.featured-news-card-box {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .featured-news-card-box {
    margin-bottom: 10px;
  }
}

.featured-news-card-box .news-cover {
  aspect-ratio: 620/404;
  overflow: hidden;
}
@media (max-width: 767px) {
  .featured-news-card-box .news-cover {
    height: initial;
    aspect-ratio: 16/9;
  }
}

.featured-news-card-box .news-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-news-card-box:hover .news-cover img {
  transform: scale(1.04);
}

.featured-news-card-box .news-content-side {
  padding: 26px 24px 22px 24px;
  display: flex;
  flex-direction: column;
}

.featured-news-card-box .pub-date {
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .featured-news-card-box .pub-date {
    font-weight: 400;
  }
}

.featured-news-card-box h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #111827;
  margin: 0 0 12px 0;
}
@media (max-width: 767px) {
  .featured-news-card-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.featured-news-card-box h3 a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s;
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-news-card-box h3 a:hover {
  color: var(--color-primary-green);
}

.featured-news-card-box p {
  color: #4B5563;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slider-dots-green {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dots-green span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D1D5DB;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dots-green span.active {
  background-color: var(--color-primary-green);
  width: 10px;
  height: 10px;
}

/* Lưới 3 Tin Phụ Bên Dưới */
.sub-news-3grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .sub-news-3grid {
    margin-bottom: 10px;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
  }
}

.sub-news-item-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}
@media (max-width: 767px) {
  .sub-news-item-card {
    display: flex;
    gap: 0;
  }
}

.sub-news-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.sub-news-item-card .img-box {
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (max-width: 767px) {
  .sub-news-item-card .img-box {
    width: 30%;
  }
}

.sub-news-item-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sub-news-item-card:hover .img-box img {
  transform: scale(1.05);
}

.sub-news-item-card h4 {
  font-weight: 700;
  color: #1F2937;
  line-height: 1.4;
  padding: 16px 14px;
  margin: 0;
  min-height: 58px;
}

.sub-news-item-card h4 a {
  color: #1F2937;
  text-decoration: none;
  transition: color 0.2s;
}

.sub-news-item-card h4 a:hover {
  color: var(--color-primary-green);
}

/* 2. HOẠT ĐỘNG HIỆP HỘI */
.activities-2col-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
}

.main-activity-big-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-activity-big-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.main-activity-big-card .img-box {
  height: 240px;
  overflow: hidden;
}

.main-activity-big-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.main-activity-big-card:hover .img-box img {
  transform: scale(1.05);
}

.main-activity-big-card .card-info {
  padding: 20px 18px;
}

.main-activity-big-card h3 {
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px 0;
}

.main-activity-big-card h3 a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-activity-big-card:hover h3 a,
.main-activity-big-card h3 a:hover {
  color: var(--color-primary-green);
}

.main-activity-big-card p {
  color: #4B5563;
  line-height: 1.5;
  margin: 0;
}

.activities-right-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.activity-row-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #F3F4F6;
  text-decoration: none;
}

.activity-row-card:last-child {
  border-bottom: none;
}

.activity-row-card .row-img {
  width: 130px;
  height: 75px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.activity-row-card .row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-row-card:hover .row-img img {
  transform: scale(1.06);
}

.activity-row-card h4 {
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.activity-row-card h4 a {
  color: #1F2937;
  text-decoration: none;
  transition: color 0.2s ease;
}

.activity-row-card:hover h4 a,
.activity-row-card h4 a:hover {
  color: var(--color-primary-green);
}

/* -------------------------------------------------------------
   3. CỘT QUẢNG CÁO SIDEBAR (CUỘN DỌC TỰ ĐỘNG KHÔNG BỊ LỖI KHOẢNG TRẮNG)
------------------------------------------------------------- */
.right-sidebar-column {
  display: flex;
  flex-direction: column;
}

.sidebar-ad-stack {
  position: relative;
  width: 100%;
}

.sidebar-ad-marquee {
  height: 940px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.ad-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: scrollVerticalAd 28s linear infinite;
}

.sidebar-ad-marquee:hover .ad-track {
  animation-play-state: paused;
}

@keyframes scrollVerticalAd {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-50% - 6px));
  }
}
.sidebar-ad-item {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.sidebar-ad-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.sidebar-ad-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

/* -------------------------------------------------------------
   4. KHỐI SẢN PHẨM - CÔNG NGHỆ (FULL-WIDTH SECTION BÊN DƯỚI)
------------------------------------------------------------- */
.sanpham-section {
  background-color: #F8FAF9;
  padding: 55px 0;
  border-top: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
}

.sanpham-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: start;
}

.sanpham-featured-card {
  display: flex;
  flex-direction: column;
}

.sanpham-featured-card .img-box {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.sanpham-featured-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sanpham-featured-card:hover .img-box img {
  transform: scale(1.04);
}

.sanpham-featured-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin: 0 0 10px 0;
}

.sanpham-featured-card h3 a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s;
}

.sanpham-featured-card h3 a:hover {
  color: var(--color-primary-green);
}

.sanpham-featured-card p {
  color: #4B5563;
  line-height: 1.55;
  margin: 0;
}

.sanpham-2x2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.sanpham-sub-card {
  display: flex;
  flex-direction: column;
}

.sanpham-sub-card .img-box {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.sanpham-sub-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sanpham-sub-card:hover .img-box img {
  transform: scale(1.05);
}

.sanpham-sub-card h4 {
  font-weight: 700;
  color: #1F2937;
  line-height: 1.4;
  margin: 0;
}

.sanpham-sub-card h4 a {
  color: #1F2937;
  text-decoration: none;
  transition: color 0.2s;
}

.sanpham-sub-card h4 a:hover {
  color: var(--color-primary-green);
}

/* -------------------------------------------------------------
   5. KHỐI HỘI CHỢ TRIỂN LÃM
------------------------------------------------------------- */
.hoicho-section {
  padding: 55px 0 50px 0;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .hoicho-section {
    padding: 15px 0;
  }
}

.hoicho-slider-wrapper {
  position: relative;
  padding: 0;
}

.hoicho-swiper {
  padding: 15px 0px !important;
  overflow: hidden !important;
}
@media (max-width: 767px) {
  .hoicho-swiper {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
.hoicho-swiper .owl-stage {
  display: flex;
}
.hoicho-swiper .owl-stage .swiper-slide {
  height: 100%;
}
.hoicho-swiper .owl-stage .owl-item {
  padding-bottom: 5px;
}

.hoicho-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hoicho-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

.hoicho-card .img-box {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.hoicho-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hoicho-card:hover .img-box img {
  transform: scale(1.05);
}

.hoicho-card h3 {
  font-weight: 600;
  line-height: 1.45;
  padding: 18px 20px 22px 20px;
  margin: 0;
  min-height: 52px;
  font-size: var(--fs-base);
}
@media (max-width: 767px) {
  .hoicho-card h3 {
    padding: 10px;
    min-height: initial;
  }
}
.hoicho-card h3 a {
  font-size: var(--fs-base);
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}
.hoicho-card:hover a {
  color: var(--color-primary-green);
}

.hoicho-swiper-prev,
.hoicho-swiper-next {
  background: transparent !important;
  color: #666666 !important;
  width: 32px !important;
  height: 32px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
}

.hoicho-swiper-prev {
  left: -32px !important;
}
@media (max-width: 767px) {
  .hoicho-swiper-prev {
    left: 15px !important;
  }
}

.hoicho-swiper-next {
  right: -32px !important;
}
@media (max-width: 767px) {
  .hoicho-swiper-next {
    right: 15px !important;
  }
}

.hoicho-swiper-prev:after,
.hoicho-swiper-next:after {
  display: none !important;
}

.hoicho-swiper-prev i,
.hoicho-swiper-next i {
  font-size: 24px;
  color: #555555;
  transition: color 0.2s;
}

.hoicho-swiper-prev:hover i,
.hoicho-swiper-next:hover i {
  color: var(--color-primary-green);
}

/* -------------------------------------------------------------
   6. KHỐI GIAO THƯƠNG & TẠP CHÍ GSXD
------------------------------------------------------------- */
.giaothuong-tapchi-section {
  padding: 20px 0 60px 0;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .giaothuong-tapchi-section {
    padding: 15px 0;
  }
}

.giaothuong-box-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
  padding: 20px;
}

.giaothuong-inner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.71fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 767px) {
  .giaothuong-inner-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .giaothuong-inner-grid > * {
    width: 100%;
  }
}

.giaothuong-featured-item {
  display: flex;
  flex-direction: column;
}

.giaothuong-featured-slide {
  display: flex;
  flex-direction: column;
}
.giaothuong-featured-slide .desc {
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.giaothuong-featured-item .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.giaothuong-featured-item .owl-dots .owl-dot span {
  width: 9px;
  height: 9px;
  margin: 0;
  border: 1px solid #333333;
  background: #ffffff !important;
}

.giaothuong-featured-item .owl-dots .owl-dot.active span {
  border-color: var(--color-primary-green);
  background: var(--color-primary-green);
}

.giaothuong-featured-item .img-box {
  aspect-ratio: 532/313;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .giaothuong-featured-item .img-box {
    margin-bottom: 10px;
  }
}

.giaothuong-featured-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.giaothuong-featured-item:hover .img-box img {
  transform: scale(1.04);
}

.giaothuong-featured-item h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #333333;
  margin: 0 0 14px 0;
}
@media (max-width: 767px) {
  .giaothuong-featured-item h3 {
    font-size: 16px;
  }
}
.giaothuong-featured-item h3 a {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease;
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.giaothuong-featured-item:hover h3 a {
  color: var(--color-primary-green);
}
.giaothuong-featured-item p,
.giaothuong-featured-item .desc {
  color: #333333;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.giaothuong-featured-item .desc p {
  margin: 0;
}

.giaothuong-list-items {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-left: 1px solid #dfdfdf;
  padding: 3px 0 8px 22px;
}

.giaothuong-list-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0 15px;
  border-bottom: 1px solid #dfdfdf;
}

.giaothuong-list-row:first-child {
  padding-top: 0;
}

.giaothuong-list-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.green-bullet {
  color: var(--color-primary-green);
  font-size: 12px;
  margin-top: 5px;
  flex-shrink: 0;
}

.giaothuong-list-row h4,
.giaothuong-list-row h3 {
  font-weight: 600;
  line-height: 24px;
  margin: 0;
  font-size: 16px;
}
.giaothuong-list-row h4 a,
.giaothuong-list-row h3 a {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 16px;
}
.giaothuong-list-row:hover h4 a,
.giaothuong-list-row:hover h3 a {
  color: var(--color-primary-green);
}

.tapchi-block-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tapchi-main-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.tapchi-main-card .img-box {
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.tapchi-main-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tapchi-main-card:hover .img-box img {
  transform: scale(1.04);
}

.tapchi-main-card h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1.4;
  color: #111827;
  margin: 0;
}
.tapchi-main-card h3 a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}
.tapchi-main-card:hover h3 a {
  color: var(--color-primary-green);
}

.tapchi-sub-2grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tapchi-sub-card {
  display: flex;
  flex-direction: column;
}
.tapchi-sub-card .img-box {
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}
.tapchi-sub-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tapchi-sub-card:hover .img-box img {
  transform: scale(1.05);
}

.tapchi-sub-card h4,
.tapchi-sub-card h3 {
  font-weight: 600;
  line-height: 1.35;
  color: #1F2937;
  margin: 0;
  font-size: var(--fs-base);
}
.tapchi-sub-card h4 a,
.tapchi-sub-card h3 a {
  font-size: var(--fs-base);
  color: #1F2937;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.tapchi-sub-card:hover h4 a,
.tapchi-sub-card:hover h3 a {
  color: var(--color-primary-green);
}

/* -------------------------------------------------------------
   7. FOOTER & FLOATING ACTION BUTTONS
------------------------------------------------------------- */
.site-footer {
  background-color: #F4F6F5;
  color: #333333;
  font-family: var(--font-main);
  border-top: 1px solid #E5E7EB;
}

.footer-top-main {
  padding: 48px 0 52px 0;
}

.footer-4col-grid {
  display: grid;
  grid-template-columns: 3.6fr 1.5fr 2fr 3.2fr;
  gap: 36px;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  letter-spacing: 0.2px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: #4B5563;
  line-height: 1.45;
  font-weight: 500;
}

.footer-contact-list li i {
  color: #6B7280;
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #9CA3AF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4B5563;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
}

.footer-social-links a:hover {
  border-color: var(--color-primary-green);
  color: var(--color-primary-green);
  background-color: #ffffff;
  transform: translateY(-2px);
}

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

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list li a {
  color: #4B5563;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-nav-list li a:hover {
  color: var(--color-primary-green);
}

.subscribe-desc {
  font-size: 14px;
  color: #4B5563;
  margin: 0 0 14px 0;
  font-weight: 500;
}

.footer-subscribe-form {
  margin-bottom: 14px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 4px 6px 4px 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.input-with-icon .icon-left {
  color: #9CA3AF;
  font-size: 15px;
  margin-right: 8px;
}

.input-with-icon input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 14px;
  color: #111827;
  background: transparent;
  padding: 6px 0;
}

.input-with-icon input::placeholder {
  color: #9CA3AF;
}

.btn-send-green {
  background-color: var(--color-primary-green);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  width: 34px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-send-green:hover {
  background-color: #075231;
}

.footer-select-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 8px 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.footer-select-box .icon-left {
  color: #9CA3AF;
  font-size: 14px;
  margin-right: 10px;
  pointer-events: none;
}

.footer-select-box select {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 14px;
  color: #4B5563;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 20px;
}

.footer-select-box .icon-right {
  position: absolute;
  right: 14px;
  color: #6B7280;
  font-size: 14px;
  pointer-events: none;
}

.footer-bottom-bar {
  background-color: var(--color-primary-green);
  color: #ffffff;
  padding: 14px 0;
  font-size: 14px;
}

.copyright-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright-text {
  margin: 0;
  font-weight: 400;
}

.copyright-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.copyright-links a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.copyright-links a:hover {
  opacity: 0.85;
}

.copyright-links .divider {
  color: rgba(255, 255, 255, 0.6);
}

/* Figma node 227:210 - Footer */
.site-footer {
  background-color: #f4f7f7;
  border-top: 0;
}

.footer-top-main {
  min-height: 330px;
  padding: 40px 0 39px;
  box-sizing: border-box;
}

.footer-4col-grid {
  grid-template-columns: 44.2% 12.9% 18.8% 24.1%;
  gap: 0;
}

.footer-col-info .footer-title {
  max-width: 574px;
}

.footer-title {
  margin: 0 0 16px;
  color: #333333;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}

.footer-title::after {
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 8px;
  background: var(--color-primary-green);
  content: "";
}

.footer-contact-list {
  margin: 0 0 21px;
}

.footer-contact-list li {
  gap: 12px;
  margin: 0;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 767px) {
  .footer-contact-list li {
    font-size: var(--fs-base);
    position: relative;
    padding-left: 31px;
    line-height: 1.5;
    padding-bottom: 10px;
  }
  .footer-contact-list li svg {
    position: absolute;
    left: 0;
    top: 3px;
  }
}

.footer-contact-list li i {
  display: inline-flex;
  flex: 0 0 20px;
  width: 20px;
  height: 30px;
  margin: 0;
  align-items: center;
  justify-content: center;
  color: #555555;
  font-size: 15px;
}

.footer-social-links {
  gap: 8px;
}

.footer-social-links a {
  width: 35px;
  height: 35px;
  border-color: #777777;
  color: #555555;
  font-size: 15px;
}

.footer-nav-list li {
  margin: 0;
  line-height: 30px;
}

.footer-nav-list li a {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
}

.newsletter-desc {
  margin: 0 0 14px;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 767px) {
  .newsletter-desc {
    font-size: var(--fs-base);
  }
}

.newsletter-form-box,
.footer-quick-select-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 47px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #bebebe;
  border-radius: 6px;
  background: #ffffff;
  box-sizing: border-box;
}

.newsletter-form-box {
  margin-bottom: 14px;
  position: relative;
}
.newsletter-form-box:has(+ .newsletter-validation-message:not(:empty)) {
  margin-bottom: 5px;
}
.newsletter-form-box input.is-invalid {
  color: var(--color-primary-red);
}
.newsletter-form-box button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.newsletter-form-box svg {
  position: absolute;
  left: 18px;
}

.newsletter-validation-message {
  margin: -7px 0 9px;
  color: var(--color-primary-red);
  font-size: 12px;
  line-height: 18px;
}
.newsletter-validation-message:empty {
  display: none;
}
.newsletter-validation-message.is-success {
  color: var(--color-primary-green);
}

.newsletter-field-icon,
.quick-select-icon {
  position: absolute;
  left: 17px;
  z-index: 1;
  width: 20px;
  color: #8a96a5;
  font-size: 16px;
  text-align: center;
  pointer-events: none;
}

.newsletter-form-box input {
  width: 100%;
  height: 100%;
  padding: 0 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #333333;
  font-family: var(--font-main);
  font-size: 16px;
}
@media (max-width: 767px) {
  .newsletter-form-box input {
    font-size: var(--fs-base);
  }
}

.newsletter-form-box input::placeholder {
  color: #6b7a8d;
}

.newsletter-form-box button {
  position: absolute;
  top: 5px;
  right: 4px;
  display: inline-flex;
  width: 37px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--color-primary-green);
  color: #ffffff;
  cursor: pointer;
}
@media (max-width: 767px) {
  .newsletter-form-box button {
    font-size: var(--fs-base);
  }
}

.footer-select-link {
  width: 100%;
  height: 100%;
  padding: 0 34px 0 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #6b7a8d;
  font-family: var(--font-main);
  font-size: 16px;
  cursor: pointer;
}

.footer-bottom-bar {
  height: 51px;
  padding: 0;
  font-size: 16px;
}
@media (max-width: 767px) {
  .footer-bottom-bar {
    font-size: var(--fs-base);
  }
}

.footer-bottom-flex {
  display: flex;
  height: 51px;
  align-items: center;
  justify-content: space-between;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-policy-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-policy-links a:hover {
  opacity: 0.85;
}

@media (max-width: 1199px) {
  .footer-top-main {
    min-height: 0;
  }
  .footer-4col-grid {
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 24px;
  }
  .footer-title {
    font-size: 17px;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .footer-title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .footer-top-main {
    padding: 36px 0;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .footer-top-main {
    padding: 15px 0;
  }
}
@media (max-width: 991px) {
  .footer-4col-grid {
    gap: 28px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .footer-4col-grid {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .footer-col-newsletter {
    width: 100%;
    max-width: 420px;
  }
}
@media (max-width: 575px) {
  .footer-bottom-bar,
  .footer-bottom-flex {
    height: auto;
    min-height: 70px;
  }
  .footer-bottom-flex {
    padding: 10px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }
}
.fixed-floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #C81E1E;
  color: #ffffff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(200, 30, 30, 0.35);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
  background-color: #a81717;
}

.float-btn i {
  font-size: 18px;
}

.zalo-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* Figma node 214:206 - Home news and association activities */
.news-events-grid {
  grid-template-columns: minmax(0, 1fr) 327px;
  gap: 36px;
}
.news-events-grid .section-title-block {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .news-events-grid .section-title-block {
    margin-bottom: 10px;
  }
}
.news-events-grid .section-title-block h2 {
  font-size: var(--fs-title-index);
  line-height: 1.2;
  font-family: var(--font-title);
}

.news-events-grid .featured-news-card-box {
  grid-template-columns: 61% 39%;
  min-height: 404px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .news-events-grid .featured-news-card-box {
    min-height: initial;
  }
}

.featured-news-card-box .news-content-side {
  padding: 38px 30px 28px;
}

.featured-news-card-box .news-content-side .desc {
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media (max-width: 767px) {
  .featured-news-card-box .news-content-side .desc {
    -webkit-line-clamp: 3;
    margin-bottom: 10px;
  }
}

.news-events-grid .featured-news-card-box h3 {
  font-size: 24px;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .news-events-grid .featured-news-card-box h3 {
    font-size: 18px;
  }
}

.sub-news-3grid .sub-news-item-card {
  min-height: 302px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .sub-news-3grid .sub-news-item-card {
    min-height: initial;
  }
}

.sub-news-3grid .sub-news-item-card .img-box {
  height: 210px;
}
@media (max-width: 767px) {
  .sub-news-3grid .sub-news-item-card .img-box {
    height: initial;
  }
}

.sub-news-3grid .sub-news-item-card h3 {
  padding: 16px 14px;
  font-size: var(--fs-base);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .sub-news-3grid .sub-news-item-card h3 {
    padding: 10px;
    width: calc(70% - 10px);
    margin: 0;
  }
}
.sub-news-3grid .sub-news-item-card h3 a {
  text-decoration: none;
  color: #333;
}
@media (max-width: 767px) {
  .sub-news-3grid .sub-news-item-card h3 a {
    font-weight: 400;
  }
}
.sub-news-3grid .sub-news-item-card h3 a:hover {
  color: var(--color-primary-green);
}

.news-events-grid .activities-2col-layout {
  grid-template-columns: minmax(0, 502px) minmax(0, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .news-events-grid .activities-2col-layout {
    gap: 10px;
  }
}

.news-events-grid .main-activity-big-card {
  min-height: 543px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .news-events-grid .main-activity-big-card {
    min-height: initial;
  }
}

.news-events-grid .main-activity-big-card .img-box {
  height: 328px;
}
@media (max-width: 767px) {
  .news-events-grid .main-activity-big-card .img-box {
    min-height: initial;
  }
}

.news-events-grid .main-activity-big-card .card-info {
  padding: 24px 26px;
}
@media (max-width: 767px) {
  .news-events-grid .main-activity-big-card .card-info {
    padding: 10px;
  }
}
.news-events-grid .main-activity-big-card .card-info .desc {
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media (max-width: 767px) {
  .news-events-grid .main-activity-big-card .card-info .desc {
    -webkit-line-clamp: 3;
  }
}

.news-events-grid .main-activity-big-card h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .news-events-grid .main-activity-big-card h3 {
    font-size: 16px;
  }
}

.news-events-grid .activity-row-card {
  gap: 20px;
  padding: 24px 0;
}
@media (max-width: 767px) {
  .news-events-grid .activity-row-card {
    gap: 10px;
    padding: 10px 0;
  }
}
.news-events-grid .activity-row-card:first-child {
  padding-top: 0;
}
.news-events-grid .activity-row-card:last-child {
  padding-bottom: 0;
}

.news-events-grid .activity-row-card .row-img {
  width: 161px;
  height: 106px;
  border-radius: 10px;
}

.news-events-grid .activity-row-card h3 {
  font-size: var(--fs-base);
  line-height: 1.5;
}
.news-events-grid .activity-row-card h3 a {
  font-size: var(--fs-base);
  text-decoration: none;
  color: #333;
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 767px) {
  .news-events-grid .activity-row-card h3 a {
    font-weight: 400;
  }
}
.news-events-grid .activity-row-card h3:hover a {
  color: var(--color-promary-green);
}

.home-ad-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
}

.home-ad-heading h2 {
  margin: 0;
  color: var(--color-primary-green);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-ad-heading span {
  width: 100%;
  height: 1px;
  background: #dfdfdf;
}

.home-ad-list {
  --home-ad-gap: 16px;
  display: flex;
  flex-direction: column;
  gap: var(--home-ad-gap);
}
.home-ad-list.is-marquee {
  display: block;
  overflow: hidden;
}
.home-ad-list.is-marquee .home-ad-track {
  display: flex;
  flex-direction: column;
  animation: home-ad-marquee var(--home-ad-duration, 20s) linear infinite;
  will-change: transform;
}
.home-ad-list.is-marquee .home-ad-group {
  display: flex;
  flex: none;
  flex-direction: column;
  gap: var(--home-ad-gap);
  padding-bottom: var(--home-ad-gap);
}
.home-ad-list.is-marquee:hover .home-ad-track, .home-ad-list.is-marquee:focus-within .home-ad-track {
  animation-play-state: paused;
}

@keyframes home-ad-marquee {
  to {
    transform: translateY(-50%);
  }
}
.home-ad-list a,
.home-ad-list .home-ad-item {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 327/160;
}

.home-ad-list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .news-events-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
  }
  .news-events-grid .activities-2col-layout {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .news-events-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .home-ad-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .news-events-grid .section-title-block h2 {
    font-size: 25px;
  }
  .news-events-grid .featured-news-card-box,
  .news-events-grid .activities-2col-layout {
    grid-template-columns: 1fr;
  }
  .news-events-grid .featured-news-card-box .news-cover,
  .news-events-grid .main-activity-big-card .img-box {
    height: initial;
    aspect-ratio: 16/9;
  }
  .news-events-grid .activity-row-card .row-img {
    width: 130px;
    height: 86px;
  }
}
@media (max-width: 479px) {
  .home-ad-list {
    --home-ad-gap: 10px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-ad-list .home-ad-track {
    animation: none;
  }
}
.featured-news-carousel {
  display: block;
  position: relative;
}

.featured-news-carousel .featured-news-slide {
  display: grid;
  grid-template-columns: 61% 39%;
  min-height: 404px;
}

.featured-news-carousel .owl-dots {
  position: absolute;
  left: calc(61% + 30px);
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.featured-news-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  border: 1px solid #333333;
  background: #ffffff !important;
}

.featured-news-carousel .owl-dots .owl-dot.active span {
  width: 10px;
  height: 10px;
  border-color: var(--color-primary-green);
  background: var(--color-primary-green);
}

@media (max-width: 767px) {
  .featured-news-carousel .featured-news-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .featured-news-carousel .owl-dots {
    left: 10px;
    bottom: 10px;
    gap: 8px;
  }
  .featured-news-carousel .news-content-side {
    padding: 10px;
  }
}
/* Figma node 221:208 - Product and technology section */
.sanpham-section {
  background-color: #f4f7f7;
  padding: 40px 0 58px;
  border: 0;
}

.sanpham-section > .container {
  width: 1378px;
  max-width: calc(100% - 40px);
}

.sanpham-section .section-title-block {
  margin-bottom: 20px;
}

.sanpham-section .section-title-block h2 {
  color: var(--color-primary-green);
  font-family: "Roboto Condensed", "Be Vietnam Pro", sans-serif;
  font-size: var(--fs-title-index);
  line-height: 48px;
  font-weight: 700;
}

.sanpham-section .section-title-block .title-lines {
  margin-top: 10px;
}

.sanpham-section .section-title-block .red-bar {
  width: 51px;
  height: 2px;
  border-radius: 0;
}

.sanpham-section .sanpham-layout {
  grid-template-columns: minmax(0, 674px) minmax(0, 1fr);
  gap: 29px;
}

.sanpham-section .sanpham-featured-card .img-box {
  height: 440px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.sanpham-section .sanpham-featured-card h3,
.sanpham-section .sanpham-featured-card h4 {
  max-width: 654px;
  margin: 0 0 14px;
  color: #333333;
  font-size: 24px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .sanpham-section .sanpham-featured-card h3,
  .sanpham-section .sanpham-featured-card h4 {
    font-size: 16px;
  }
}
.sanpham-section .sanpham-featured-card .desc {
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.sanpham-section .sanpham-featured-card h3 a,
.sanpham-section .sanpham-sub-card h4 a {
  color: #333333;
}
.sanpham-section .sanpham-featured-card h3 a:hover,
.sanpham-section .sanpham-sub-card h4 a:hover {
  color: var(--color-primary-green);
}

.sanpham-section .sanpham-featured-card p {
  max-width: 668px;
  color: #333333;
  font-size: var(--fs-base);
  line-height: 24px;
}

.sanpham-section .sanpham-2x2-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 25px;
  row-gap: 25px;
}

.sanpham-section .sanpham-sub-card .img-box {
  aspect-ratio: 16/10;
  margin-bottom: 14px;
  border-radius: 10px;
}

.sanpham-section .sanpham-sub-card h3 {
  color: #333333;
  font-size: var(--fs-base);
  line-height: 24px;
  font-weight: 600;
  margin-top: 0;
}
.sanpham-section .sanpham-sub-card h3 a {
  color: #333333;
  text-decoration: none;
}
.sanpham-section .sanpham-sub-card:hover a {
  color: var(--color-primary-green);
}

@media (max-width: 1199px) {
  .sanpham-section .sanpham-layout {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .sanpham-section .sanpham-2x2-grid {
    column-gap: 20px;
    row-gap: 32px;
  }
}
@media (max-width: 991px) {
  .sanpham-section {
    padding: 40px 0;
  }
  .sanpham-section .sanpham-layout {
    grid-template-columns: 1fr;
  }
  .sanpham-section .sanpham-featured-card .img-box {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .sanpham-section {
    padding: 15px 0;
  }
  .sanpham-section > .container {
    max-width: calc(100% - 30px);
  }
  .sanpham-section .sanpham-layout {
    gap: 10px;
  }
  .sanpham-section .sanpham-sub-card .img-box {
    margin-bottom: 10px;
  }
  .sanpham-section .sanpham-sub-card h3 {
    margin-bottom: 0;
  }
  .sanpham-section .section-title-block h2 {
    font-size: 20px;
    line-height: 38px;
  }
}
@media (max-width: 575px) {
  .sanpham-section .sanpham-2x2-grid {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .sanpham-section .sanpham-featured-card .img-box,
  .sanpham-section .sanpham-sub-card .img-box {
    height: auto;
    aspect-ratio: 323/211;
  }
}
@media (max-width: 991px) {
  .giaothuong-box-card {
    min-height: 0;
    padding: 16px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .giaothuong-box-card {
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .giaothuong-list-items {
    border-left: 0;
    border-top: 1px solid #dfdfdf;
    padding: 16px 0 0;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .giaothuong-list-items {
    padding: 10px 0 0 0;
  }
}
@media (max-width: 991px) {
  .giaothuong-list-row {
    min-height: 0;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .giaothuong-list-row {
    padding: 10px 0;
  }
  .giaothuong-list-row h3 {
    font-size: var(--fs-base);
    font-weight: 400;
  }
  .giaothuong-list-row h3 a {
    font-size: var(--fs-base);
  }
}
/* -------------------------------------------------------------
   PAGE HERO BANNER & BREADCRUMB STYLES
------------------------------------------------------------- */
.page-hero-banner {
  width: 100%;
  overflow: hidden;
  background-color: #eef5f1;
  aspect-ratio: 1920/476;
}

.page-hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.breadcrumb-bar {
  background-color: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .breadcrumb-bar {
    margin-bottom: 0;
    padding: 10px 0;
  }
}

.breadcrumb-nav {
  font-size: 14px;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.breadcrumb-nav a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: var(--color-primary-green);
}

.breadcrumb-nav .fa-angle-right {
  font-size: 12px;
  color: #999999;
}

.breadcrumb-nav .current {
  color: #666666;
  font-weight: 500;
}

/* Figma breadcrumb — node 241:206 */
.breadcrumb-bar-introduce {
  padding: 16px 0;
  border-bottom: 0;
}
@media (max-width: 767px) {
  .breadcrumb-bar-introduce {
    padding: 10px 0;
  }
}
.breadcrumb-bar-introduce .breadcrumb-nav {
  min-height: 30px;
  color: #4e4e4e;
  font: 400 var(--fs-base)/30px "Be Vietnam Pro", sans-serif;
}
.breadcrumb-bar-introduce .breadcrumb-nav .breadcrumb-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.breadcrumb-bar-introduce .breadcrumb-nav a,
.breadcrumb-bar-introduce .breadcrumb-nav .current {
  color: #4e4e4e;
  font: inherit;
}
.breadcrumb-bar-introduce .breadcrumb-nav a:hover,
.breadcrumb-bar-introduce .breadcrumb-nav a:focus-visible {
  color: var(--color-primary-green);
}
.breadcrumb-bar-introduce .breadcrumb-nav .breadcrumb-separator {
  display: block;
  width: 5px;
  height: 8px;
  object-fit: contain;
}
.breadcrumb-bar-introduce .breadcrumb-nav .breadcrumb-separator-item {
  display: flex;
  flex: 0 0 9px;
  width: 9px;
  align-items: center;
}
.breadcrumb-bar-introduce .breadcrumb-nav .current {
  color: var(--color-primary-green);
}

/* -------------------------------------------------------------
   PAGE MAIN CONTENT LAYOUT & ARTICLE STYLES
------------------------------------------------------------- */
.page-main-content {
  padding-bottom: 50px;
}

.page-layout-grid {
  display: grid;
  grid-template-columns: calc(100% - 290px) 290px;
  gap: 32px;
}

/* SIDEBAR CATEGORY MENU */
.sidebar-widget-block {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sidebar-category-menu {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.sidebar-category-menu li {
  border-bottom: 1px dashed #E5E7EB;
}

.sidebar-category-menu li:last-child {
  border-bottom: none;
}

.sidebar-category-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.sidebar-category-menu li a .icon-arrow {
  color: #9CA3AF;
  transition: transform 0.2s, color 0.2s;
}

.sidebar-category-menu li.active a,
.sidebar-category-menu li a:hover {
  background-color: #F0FDF4;
  color: var(--color-primary-green);
}

.sidebar-category-menu li.active a .icon-arrow,
.sidebar-category-menu li a:hover .icon-arrow {
  color: var(--color-primary-green);
  transform: translateX(3px);
}

.sidebar-ad-widget {
  position: relative;
  width: 100%;
}

.sidebar-ad-widget .sidebar-ad-marquee {
  height: 720px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.sidebar-ad-widget .ad-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: scrollVerticalAd 25s linear infinite;
}

.sidebar-ad-widget .sidebar-ad-marquee:hover .ad-track {
  animation-play-state: paused;
}

.sidebar-ad-widget img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ARTICLE BODY */
.page-article-body {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 30px 35px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.article-header {
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.article-title {
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin: 0 0 10px 0;
}

.article-meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6B7280;
}

.article-meta-info .divider {
  color: #D1D5DB;
}

.article-lead-summary {
  background-color: #F8FAF9;
  border-left: 4px solid var(--color-primary-green);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
}

.article-lead-summary p {
  margin: 0;
  line-height: 1.6;
  color: #1F2937;
}

.article-content p {
  line-height: 1.65;
  color: #374151;
  margin-bottom: 18px;
}

.article-content h3 {
  font-weight: 700;
  color: var(--color-primary-green);
  margin: 28px 0 14px 0;
  padding-bottom: 6px;
  border-bottom: 2px solid #E8F5EE;
}

.article-figure-box {
  margin: 24px 0;
  text-align: center;
}

.article-figure-box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.article-figure-box figcaption {
  font-style: italic;
  color: #6B7280;
  margin-top: 10px;
}

.article-check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px 0;
}

.article-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.55;
  color: #374151;
}

.article-check-list li .icon-green {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--color-primary-green);
}

.article-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 20px;
  margin-top: 35px;
  border-top: 1px solid #E5E7EB;
}

.share-title {
  font-weight: 700;
  color: #374151;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.share-btn:hover {
  opacity: 0.88;
}

.share-btn.facebook {
  background-color: #1877F2;
}

.share-btn.twitter {
  background-color: #1DA1F2;
}

.share-btn.linkedin {
  background-color: #0A66C2;
}

/* -------------------------------------------------------------
   CONTACT PAGE STYLES (TRANG LIÊN HỆ)
------------------------------------------------------------- */
.contact-page-wrapper {
  padding-bottom: 60px;
}

/* THẺ THÔNG TIN LIÊN HỆ (3 CARDS) */
.contact-cards-section {
  margin-bottom: 45px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-info-card .card-icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-red);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px auto;
  box-shadow: 0 4px 12px rgba(200, 30, 30, 0.2);
}

.contact-info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: 0.3px;
}

.contact-info-card p {
  font-size: 14.5px;
  color: #4B5563;
  line-height: 1.5;
  margin: 4px 0;
}

/* KHỐI FORM GỬI THÔNG TIN LIÊN HỆ */
.contact-form-block {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 35px 40px;
  margin-bottom: 45px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.form-desc-subtitle {
  font-size: 14.5px;
  color: #6B7280;
  margin: -10px 0 24px 0;
}

.contact-custom-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.required-star {
  color: var(--color-primary-red);
  font-weight: 700;
}

.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 14.5px;
  color: #111827;
  background-color: #ffffff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary-green);
  box-shadow: 0 0 0 3px rgba(10, 107, 64, 0.12);
}

.form-submit-row {
  display: flex;
  justify-content: flex-start;
  padding-top: 6px;
}

.btn-submit-contact {
  background-color: var(--color-primary-green);
  color: #ffffff;
  padding: 12px 36px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(10, 107, 64, 0.2);
}

.btn-submit-contact:hover {
  background-color: #075231;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 107, 64, 0.28);
}

/* KHỐI BẢN ĐỒ DẪN ĐƯỜNG */
.contact-map-block {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.google-map-container {
  border-radius: 8px;
  overflow: hidden;
  height: 450px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.google-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* -------------------------------------------------------------
   NEWS PAGE STYLES (TRANG TIN TỨC TINTUC.HTML)
------------------------------------------------------------- */
.page-featured-block {
  margin-bottom: 40px;
}

.other-news-section {
  margin-top: 10px;
}

.news-page-top-card {
  margin-bottom: 30px;
}

.news-page-top-card .featured-main-title {
  font-size: 20px;
  line-height: 1.35;
  margin: 6px 0 10px 0;
}

.news-page-top-card .featured-main-title a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-page-top-card .featured-main-title a:hover {
  color: var(--color-primary-green);
}

.btn-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary-green);
  font-weight: 700;
  text-decoration: none;
  font-size: 14.5px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.btn-readmore-link:hover {
  color: #075231;
  transform: translateX(4px);
}

/* DANH SÁCH BÀI VIẾT TIN TỨC */
.news-articles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.news-list-item-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-list-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.news-list-item-card .item-img-box {
  width: 230px;
  height: 145px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.news-list-item-card .item-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-list-item-card:hover .item-img-box img {
  transform: scale(1.06);
}

.news-list-item-card .item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-list-item-card .pub-date {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 4px;
}

.news-list-item-card h2 {
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px 0;
}

.news-list-item-card h2 a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-list-item-card h2 a:hover {
  color: var(--color-primary-green);
}

.news-list-item-card p {
  color: #4B5563;
  line-height: 1.5;
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-item-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--color-primary-green);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.btn-item-more:hover {
  transform: translateX(4px);
  color: #075231;
}

/* THANH PHÂN TRANG PAGINATION */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 35px;
  margin-bottom: 25px;
}

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

.pagination-list .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid #E5E7EB;
  background: #ffffff;
  color: #374151;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.pagination-list .page-link:hover,
.pagination-list .page-link.active {
  background-color: var(--color-primary-green);
  color: #ffffff;
  border-color: var(--color-primary-green);
  box-shadow: 0 2px 8px rgba(10, 107, 64, 0.25);
}

.pagination-list .page-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-list .page-dots {
  padding: 0 4px;
  color: #9CA3AF;
  font-weight: 700;
}

/* News list — Figma node 254:211 */
.news-feed-figma {
  margin-top: 20px;
  border-top: 1px solid #d9d9d9;
}
@media (max-width: 767px) {
  .news-feed-figma {
    margin-top: 10px;
  }
}
.news-feed-figma .news-feed-item {
  display: grid;
  grid-template-columns: 322px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0 20px;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 767px) {
  .news-feed-figma .news-feed-item {
    gap: 10px;
    padding: 10px 0 10px;
  }
}
.news-feed-figma .news-feed-image {
  aspect-ratio: 322/210;
  width: 322px;
  overflow: hidden;
  border-radius: 6px;
}
.news-feed-figma .news-feed-image a,
.news-feed-figma .news-feed-image img {
  display: block;
  width: 100%;
  height: 100%;
}
.news-feed-figma .news-feed-image img {
  object-fit: cover;
  transition: transform 0.35s ease;
}
.news-feed-figma .news-feed-content {
  min-width: 0;
  align-self: center;
}
.news-feed-figma .news-feed-content h2,
.news-feed-figma .news-feed-content h3 {
  margin: 0 0 10px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .news-feed-figma .news-feed-content h2,
  .news-feed-figma .news-feed-content h3 {
    font-size: 16px;
  }
}
.news-feed-figma .news-feed-content h2 a,
.news-feed-figma .news-feed-content h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}
.news-feed-figma .news-feed-content h2 a:hover,
.news-feed-figma .news-feed-content h3 a:hover {
  color: #147951;
}
.news-feed-figma .news-feed-description {
  display: -webkit-box;
  overflow: hidden;
  color: #333;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.news-feed-figma .news-feed-description p {
  margin: 0;
}
.news-feed-figma .news-feed-item:hover .news-feed-image img {
  transform: scale(1.04);
}

.page {
  gap: 8px;
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .page {
    margin-top: 10px;
  }
}
.page > a,
.page > span {
  width: 37px;
  height: 37px;
  border: 1px solid #d2d2d2;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .page > a,
  .page > span {
    width: 30px;
    height: 30px;
  }
}
.page > a.hidden,
.page > span.hidden {
  display: none;
}
.page > a:hover, .page > a.active-page,
.page > span:hover,
.page > span.active-page {
  border-color: var(--color-primary-green);
  background: var(--color-primary-green);
  color: #fff;
}
.page svg {
  width: 9px;
  height: 9px;
}

@media (max-width: 1199px) {
  .news-feed-figma .news-feed-item {
    grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
    gap: 22px;
  }
  .news-feed-figma .news-feed-image {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .news-feed-figma .news-feed-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 0;
  }
  .news-feed-figma .news-feed-image {
    height: auto;
    aspect-ratio: 16/9;
  }
  .news-feed-figma .news-feed-content h2 {
    font-size: 16px;
  }
  .news-feed-figma .news-feed-description {
    font-size: 15px;
  }
  .news-feed-pagination .page {
    gap: 6px;
  }
  .news-feed-pagination .page > a,
  .news-feed-pagination .page > span {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}
/* SIDEBAR POPULAR POSTS WIDGET */
.sidebar-popular-posts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.popular-post-item {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px dashed #E5E7EB;
  padding-bottom: 12px;
}

.popular-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-post-item .post-thumb {
  width: 75px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.popular-post-item .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.popular-post-item:hover .post-thumb img {
  transform: scale(1.08);
}

.popular-post-item .post-info {
  flex: 1;
}

.popular-post-item .post-info h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 4px 0;
}

.popular-post-item .post-info h3 a {
  color: #1F2937;
  text-decoration: none;
  transition: color 0.2s ease;
}

.popular-post-item .post-info h3 a:hover {
  color: var(--color-primary-green);
}

.popular-post-item .post-date {
  font-size: 12px;
  color: #6B7280;
}

/* -------------------------------------------------------------
   NEWS DETAIL PAGE STYLES (TRANG CHI TIẾT TIN TINTUC-DETAIL.HTML)
------------------------------------------------------------- */
.news-detail-article {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 35px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.news-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin: 0 0 16px 0;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #E5E7EB;
}

.article-meta-bar .meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
  color: #6B7280;
}

.social-share-mini {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-share-mini .share-label {
  font-size: 13px;
  color: #6B7280;
  font-weight: 600;
}

.social-share-mini .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-share-mini .share-btn:hover {
  opacity: 0.88;
}

.social-share-mini .share-btn.zalo {
  background-color: #0068FF;
}

.social-share-mini .share-btn.email {
  background-color: #EA4335;
}

.article-lead {
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  line-height: 1.6;
  margin-bottom: 26px;
  padding: 16px 20px;
  background-color: #F9FAFB;
  border-left: 4px solid var(--color-primary-green);
  border-radius: 0 6px 6px 0;
}

.article-entry-content {
  font-size: 15.5px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 30px;
}

.article-entry-content h2 {
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  margin: 28px 0 14px 0;
  line-height: 1.35;
}

.article-entry-content p {
  margin: 0 0 18px 0;
}

.article-figure {
  margin: 28px 0;
  text-align: center;
  background: #F9FAFB;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  padding: 12px;
  overflow: hidden;
}

.article-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}

.article-figure figcaption {
  font-size: 13.5px;
  color: #6B7280;
  font-style: italic;
  margin-top: 10px;
}

.article-blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  background-color: #EEF7F2;
  border-left: 4px solid var(--color-primary-green);
  border-radius: 0 8px 8px 0;
  position: relative;
}

.article-blockquote .quote-icon {
  font-size: 22px;
  color: var(--color-primary-green);
  margin-bottom: 8px;
  opacity: 0.85;
}

.article-blockquote p {
  font-size: 15.5px;
  font-style: italic;
  font-weight: 500;
  color: #064E3B;
  margin: 0;
  line-height: 1.6;
}

.article-footer-meta {
  padding-top: 20px;
  border-top: 1px solid #E5E7EB;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-tags-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.article-tags-wrapper .tag-label {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}

.article-tags-wrapper .tags-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tags-wrapper .tag-item {
  display: inline-block;
  background-color: #F3F4F6;
  color: #4B5563;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-tags-wrapper .tag-item:hover {
  background-color: var(--color-primary-green);
  color: #ffffff;
}

.article-share-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* BÀI VIẾT LIÊN QUAN SWIPER CAROUSEL (CHUẨN 100% FIGMA NODE 163-204) */
.related-news-section {
  margin-top: 43px;
}
@media (max-width: 767px) {
  .related-news-section {
    margin-top: 10px;
  }
}

.related-news-section .section-title-block h2 {
  font-size: clamp(28px, 2.0833333333vw, 40px);
  font-weight: 700;
  color: var(--color-primary-green);
  margin: 0;
  line-height: 1.05;
}
@media (max-width: 767px) {
  .related-news-section .section-title-block h2 {
    font-size: 20px;
  }
}

.related-news-section .section-title-block {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .related-news-section .section-title-block {
    margin-bottom: 10px;
  }
}

.related-news-section .section-title-block .title-lines {
  margin-top: 7px;
}

.related-news-section .section-title-block .red-bar {
  width: 51px;
  height: 2px;
}

.related-swiper-wrapper {
  position: relative;
  margin-top: 0;
}

.related-swiper {
  overflow: visible;
}

.related-card-item {
  background: #ffffff;
  border: 1px solid #DFDFDF;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.related-card-item .img-box {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #F8FAFC;
  border-radius: 6px 6px 0 0;
  flex-shrink: 0;
}

.related-card-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.related-card-item:hover .img-box img {
  transform: scale(1.08);
}

.related-card-item .card-body {
  padding: 15px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 767px) {
  .related-card-item .card-body {
    padding: 10px;
  }
}

.related-card-item h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
  color: #1E293B;
}
@media (max-width: 767px) {
  .related-card-item h3 {
    font-size: var(--fs-base);
    font-weight: 400;
  }
}

.related-card-item h3 a {
  color: #1E293B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-card-item h3 a:hover {
  color: var(--color-primary-green);
}

/* NÚT 2 MŨI TÊN ĐIỀU HƯỚNG 2 BÊN NỔI BẬT */
.related-swiper-prev,
.related-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #D1D5DB;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
  outline: none;
}

.related-swiper-prev {
  left: -16px;
}
@media (max-width: 767px) {
  .related-swiper-prev {
    left: 15px;
  }
}

.related-swiper-next {
  right: -16px;
}
@media (max-width: 767px) {
  .related-swiper-next {
    right: 15px;
  }
}

.related-swiper-prev:hover,
.related-swiper-next:hover {
  background-color: var(--color-primary-green);
  border-color: var(--color-primary-green);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(10, 107, 64, 0.3);
}

.related-swiper-prev i,
.related-swiper-next i {
  font-size: 20px;
}

/* -------------------------------------------------------------
   TRANG HỘI VIÊN (HOIVIEM.HTML) - GIAO DIỆN MỚI CHUẨN ẢNH MẪU
------------------------------------------------------------- */
.member-page-title-block {
  margin-bottom: 20px;
}

.member-page-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary-green);
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.red-bar-underline {
  width: 36px;
  height: 3px;
  background-color: var(--color-accent-red);
  border-radius: 2px;
}

/* THANH HẠNG MỤC PHÂN LOẠI HẠNG MỤC NẰM NGANG CÓ MŨI TÊN 2 BÊN */
.member-category-scroll-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  position: relative;
}

.cat-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #64748B;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.cat-nav-btn:hover {
  color: var(--color-primary-green);
}

.cat-pills-container {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}

.cat-pills-container::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #CBD5E1;
  color: #334155;
  transition: all 0.2s ease;
}

.cat-pill:hover {
  border-color: var(--color-primary-green);
  color: var(--color-primary-green);
}

.cat-pill.active {
  background-color: var(--color-primary-green);
  border-color: var(--color-primary-green);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(10, 107, 64, 0.2);
}

/* LƯỚI 4 CỘT THẺ HỘI VIÊN CHUẨN THEO ẢNH MẪU */
.member-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.member-card-new {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 22px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.member-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #CBD5E1;
}

.card-logo-area {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 4px;
}

.card-logo-area img {
  max-height: 60px;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.member-card-new:hover .card-logo-area img {
  transform: scale(1.05);
}

.card-line-divider {
  width: 28px;
  height: 2px;
  background-color: #CBD5E1;
  margin: 10px 0 12px 0;
  border-radius: 1px;
}

.company-title {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-title a {
  color: #1E293B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.company-title a:hover {
  color: var(--color-primary-green);
}

.company-web-link {
  font-size: 12px;
  color: #2563EB;
  text-decoration: none;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  word-break: break-all;
}

.company-web-link:hover {
  text-decoration: underline;
}

.btn-view-info {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid var(--color-primary-green);
  color: var(--color-primary-green);
  transition: all 0.2s ease;
  width: fit-content;
}

.btn-view-info:hover,
.btn-view-info.active {
  background-color: var(--color-primary-green);
  border-color: var(--color-primary-green);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(10, 107, 64, 0.2);
}

/* SIDEBAR MỚI NHẤT & QUẢNG CÁO THEO ẢNH MẪU */
.red-header h3 {
  color: var(--color-accent-red) !important;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #F1F5F9;
}

.red-header h3::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--color-accent-red);
}

.green-header h3 {
  color: var(--color-primary-green) !important;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #F1F5F9;
}

.green-header h3::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--color-primary-green);
}

.sidebar-latest-posts {
  list-style: none;
  padding: 0;
  margin: 12px 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-latest-posts li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar-latest-posts li a i {
  margin-top: 3px;
  font-size: 12px;
  flex-shrink: 0;
}

.sidebar-latest-posts li a:hover {
  color: var(--color-primary-green);
}

.single-ad-banner {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 12px;
}

.single-ad-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.single-ad-banner:hover img {
  transform: scale(1.02);
}

/* -------------------------------------------------------------
   TRANG CHI TIẾT HỘI VIÊN (HOIVIEN-DETAIL.HTML)
------------------------------------------------------------- */
.member-detail-header-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.unified-divider {
  height: 1px;
  background-color: #E2E8F0;
  margin: 28px 0;
}

.member-detail-sub-block {
  padding-top: 4px;
}

.detail-logo-box {
  width: 200px;
  height: 140px;
  background-color: #FAFAFA;
  border: 1px solid #F1F5F9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  flex-shrink: 0;
}

.detail-logo-box img {
  max-height: 100px;
  max-width: 90%;
  object-fit: contain;
}

.detail-header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.detail-header-info .company-title-main {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.detail-header-info .badge-tag {
  display: inline-block;
  width: fit-content;
  background-color: #E8F5EE;
  color: var(--color-primary-green);
  border: 1px solid #A7F3D0;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.detail-info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: #475569;
}

.detail-info-list .info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.detail-info-list .info-item i {
  margin-top: 3px;
  font-size: 14px;
  color: var(--color-primary-green);
  flex-shrink: 0;
}

.detail-info-list .info-item a {
  color: #2563EB;
  text-decoration: none;
}

.detail-info-list .info-item a:hover {
  text-decoration: underline;
}

.member-detail-sub-block .section-header-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary-green);
  margin: 0 0 16px 0;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid #F1F5F9;
}

.member-detail-sub-block .section-header-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: var(--color-accent-red);
}

.member-detail-content-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: #334155;
}

.member-detail-content-text p {
  margin-bottom: 14px;
}

/* Introduce page — Figma node 243:207 */
/* Member detail — Figma node 258:217 */
.member-profile-detail .member-profile-summary {
  display: grid;
  grid-template-columns: minmax(280px, 401px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid #d8e6e1;
}
.member-profile-detail .member-profile-logo {
  aspect-ratio: 401/222;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e6e1;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.member-profile-detail .member-profile-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.member-profile-detail .member-profile-meta h1 {
  margin: 9px 0 25px;
  color: #0a6b40;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}
.member-profile-detail .member-profile-info {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}
.member-profile-detail .member-profile-info-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 8px;
  min-height: 40px;
  align-items: start;
}
.member-profile-detail .member-profile-info-row dt,
.member-profile-detail .member-profile-info-row dd {
  margin: 0;
}
.member-profile-detail .member-profile-info-row dt {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  font-weight: 700;
}
.member-profile-detail .member-profile-info-row i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: #333;
  font-size: 17px;
}
.member-profile-detail .member-profile-info-row a {
  color: inherit;
  text-decoration: none;
}
.member-profile-detail .member-profile-info-row a:hover {
  color: #0a6b40;
  text-decoration: underline;
}
.member-profile-detail .member-profile-info-row .member-profile-link {
  color: #2374e7;
}
.member-profile-detail .member-profile-fax {
  margin-left: 5px;
}
.member-profile-detail .member-profile-fax::before {
  content: "-";
  margin-right: 5px;
}
.member-profile-detail .member-profile-content {
  padding-top: 21px;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}
.member-profile-detail .member-profile-content > h2 {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 12px;
  color: #0a6b40;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.member-profile-detail .member-profile-content > h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 51px;
  height: 2px;
  background: #ed1c24;
}
.member-profile-detail .member-profile-content p {
  margin: 0 0 10px;
}
.member-profile-detail .member-profile-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}
.member-profile-detail .member-profile-content ul,
.member-profile-detail .member-profile-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.member-profile-detail .member-profile-content a {
  color: #2374e7;
}
.member-profile-detail .member-profile-description {
  margin-bottom: 18px;
}
.member-profile-detail .member-related {
  padding-top: 38px;
}
@media (max-width: 767px) {
  .member-profile-detail .member-related {
    padding-top: 10px;
  }
}
.member-profile-detail .member-related > h2 {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 12px;
  color: #0a6b40;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.member-profile-detail .member-related > h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 51px;
  height: 2px;
  background: #ed1c24;
}
.member-profile-detail .member-related-slider {
  margin: 0 -2px;
}
.member-profile-detail .member-related-slider .owl-stage {
  display: flex;
  padding: 10px 0 0;
}
.member-profile-detail .member-related-slider .owl-item {
  padding-bottom: 5px;
}
.member-profile-detail .member-related-slider .member-slide {
  height: 100%;
}
.member-profile-detail .member-related-slider .hoivien-card {
  padding: 20px 18px 24px;
  border: 1px solid #d8e6e1;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .member-profile-detail .member-related-slider .hoivien-card {
    padding: 10px;
  }
}
.member-profile-detail .member-related-slider .card-logo {
  aspect-ratio: 201/111;
}
.member-profile-detail .member-related-slider .card-logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-profile-detail .member-related-slider .card-divider {
  width: 36px;
  height: 2px;
  margin: 5px 0 12px;
}
.member-profile-detail .member-related-slider .card-company-name {
  min-height: 48px;
}
.member-profile-detail .member-related-slider .card-company-name a {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .member-profile-detail .member-related-slider .card-company-name a {
    font-size: var(--fs-base);
  }
}
.member-profile-detail .member-related-slider .card-website {
  margin: 0 0 12px;
  color: #2374e7;
  font-size: 16px;
}
.member-profile-detail .member-related-slider .card-website span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.member-profile-detail .member-related-slider .btn-card-action {
  width: 164px;
  height: 36px;
  padding: 5px 12px;
  border-color: #99c8b8;
  border-radius: 50px;
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .member-profile-detail .member-related-slider .btn-card-action {
    width: 100%;
    font-weight: 400;
  }
}
.member-profile-detail .member-related-slider .member-swiper-prev,
.member-profile-detail .member-related-slider .member-swiper-next {
  border: 1px solid #0a6b40;
  color: #0a6b40 !important;
  cursor: pointer;
}
.member-profile-detail .member-related-slider .member-swiper-prev {
  left: -21px !important;
}
@media (max-width: 767px) {
  .member-profile-detail .member-related-slider .member-swiper-prev {
    left: 10px !important;
  }
}
.member-profile-detail .member-related-slider .member-swiper-next {
  right: -21px !important;
}
@media (max-width: 767px) {
  .member-profile-detail .member-related-slider .member-swiper-next {
    right: 10px !important;
  }
}
.member-profile-detail .member-related-slider .member-swiper-prev i,
.member-profile-detail .member-related-slider .member-swiper-next i {
  color: #0a6b40;
}

@media (max-width: 991px) {
  .member-profile-detail .member-profile-summary {
    grid-template-columns: minmax(220px, 36%) minmax(0, 1fr);
    gap: 28px;
  }
  .member-profile-detail .member-profile-info-row {
    grid-template-columns: 122px minmax(0, 1fr);
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .member-profile-detail .member-profile-summary {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 10px;
  }
  .member-profile-detail .member-profile-logo {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 10px;
  }
  .member-profile-detail .member-profile-meta h1 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .member-profile-detail .member-profile-content {
    font-size: 15px;
    padding-top: 10px;
  }
  .member-profile-detail .member-profile-content > h2 {
    font-size: 20px;
  }
  .member-profile-detail .member-related > h2 {
    font-size: 20px;
  }
  .member-profile-detail .member-related-slider {
    margin: 0 0;
  }
}
@media (max-width: 767px) {
  .member-profile-detail .member-profile-info-row {
    margin-bottom: 10px;
    min-height: initial;
  }
  .member-profile-detail .member-profile-fax {
    display: block;
    margin: 3px 0 0;
  }
  .member-profile-detail .member-profile-fax::before {
    content: none;
  }
}
.introduce-main-content {
  padding-bottom: 64px;
  font-family: "Be Vietnam Pro", sans-serif;
}
@media (max-width: 767px) {
  .introduce-main-content {
    padding-bottom: 15px;
  }
}
.introduce-main-content .introduce-layout-grid {
  grid-template-columns: minmax(0, 1007px) 330px;
  gap: 41px;
  align-items: start;
}

.introduce-article {
  min-width: 0;
  color: #333;
}
.introduce-article .introduce-page-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 35px;
}
.introduce-article .introduce-page-title {
  position: relative;
  margin: 0;
  padding-bottom: 11px;
  color: var(--color-primary-green);
  font: 700 40px/1.2 "Roboto Condensed", sans-serif;
}
.introduce-article .introduce-page-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 51px;
  height: 3px;
  background: #c7202c;
  content: "";
}
.introduce-article .introduce-tabs.is-sticky {
  position: fixed;
  z-index: 900;
  padding: 8px;
  border: 1px solid rgba(20, 121, 81, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(20, 70, 50, 0.14);
  animation: introduce-tabs-in 0.25s ease-out both;
  backdrop-filter: blur(8px);
}
.introduce-article .introduce-tabs ul {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.introduce-article .introduce-tabs a {
  display: flex;
  min-width: 113px;
  height: 40px;
  padding: 0 19px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bed8ce;
  border-radius: 22px;
  color: var(--color-primary-green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.introduce-article .introduce-tabs a.active, .introduce-article .introduce-tabs a:hover, .introduce-article .introduce-tabs a:focus-visible {
  border-color: transparent;
  background: linear-gradient(180deg, #259f73 0%, #11794f 100%);
  color: #fff;
}
.introduce-article .introduce-tabs li:first-child a {
  min-width: 135px;
}
.introduce-article .introduce-tabs li:last-child a {
  min-width: 170px;
}
.introduce-article .introduce-section {
  scroll-margin-top: 120px;
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .introduce-article .introduce-section {
    margin-bottom: 10px;
  }
}
.introduce-article .introduce-section:last-child {
  border-bottom: none;
}
.introduce-article .introduce-section img {
  max-width: 100%;
  height: initial;
}
.introduce-article .introduce-section > h2 {
  margin: 0 0 22px;
  color: var(--color-primary-green);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}
.introduce-article .introduce-section p,
.introduce-article .introduce-section li {
  font-size: 16px;
  line-height: 1.5;
}
.introduce-article .introduce-section p {
  margin: 0 0 16px;
  text-align: justify;
}
.introduce-article .introduce-about h3 {
  margin: 23px 0 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.introduce-article .introduce-about .introduce-goals {
  margin: 0;
  padding: 0;
  list-style: none;
}
.introduce-article .introduce-about .introduce-goals li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 16px;
  text-align: justify;
}
.introduce-article .introduce-about .introduce-goals li::before {
  position: absolute;
  left: 0;
  content: "-";
}
.introduce-article .introduce-personnel {
  margin-top: 35px;
  padding-top: 34px;
  border-top: 1px solid #dedede;
}
.introduce-article .chairman-block {
  display: flex;
  width: fit-content;
  margin: 3px auto 40px;
  align-items: center;
  gap: 28px;
}
.introduce-article .chairman-block > img {
  width: 212px;
  height: 308px;
  border-radius: 22px;
  object-fit: cover;
}
.introduce-article .chairman-block .chairman-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.introduce-article .chairman-block .chairman-info strong {
  color: var(--color-primary-green);
  font-size: 22px;
  line-height: 1.35;
  text-transform: uppercase;
}
.introduce-article .chairman-block .chairman-info span {
  font-size: 16px;
}
.introduce-article .personnel-group {
  margin-top: 32px;
}
.introduce-article .personnel-group > h3 {
  position: relative;
  margin: 0 0 24px;
  color: var(--color-primary-green);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}
.introduce-article .personnel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 16px;
}
.introduce-article .personnel-card {
  display: flex;
  min-height: 92px;
  padding: 14px 16px;
  align-items: center;
  gap: 13px;
  border: 1px solid #65ae91;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(20, 121, 81, 0.09);
}
.introduce-article .personnel-icon {
  display: flex;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-green);
}
.introduce-article .personnel-icon img {
  width: 20px;
  height: 25px;
}
.introduce-article .personnel-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}
.introduce-article .personnel-info strong {
  color: var(--color-primary-green);
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
}
.introduce-article .personnel-info small {
  color: #333;
  font-size: 12px;
  line-height: 1.4;
}
.introduce-article .personnel-group-single .personnel-card {
  width: min(100%, 480px);
  margin: 0 auto;
}
.introduce-article .introduce-documents > p:last-of-type {
  margin-top: 20px;
}
.introduce-article .introduce-documents .document-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}
.introduce-article .introduce-documents .document-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-primary-green);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.introduce-article .introduce-documents .document-item img {
  width: 171px;
  max-width: 100%;
  height: 163px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.introduce-article .introduce-documents .document-item:hover img {
  transform: translateY(-4px);
}

.introduce-tabs-placeholder {
  display: none;
  flex: 0 0 auto;
}
.introduce-tabs-placeholder.is-visible {
  display: block;
}

@keyframes introduce-tabs-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.introduce-sidebar .introduce-sidebar-section {
  margin-bottom: 37px;
}
@media (max-width: 767px) {
  .introduce-sidebar .introduce-sidebar-section {
    margin-bottom: 10px;
  }
}
.introduce-sidebar .introduce-sidebar-title {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 15px;
}
.introduce-sidebar .introduce-sidebar-title h2 {
  flex: 0 0 auto;
  margin: 0;
  color: #D92620;
  font: 700 25px/1.2 "Roboto Condensed", sans-serif;
  text-transform: uppercase;
}
.introduce-sidebar .introduce-sidebar-title span {
  width: 100%;
  height: 1px;
  background: #d7d7d7;
}
.introduce-sidebar .introduce-latest-list {
  border-radius: 10px;
  border: 1px solid #DFDFDF;
  padding: 20px;
}
@media (max-width: 767px) {
  .introduce-sidebar .introduce-latest-list {
    padding: 10px;
  }
}
.introduce-sidebar .introduce-latest-item {
  display: flex;
  padding: 14px 0;
  align-items: flex-start;
  gap: 11px;
  border-bottom: 1px solid #e3e3e3;
}
.introduce-sidebar .introduce-latest-item:first-child {
  padding-top: 0;
}
.introduce-sidebar .introduce-latest-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.introduce-sidebar .introduce-latest-item > img {
  width: 7px;
  height: 12px;
  margin-top: 5px;
  flex: 0 0 auto;
}
.introduce-sidebar .introduce-latest-item h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .introduce-sidebar .introduce-latest-item h3 {
    font-weight: 400;
  }
}
.introduce-sidebar .introduce-latest-item a {
  color: #333;
  text-decoration: none;
}
.introduce-sidebar .introduce-latest-item a:hover {
  color: var(--color-primary-green);
}
.introduce-sidebar .introduce-advertising {
  margin-top: 39px;
}
@media (max-width: 767px) {
  .introduce-sidebar .introduce-advertising {
    margin-top: 10px;
  }
}
.introduce-sidebar .introduce-ad-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.introduce-sidebar .introduce-ad-list a,
.introduce-sidebar .introduce-ad-list img {
  display: block;
  width: 100%;
}
.introduce-sidebar .introduce-ad-list img {
  height: auto;
  border-radius: 6px;
}

@media (max-width: 1199px) {
  .introduce-main-content .introduce-layout-grid {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 28px;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .introduce-main-content .introduce-layout-grid {
    gap: 10px;
  }
}
@media (max-width: 1199px) {
  .introduce-article .introduce-page-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .introduce-article .introduce-page-header {
    gap: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1199px) {
  .introduce-article .introduce-tabs ul {
    flex-wrap: wrap;
  }
  .introduce-article .personnel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .introduce-article .introduce-documents .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .introduce-main-content .introduce-layout-grid {
    grid-template-columns: 1fr;
  }
  .introduce-sidebar {
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .introduce-article .introduce-page-title {
    font-size: 20px;
  }
  .introduce-article .introduce-tabs {
    width: 100%;
  }
  .introduce-article .introduce-tabs ul {
    gap: 8px;
    display: flex;
  }
  .introduce-article .introduce-tabs li {
    flex: 1 1 calc(50% - 8px);
    white-space: nowrap;
    flex-basis: initial;
  }
  .introduce-article .introduce-tabs a {
    min-width: 0 !important;
    height: 35px;
    font-weight: 400;
  }
  .introduce-article .introduce-section > h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .introduce-article .introduce-section p,
  .introduce-article .introduce-section li {
    font-size: 15px;
  }
  .introduce-article .personnel-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .introduce-article .chairman-block {
    flex-direction: column;
    text-align: center;
  }
  .introduce-article .introduce-documents .document-grid {
    grid-template-columns: 1fr;
  }
}
/* Search results — compact, readable layout inspired by web search engines. */
.search-page {
  padding: 42px 0 72px;
  font-family: var(--font-main);
}
.search-page .container {
  width: auto;
  max-width: 900px;
  margin-left: max(24px, (100vw - 1380px) / 2);
  margin-right: 24px;
}
.search-page .search-page-heading {
  max-width: 760px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dadce0;
}
.search-page .title-module {
  margin: 0 0 7px;
  color: #202124;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
}
.search-page .search-result-summary {
  margin: 0;
  color: #70757a;
  font-size: 14px;
  line-height: 1.5;
}
.search-page .result-search {
  max-width: 760px;
}
.search-page .search-result-item {
  display: flex;
  padding: 0 0 34px;
  align-items: flex-start;
  gap: 20px;
  border: 0;
}
.search-page .search-result-item:last-child {
  padding-bottom: 0;
}
.search-page .search-result-content {
  min-width: 0;
  flex: 1 1 auto;
  padding: 0;
}
.search-page .search-result-source {
  display: flex;
  min-width: 0;
  margin-bottom: 8px;
  align-items: center;
  gap: 10px;
}
.search-page .search-result-source > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.search-page .search-result-source .module {
  overflow: hidden;
  color: #202124;
  font-size: 14px;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-page .search-result-favicon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dadce0;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary-green);
  font-size: 12px;
  font-weight: 700;
}
.search-page .search-result-url {
  overflow: hidden;
  color: #4d5156;
  font-size: 12px;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-page .item-name {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}
.search-page .item-name a {
  display: -webkit-box;
  overflow: hidden;
  color: #1a0dab;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.search-page .item-name a:hover {
  text-decoration: underline;
}
.search-page .item-name a:visited {
  color: #681da8;
}
.search-page ._desc {
  display: -webkit-box;
  overflow: hidden;
  color: #4d5156;
  font-size: 14px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.search-page ._desc time {
  color: #70757a;
  font-style: normal;
}
.search-page ._desc p {
  display: inline;
  margin: 0;
}
.search-page .search-result-thumbnail {
  display: block;
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  overflow: hidden;
  margin-top: 38px;
  border: 0;
  border-radius: 8px;
  background: #f1f3f4;
}
.search-page .search-result-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-page .search-empty-state {
  padding: 28px;
  border: 1px solid #dadce0;
  border-radius: 12px;
  color: #4d5156;
  font-size: 15px;
  text-align: center;
}

@media (max-width: 767px) {
  .search-page {
    padding: 24px 0 48px;
  }
  .search-page .container {
    max-width: none;
    margin: 0;
  }
  .search-page .search-page-heading {
    margin-bottom: 24px;
  }
  .search-page .title-module {
    font-size: 22px;
  }
  .search-page .search-result-item {
    gap: 14px;
    padding-bottom: 30px;
  }
  .search-page .search-result-thumbnail {
    width: 92px;
    height: 92px;
    flex-basis: 92px;
  }
}
@media (max-width: 479px) {
  .search-page .search-result-thumbnail {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }
  .search-page .item-name {
    font-size: 18px;
  }
  .search-page ._desc {
    -webkit-line-clamp: 2;
  }
}
/* Contact page — Figma nodes 259:220, 259:221, 259:222 */
.contact-article .contact-office-info {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 25px;
  align-items: start;
  margin-top: 25px;
}
.contact-article .contact-office-logo {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.contact-article .contact-office-logo img {
  max-width: 100%;
  max-height: 100%;
  width: initial;
  height: initial;
  display: block;
  object-fit: contain;
}
.contact-article .contact-office-details {
  padding-top: 1px;
}
.contact-article .contact-office-details h2 {
  margin: 0 0 20px;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}
.contact-article .contact-office-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-article .contact-office-details li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  min-height: 30px;
  color: #333;
  font-size: 16px;
  line-height: 30px;
}
.contact-article .contact-office-details li > i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  font-size: 17px;
}
.contact-article .contact-office-details li strong {
  font-weight: 700;
}
.contact-article .contact-office-details li a {
  color: inherit;
  text-decoration: none;
}
.contact-article .contact-office-details li a:hover {
  color: #0a6b40;
  text-decoration: underline;
}
.contact-article .contact-office-fax::before {
  content: "-";
  margin: 0 5px;
}
.contact-article .contact-form-card {
  margin-top: 42px;
  padding: 19px 20px 36px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.contact-article .contact-form-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px 17px;
}
.contact-article .contact-field {
  position: relative;
  min-width: 0;
  height: 47px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f2f2f2;
  border-radius: 6px;
}
.contact-article .contact-field .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-article .contact-field > i {
  width: 20px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  color: #211714;
  font-size: 18px;
}
.contact-article .contact-field input,
.contact-article .contact-field textarea {
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  color: #211714;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  line-height: 21px;
}
.contact-article .contact-field input::placeholder,
.contact-article .contact-field textarea::placeholder {
  color: #211714;
  opacity: 1;
}
.contact-article .contact-field:focus-within {
  box-shadow: 0 0 0 2px rgba(10, 107, 64, 0.22);
}
.contact-article .contact-field label.error {
  position: absolute;
  top: 100%;
  left: 18px;
  z-index: 2;
  color: #d92620;
  font-size: 13px;
  line-height: 16px;
}
.contact-article .contact-field-message {
  grid-column: 1/-1;
  height: 125px;
  align-items: flex-start;
  padding-top: 14px;
  padding-bottom: 14px;
}
.contact-article .contact-field-message > i {
  margin-top: 1px;
}
.contact-article .contact-field-message textarea {
  resize: vertical;
}
.contact-article .submit-contact {
  grid-column: 1/-1;
  width: 163px;
  height: 45px;
  padding: 10px 20px 10px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #fff;
  background: #d92620;
  border: 1px solid #e60012;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  cursor: pointer;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.contact-article .submit-contact:hover, .contact-article .submit-contact:focus-visible {
  background: #b91f1a;
  transform: translateY(-1px);
}
.contact-article .submit-contact.is-submitting, .contact-article .submit-contact:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.contact-article .map-google {
  height: 483px;
  margin-top: 23px;
  overflow: hidden;
  background: #fff;
  border: 5px solid #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.contact-article .map-google iframe,
.contact-article .map-google embed,
.contact-article .map-google object {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0 !important;
}

@media (max-width: 767px) {
  .contact-article .contact-office-info {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 20px;
  }
  .contact-article .contact-office-logo {
    width: 140px;
    height: 140px;
    padding: 18px;
  }
  .contact-article .contact-office-logo img {
    width: 100%;
    height: 100%;
  }
  .contact-article .contact-office-details h2 {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 10px;
  }
  .contact-article .contact-office-details li {
    font-size: 14px;
    line-height: 24px;
  }
  .contact-article .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-article .contact-field-message,
  .contact-article .submit-contact {
    grid-column: 1;
  }
  .contact-article .map-google {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .contact-article .contact-office-info {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }
  .contact-article .contact-office-logo {
    width: 176px;
    height: 177px;
    display: none;
  }
  .contact-article .contact-office-fax {
    display: block;
  }
  .contact-article .contact-office-fax::before {
    content: none;
  }
  .contact-article .contact-form-card {
    margin-top: 10px;
    padding: 10px;
  }
  .contact-article .contact-field {
    padding: 0 10px;
  }
  .contact-article .contact-field.contact-field-message {
    padding: 10px;
  }
  .contact-article .map-google {
    height: 330px;
  }
}
.detail-page-title {
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: 700;
  margin-bottom: 20px;
}

.pub-date-detail {
  font-size: 14px;
  color: #6B7A8D;
  margin-bottom: 20px;
}

.detail-share-bar {
  margin-top: 30px;
  border-top: 1px solid #D9D9D9;
}

.detail-share-divider {
  display: block;
  width: 100%;
  height: 1px;
}

.detail-share-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 51px;
  padding: 0;
}

.detail-share-socials,
.detail-share-actions {
  display: flex;
  align-items: center;
}

.detail-share-socials {
  gap: 10px;
  padding-top: 15px;
}

.detail-share-label {
  margin-right: 0;
  color: #333;
  font: 500 16px/30px var(--font-main);
  text-transform: uppercase;
}

.detail-share-social {
  position: relative;
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border: 1px solid #4A4A4A;
  border-radius: 35px;
}

.detail-share-circle {
  position: absolute;
  inset: 0;
  width: 35px;
  height: 35px;
}

.detail-share-facebook {
  width: 8px;
  height: 18px;
}

.detail-share-instagram {
  width: 18px;
  height: 18px;
}

.detail-share-actions {
  gap: 19px;
}

.detail-share-actions a,
.detail-share-actions button {
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.detail-share-email {
  width: 26px;
  height: 18px;
}

.detail-share-print {
  width: 20px;
  height: 18px;
}

.detail-share-social,
.detail-share-actions a,
.detail-share-actions button {
  transition: opacity 0.2s ease;
}
.detail-share-social:hover, .detail-share-social:focus-visible,
.detail-share-actions a:hover,
.detail-share-actions a:focus-visible,
.detail-share-actions button:hover,
.detail-share-actions button:focus-visible {
  opacity: 0.7;
}

@media (max-width: 575px) {
  .detail-share-row {
    padding-left: 0;
  }
  .detail-share-label {
    margin-right: 4px;
    font-size: 14px;
  }
  .detail-share-actions {
    gap: 14px;
  }
}
@media print {
  .detail-share-bar {
    display: none;
  }
}
/* Member listing — Figma nodes 258:214 and 258:215 */
.member-list-page .introduce-page-header {
  margin-bottom: 24px;
}

.member-list-tabs {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.member-list-tab-track {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.member-list-tab-track::-webkit-scrollbar {
  display: none;
}

.member-list-tab {
  display: inline-flex;
  min-width: max-content;
  height: 42px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid #BED8CE;
  border-radius: 24px;
  background: #fff;
  color: #006B4F;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.member-list-tab:hover, .member-list-tab:focus-visible, .member-list-tab.active {
  border-color: transparent;
  background: linear-gradient(180deg, #259F73 0%, #11794F 100%);
  color: #fff;
}

.member-list-tab-nav {
  display: inline-flex;
  width: 18px;
  height: 42px;
  padding: 0;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #707070;
  cursor: pointer;
}
.member-list-tab-nav i {
  font-size: 19px;
}
.member-list-tab-nav:hover, .member-list-tab-nav:focus-visible {
  color: var(--color-primary-green);
}

.member-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px 16px;
  margin-top: 31px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .member-list-grid {
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.member-list-grid .hoivien-card {
  width: 100%;
  padding: 20px 18px 25px;
  border: 1px solid #D8E6E1;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .member-list-grid .hoivien-card {
    padding: 10px;
  }
}
.member-list-grid .card-logo {
  aspect-ratio: 201/111;
}
.member-list-grid .card-logo a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.member-list-grid .card-divider {
  width: 36px;
  height: 1px;
  margin: 4px 0 12px;
}
.member-list-grid .card-company-name {
  min-height: 48px;
  font-size: 16px;
  line-height: 24px;
}
.member-list-grid .card-website {
  min-height: 20px;
  margin-bottom: 11px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .member-list-grid .card-website {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.member-list-grid .btn-card-action {
  display: inline-flex;
  width: 164px;
  height: 36px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-color: #99C8B8;
  border-radius: 50px;
  font-size: 15px;
}
@media (max-width: 767px) {
  .member-list-grid .btn-card-action {
    font-size: 14px;
    width: 100%;
  }
}

.member-list-pagination {
  margin-top: 0;
}

@media (max-width: 1199px) {
  .member-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .member-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .member-list-page .introduce-page-header {
    margin-bottom: 10px;
  }
  .member-list-tabs {
    gap: 6px;
  }
  .member-list-tab {
    height: 35px;
    padding: 0 15px;
    font-size: 14px;
  }
  .member-list-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
  }
}
/* -------------------------------------------------------------
   COMMON STYLES
------------------------------------------------------------- */
.container {
  width: 1380px;
  max-width: 95%;
  margin: 0 auto;
}

.btn-more {
  display: inline-block;
  background-color: var(--color-primary-green);
  color: #fff;
  padding: 10px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s;
}

.btn-more:hover {
  background-color: #075231;
}

/* -------------------------------------------------------------
   MOBILE MENU TOGGLE & OFF-CANVAS DRAWER (DÀNH CHO MOBILE & IPAD)
------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #E5E7EB;
  font-size: 20px;
  color: var(--color-primary-green);
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle:hover {
  background-color: #E8F5EE;
  color: #075231;
}

/* OVERLAY BACKDROP */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* OFF-CANVAS DRAWER */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 310px;
  max-width: 85vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 10001;
  box-shadow: -6px 0 25px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-drawer.active {
  transform: translateX(-340px);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E5E7EB;
  background-color: #F8FAF9;
}

.drawer-logo img {
  height: 44px;
  width: auto;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  font-size: 22px;
  color: #6B7280;
  cursor: pointer;
  padding: 6px;
  transition: color 0.2s;
}

.drawer-close-btn:hover {
  color: var(--color-primary-red);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.mobile-nav-list > li {
  border-bottom: 1px solid #F3F4F6;
}

.mobile-nav-list > li > a {
  display: block;
  padding: 13px 20px;
  color: #1F2937;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s, background-color 0.2s;
}

.mobile-nav-list > li.active > a,
.mobile-nav-list > li > a:hover {
  color: var(--color-primary-green);
  background-color: #F4F9F6;
}

.has-submenu .submenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 16px;
}

.has-submenu .submenu-header a {
  flex: 1;
  padding: 13px 20px;
  color: #1F2937;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.submenu-toggle {
  font-size: 16px;
  color: #6B7280;
  cursor: pointer;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  transition: transform 0.25s ease, color 0.2s;
}

.has-submenu.open .submenu-toggle {
  transform: rotate(180deg);
  color: var(--color-primary-green);
}

.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #F9FAFB;
  display: none;
}

.has-submenu.open .mobile-submenu {
  display: block;
}

.mobile-submenu li a {
  display: block;
  padding: 10px 20px 10px 36px;
  font-size: 14px;
  color: #4B5563;
  text-decoration: none;
  border-bottom: 1px dashed #E5E7EB;
  transition: color 0.2s, background-color 0.2s;
}

.mobile-submenu li a:hover {
  color: var(--color-primary-green);
  background-color: #F0FDF4;
}

.mobile-submenu li.active a {
  color: var(--color-primary-green);
  background-color: #F0FDF4;
}

.mobile-drawer-footer {
  padding: 20px;
  border-top: 1px solid #E5E7EB;
  background-color: #F8FAF9;
}

.mobile-topbar-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-topbar-links .topbar-link {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-accordion-icon {
  display: none;
}

/* -------------------------------------------------------------
   RESPONSIVE BREAKPOINTS (CHO IPAD & MOBILE)
------------------------------------------------------------- */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 14px;
  }
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .site-header {
    padding: 10px 16px;
  }
  .header-container {
    align-items: center;
  }
  .header-brand-logo {
    padding-right: 15px;
  }
  .header-brand-logo img {
    height: 50px;
  }
  .header-right-content {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }
  .header-topbar {
    padding-bottom: 0;
    gap: 10px;
  }
  .header-main-nav {
    padding-top: 0;
    justify-content: flex-end;
    gap: 10px;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .nav-menu {
    display: none !important;
  }
  .main-content-grid, .footer-4col-grid, .page-layout-grid, .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .member-4col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-news-card-box, .activities-2col-layout, .sanpham-layout, .giaothuong-inner-grid, .form-row-2col {
    grid-template-columns: 1fr;
  }
  .featured-news-card-box .news-content-side, .page-article-body, .contact-form-block, .news-detail-article {
    padding: 10px;
  }
  .contact-map-block {
    padding: 10px;
  }
  .google-map-container {
    height: 350px;
  }
  .sidebar-ad-marquee {
    height: 500px;
  }
  .related-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-detail-title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 8px 12px;
  }
  .header-brand-logo {
    padding-right: 8px;
  }
  .header-brand-logo img {
    height: 44px;
  }
  .header-topbar .topbar-link:not(.language-selector) {
    display: none;
  }
  .header-right-content {
    gap: 8px;
  }
  .header-topbar {
    gap: 6px;
  }
  .header-main-nav {
    gap: 8px;
  }
  .selected-lang span {
    font-size: 13px;
  }
  .selected-lang {
    padding: 3px 4px;
  }
  .hero-swiper .swiper-slide img {
    min-height: unset;
    height: auto;
    object-fit: contain;
  }
  .news-list-item-card {
    flex-direction: column;
  }
  .news-list-item-card .item-img-box {
    width: 100%;
    height: 180px;
  }
  /* FOOTER ACCORDION COLLAPSIBLE ON MOBILE */
  .footer-collapsible .footer-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    padding-bottom: 8px;
    margin-bottom: 0;
    border-bottom: 1px solid #E5E7EB;
  }
  .footer-collapsible .footer-title:after {
    display: none;
  }
  .footer-collapsible .footer-accordion-icon {
    display: inline-block;
    font-size: 16px;
    color: #6B7280;
    transition: transform 0.25s ease, color 0.2s;
  }
  .footer-collapsible.open .footer-accordion-icon {
    transform: rotate(180deg);
    color: var(--color-primary-green);
  }
  .footer-collapsible .footer-nav-list {
    display: none;
    padding-top: 12px;
    padding-bottom: 10px;
  }
  .footer-collapsible.open .footer-nav-list {
    display: block;
    animation: fadeInDown 0.25s ease;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 114px;
  padding: 0;
  background: #fff;
  box-shadow: none;
  transition: box-shadow 0.25s ease;
  font-family: "Be Vietnam Pro", sans-serif;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.site-header > .container {
  width: 1380px;
  max-width: calc(100% - 40px);
  padding: 0;
}
.site-header .header-container {
  display: flex;
  height: 114px;
  margin: 0 auto;
  align-items: center;
  justify-content: flex-start;
}
.site-header .header-brand-logo {
  display: flex;
  flex: 0 0 101px;
  width: 101px;
  height: 104px;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.site-header .header-brand-logo img {
  display: block;
  width: 101px;
  height: 104px;
  object-fit: contain;
}
.site-header .header-right-content {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  height: 114px;
  margin-left: 89px;
  flex-direction: column;
  justify-content: flex-start;
}
.site-header .header-topbar {
  display: flex;
  height: 57px;
  padding: 0 4px 0 0;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
  box-sizing: border-box;
}
.site-header .topbar-link {
  display: inline-flex;
  padding: 0;
  align-items: center;
  gap: 10px;
  color: #333;
  font: 500 16px/24px "Be Vietnam Pro", sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.site-header .topbar-link:hover, .site-header .topbar-link:focus-visible {
  color: #0a6b40;
}
.site-header .topbar-link > img {
  display: block;
  flex: 0 0 19px;
  width: 19px;
  height: 13px;
  object-fit: contain;
}
.site-header .member-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}
.site-header .member-icon img {
  position: absolute;
  left: 0;
  display: block;
  width: 16px;
}
.site-header .member-icon img:first-child {
  top: 0;
  height: 8px;
}
.site-header .member-icon img:last-child {
  bottom: 0;
  height: 7px;
}
.site-header .language-selector {
  position: relative;
  color: #333;
  font: 500 16px/24px "Be Vietnam Pro", sans-serif;
}
.site-header .selected-lang {
  display: flex;
  min-height: 24px;
  padding: 0;
  border: 0;
  align-items: center;
  gap: 11px;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.site-header .selected-lang:hover, .site-header .selected-lang:focus-visible {
  background: transparent;
  color: #0a6b40;
}
.site-header .selected-lang #currentFlag {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 14px;
  object-fit: cover;
}
.site-header .selected-lang .arrow-icon {
  display: block;
  width: 8px;
  height: 4px;
  margin-left: 8px;
  transition: transform 0.2s ease;
}
.site-header .language-selector.open .arrow-icon {
  transform: rotate(180deg);
}
.site-header .lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 1100;
  display: none;
  min-width: 148px;
  margin: 0;
  padding: 6px 0;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  list-style: none;
}
.site-header .lang-dropdown .lang-option {
  display: flex;
  padding: 8px 14px;
  align-items: center;
  gap: 10px;
  color: #333;
  font: 500 14px/20px "Be Vietnam Pro", sans-serif;
  text-decoration: none;
}
.site-header .lang-dropdown .lang-option:hover, .site-header .lang-dropdown .lang-option.active {
  background: #f4f9f6;
  color: #0a6b40;
}
.site-header .language-selector.open .lang-dropdown {
  display: block;
}
.site-header .header-main-nav {
  display: flex;
  height: 57px;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 27px;
}
.site-header .nav-menu {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
}
.site-header .nav-menu > li {
  position: relative;
}
.site-header .nav-menu > li > a {
  display: block;
  padding: 0;
  color: #333;
  font: 600 16px/24px "Be Vietnam Pro", sans-serif;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.site-header .nav-menu > li.active > a, .site-header .nav-menu > li:hover > a,
.site-header .nav-menu > li > a:focus-visible {
  color: #0a6b40;
}
.site-header .nav-menu > li:hover > .dropdown-menu, .site-header .nav-menu > li:focus-within > .dropdown-menu {
  display: block;
}
.site-header .nav-menu .dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -18px;
  z-index: 100;
  display: none;
  width: max-content;
  min-width: 185px;
  max-width: 300px;
  margin: 0;
  padding: 0;
  border: 1px solid #ededed;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  list-style: none;
}
.site-header .nav-menu .dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 17px;
}
.site-header .nav-menu .dropdown-menu > li + li {
  border-top: 1px solid #ededed;
}
.site-header .nav-menu .dropdown-menu > li > a {
  display: flex;
  min-height: 24px;
  padding: 8px 14px;
  align-items: center;
  color: #333;
  font: 400 16px/24px "Be Vietnam Pro", sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.site-header .nav-menu .dropdown-menu > li:hover > a, .site-header .nav-menu .dropdown-menu > li.active > a,
.site-header .nav-menu .dropdown-menu > li > a:focus-visible {
  background: #f4f9f6;
  color: #0a6b40;
}
.site-header .search-trigger-wrapper {
  position: relative;
  display: flex;
  flex: 0 0 20px;
  align-items: center;
}
.site-header .search-trigger {
  display: flex;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
}
.site-header .search-trigger:hover, .site-header .search-trigger:focus-visible {
  background: transparent;
}
.site-header .search-trigger img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.site-header .search-box-popup {
  top: calc(100% + 16px);
  right: 0;
  margin: 0;
}
.site-header .search-box-popup .search-form-inline {
  display: flex;
  width: 100%;
  align-items: center;
}
.site-header .mobile-menu-toggle {
  display: none;
}

@media (max-width: 1599px) {
  .site-header .header-right-content {
    margin-left: 56px;
  }
  .site-header .nav-menu {
    gap: 14px;
  }
  .site-header .nav-menu > li > a {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .site-header {
    min-height: 76px;
  }
  .site-header .header-container {
    height: 76px;
  }
  .site-header .header-brand-logo,
  .site-header .header-brand-logo img {
    width: 64px;
    height: 66px;
    flex-basis: 64px;
  }
  .site-header .header-right-content {
    height: 76px;
    margin-left: 24px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
  }
  .site-header .header-topbar,
  .site-header .header-main-nav {
    height: auto;
    padding: 0;
  }
  .site-header .nav-menu {
    display: none !important;
  }
  .site-header .mobile-menu-toggle {
    display: inline-flex;
  }
  .site-header .search-box-popup {
    top: calc(100% + 16px);
  }
}
@media (max-width: 767px) {
  .site-header {
    min-height: 70px;
  }
  .site-header > .container {
    max-width: calc(100% - 20px);
    height: 65px;
  }
  .site-header .header-brand-logo {
    height: 60px;
    width: initial;
    flex: initial;
  }
  .site-header .header-right-content {
    margin-left: 12px;
    gap: 8px;
    height: 60px;
  }
  .site-header .header-topbar {
    gap: 12px;
  }
  .site-header .header-topbar > a.topbar-link {
    display: none;
  }
  .site-header .selected-lang {
    gap: 7px;
  }
  .site-header .selected-lang .arrow-icon {
    margin-left: 0;
  }
}
/* Figma hero slider — nodes 193:204 and 195:205 */
.hero-slider-section {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #e7f6f8;
}
.hero-slider-section .hero-swiper {
  width: 100%;
  aspect-ratio: 1920/638;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-slider-section .hero-swiper {
    aspect-ratio: 430/300;
  }
}
.hero-slider-section .swiper-wrapper,
.hero-slider-section .swiper-slide,
.hero-slider-section .hero-media {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-slider-section .swiper-slide {
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-slider-section .swiper-slide {
    aspect-ratio: 430/300;
  }
}
.hero-slider-section .swiper-slide .hero-media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}
.hero-slider-section .hero-content-shell {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 1380px;
  max-width: calc(100% - 40px);
  height: 100%;
  margin: 0 auto;
  pointer-events: none;
}
.hero-slider-section .hero-content {
  position: absolute;
  top: 18.2%;
  left: 6px;
  width: 692px;
  max-width: calc(52% - 6px);
  color: #4a4a4a;
  font-family: "Be Vietnam Pro", sans-serif;
  pointer-events: auto;
}
.hero-slider-section .hero-eyebrow {
  color: #d92620;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}
.hero-slider-section .hero-heading {
  width: 100%;
  margin: 18px 0 0;
  color: #0a6b40;
  font-size: 43px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-slider-section .hero-description {
  margin-top: 10px;
  color: #4a4a4a;
  font-size: 22px;
  font-weight: 400;
  line-height: 40px;
}
.hero-slider-section .hero-description p {
  margin: 0;
}
.hero-slider-section .hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 17px;
}
.hero-slider-section .hero-button {
  display: inline-flex;
  width: 210px;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid #d92620;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #d92620;
  font: 700 16px/24.83px "Wix Madefor Display", sans-serif;
  letter-spacing: 0.466px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  backdrop-filter: blur(5px);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hero-slider-section .hero-button img {
  display: block;
  flex: 0 0 7px;
  width: 7px !important;
  height: 16px;
  object-fit: contain;
}
.hero-slider-section .hero-button:hover, .hero-slider-section .hero-button:focus-visible {
  transform: translateY(-2px);
}
.hero-slider-section .hero-button-primary {
  background: #d92620;
  color: #fff;
}
.hero-slider-section .hero-button-primary:hover, .hero-slider-section .hero-button-primary:focus-visible {
  background: #b91f1a;
  color: #fff;
}
.hero-slider-section .hero-button-secondary:hover, .hero-slider-section .hero-button-secondary:focus-visible {
  background: #d92620;
  color: #fff;
}
.hero-slider-section .hero-button-secondary:hover img, .hero-slider-section .hero-button-secondary:focus-visible img {
  filter: brightness(0) invert(1);
}
.hero-slider-section .hero-pagination {
  right: 0;
  bottom: 25px !important;
  left: 0;
  z-index: 5;
  display: flex;
  width: auto;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.hero-slider-section .hero-pagination .owl-dot {
  width: 13px;
  height: 13px;
  margin: 0 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  box-sizing: border-box;
  padding: 0;
}
.hero-slider-section .hero-pagination .owl-dot:focus-visible {
  outline: 2px solid #d92620;
  outline-offset: 3px;
}
.hero-slider-section .hero-pagination .owl-dot.active {
  background: #fff;
}

@media (max-width: 1199px) {
  .hero-slider-section .hero-content {
    top: 14%;
    left: 0;
    width: 56%;
    max-width: 56%;
  }
  .hero-slider-section .hero-eyebrow {
    font-size: 15px;
    line-height: 20px;
  }
  .hero-slider-section .hero-heading {
    margin-top: 8px;
    font-size: clamp(25px, 3.7vw, 36px);
  }
  .hero-slider-section .hero-description {
    margin-top: 8px;
    font-size: 16px;
    line-height: 28px;
  }
  .hero-slider-section .hero-actions {
    margin-top: 18px;
    gap: 10px;
  }
  .hero-slider-section .hero-button {
    width: auto;
    min-width: 160px;
    height: 42px;
    padding: 8px 16px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .hero-slider-section .swiper-slide .hero-media > img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }
  .hero-slider-section .hero-pagination {
    bottom: 18px;
  }
  .hero-slider-section .hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    border-width: 1px;
  }
}
@media (max-width: 767px) {
  .hero-slider-section .swiper-slide .hero-media > img {
    object-position: right;
  }
  .hero-slider-section .hero-content-shell {
    max-width: calc(100% - 32px);
    display: none;
  }
  .hero-slider-section .hero-content {
    top: 50px;
    width: 100%;
    max-width: 100%;
  }
  .hero-slider-section .hero-eyebrow {
    font-size: 14px;
  }
  .hero-slider-section .hero-heading {
    max-width: 340px;
    font-size: 18px;
    line-height: 1.25;
  }
  .hero-slider-section .hero-description {
    max-width: 340px;
    margin-top: 16px;
    font-size: 15px;
    line-height: 25px;
  }
  .hero-slider-section .hero-actions {
    margin-top: 24px;
    flex-wrap: wrap;
  }
  .hero-slider-section .hero-button {
    min-width: 170px;
  }
  .hero-slider-section .hero-pagination {
    bottom: 10px;
  }
  .hero-slider-section .hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}

/*# sourceMappingURL=style.css.map */
