:root {
  --gradient-color: linear-gradient(90deg, #164969 0.5%, #0a2a3e 94.97%);
}
.nav > li > a{
  text-decoration: none;
}
a:where(:not(.wp-element-button)){
  text-decoration: none !important;
}
.header-bottom:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-color);
    height: 4px;
}
.header-bottom .nav-box>li.active>a {
	    background: var(--gradient-color);
    padding: 0px 24px;
    position: relative;
    border-radius: 10px 10px 0px 0px;
}
.slider-home .banner {
	height: calc(100vh - 165px) !important;
}

.slide-gt .is-selected {
  position: relative !important;
}
.mf-news-slider .news-slide-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.owl-item.center .news-slide-item {
  z-index: 2;
}

.owl-item:not(.center) .news-slide-item {
  opacity: 0.4;
  transform: scale(0.85);
}
.section-news .col {
  padding: 0;
}
.news-slide-thumb img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
.news-slide-content {
 width: 65%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(22, 73, 105, 0.8) 0.5%, rgba(10, 42, 62, 0.8) 94.97%);
    color: #fff;
    padding: 20px 25px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: none;
    transition: all 0.3s ease;
    min-height: 160px;
    font-family: 'Helvetica Neue', sans-serif;

}

/* Hiện content khi item là center */
.owl-item.center .news-slide-content {
  display: block;
}

/* Tiêu đề bài viết */
.news-slide-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
  line-height: 1.4;
  color: #fff;
}

/* Tóm tắt (nếu có) */
.news-slide-excerpt {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
}

/* Ngày đăng + nút */
.news-slide-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-top: 10px;
}

/* Ngày đăng */
.news-slide-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Nút xem thêm */
.news-slide-link {
  background: #fff;
  color: #d60000;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease;
  white-space: nowrap;
}

.news-slide-link:hover {
  background: #f5f5f5;
}
@media (max-width: 479px) {
  .news-slide-excerpt{
    display: none;
  }
  .news-slide-title{
    font-size: 12px;
  }
}


/* --- Layout cơ bản --- */
.projects-archive-title{
  color: var(--primary-color);
}
.projects-archive {
  max-width: 1650px;
  margin: 0 auto;
  padding: 60px 20px;
}
.project-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  overflow: hidden; /* để ẩn phần ảnh zoom vượt */
}
.project-item:last-child {
  margin-bottom: 0;
}
.project-item.layout-right .project-content {
  order: 1; padding-right: 40px;
}
.project-item.layout-right .project-image {
  order: 2;
}
.project-item.layout-left .project-image {
  order: 1;
}
.project-item.layout-left .project-content {
  order: 2; padding-left: 40px;
}

/* --- Nội dung text & underline effect --- */
.project-content {
  background: aliceblue;
  padding: 30px;
  flex: 1;
  position: relative;
  padding-bottom: 10px; /* chừa chỗ underline */
  transition: color .3s;
}
.project-title {
  margin: 0 0 16px;
  color: var(--primary-color);
}
.project-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
/* pseudo-element gạch chân */
.project-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--fs-color-secondary);
  transition: width .4s ease;
}
/* Khi hover item, gạch chân chạy đầy */
.project-item:hover .project-content::after {
  width: 100%;
}

/* Button khám phá */
.btn-discover {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: background .3s, color .3s;
}
.btn-discover:hover {
  background: var(--fs-color-secondary);
  color: #fff;
}

/* --- Ảnh & zoom effect --- */
.project-image {
  flex: 1;
  overflow: hidden; /* ẩn phần ảnh tràn */
}
.project-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
/* Zoom ảnh khi hover toàn bộ item */
.project-item:hover .project-image img {
  transform: scale(1.05);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .project-item {
    flex-direction: column;
  }
  .project-content, .project-image {
    order: unset !important;
    padding: 0 !important;
  }
  .project-content {
    margin-bottom: 30px;
  }
}

/* ----- Modal center ----- */
.project-modal {
  display: none;       /* ẩn modal khi load */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;

  /* Đặt flex, nhưng không ghi đè display:none */
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 1200px;
  max-height: 70vh;
  overflow-y: auto;
  padding: 30px;
  border-radius: 8px;
  position: relative;
}

/* close button */
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ----- Grid for 3 images + text ----- */
.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

/* vị trí từng khu vực */
.modal-text {
  grid-column: 1 / 2;
  grid-row:    1 / 2;
}
.modal-img1 {
  grid-column: 2 / 3;
  grid-row:    1 / 2;
}
/* Hàng 2 */
.modal-img2 {
  grid-column: 1 / 2;
  grid-row:    2 / 3;
}
.modal-img3 {
  grid-column: 2 / 3;
  grid-row:    2 / 3;
}

/* style chung cho ảnh */
.modal-body-grid img {
  width: 100%;
  height: 250px;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

/* responsive: stack thành 1 cột */
@media (max-width: 768px) {
  .modal-body-grid {
    grid-template-columns: 1fr;
    grid-template-rows:
      auto  /* text */
      auto  /* img1 */
      auto  /* img2 */
      auto; /* img3 */
  }
  .modal-text, .modal-img1, .modal-img2, .modal-img3 {
    grid-column: 1 !important;
	  grid-row: auto;
  }
	.modal-close {
		    top: -10px;
    right: -32px;
	}
}
/* cho thấy toàn item có thể click */
.project-item,
.project-content,
.project-image {
  cursor: pointer;
}



/* ----- KHỐI FORM CHUNG --------------------------------------------------- */
.subscribe-section {                /* bọc ngoài nếu bạn cần padding 2 bên */
  padding: 0 20px;
}

/* Flex dọc: input phía trên – button phía dưới, căn phải giống screenshot */
.subscribe-form{
  display: flex;
  flex-direction: column;
  gap: 18px;                        /* khoảng cách giữa input & button   */
  max-width: 620px;                 /* tuỳ ý – 100% cũng OK              */
  margin: 0 auto;                   /* căn giữa khối form                */
}

/* ----- INPUT EMAIL ------------------------------------------------------- */
.subscribe-form .subscribe-email{
  margin: 0px;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 999px;             /* bo tròn “pill” */
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  background: #fff;
  text-align: right;                /* placeholder nằm bên phải          */
  outline: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}

.subscribe-form .subscribe-email::placeholder{
  color: #7c7c7c;
  font-weight: 600;
}

/* ----- BUTTON “Đăng ký” -------------------------------------------------- */
.subscribe-form .subscribe-btn{
  margin: 0px;
  align-self: flex-end;             /* đẩy button về phía bên phải        */
      width: 141px;
    height: 40px;
    line-height: 40px;
  padding: 0 40px;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-color);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}

/* hiệu ứng nhấn nhẹ khi hover */
.subscribe-form .subscribe-btn:hover{
  transform: translateY(-3px);
}

/* ----- Hiệu ứng “loé sáng” tự động --------------------------------------- */
.subscribe-form .subscribe-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-75%;
  width:50%;                        /* chiều rộng vệt sáng                */
  height:100%;
  background: rgba(255,255,255,.45); /* độ chói                            */
  transform: skewX(-20deg);
  animation: shine 2.2s infinite;
}

@keyframes shine{
  0%   { left:-75%; }
  50%  { left:130%; }
  100% { left:130%; }
}

/* ------------------------------------------------------------------------- */


/* ===== Project Slider (no index number) ===== */
.project-swiper-wrapper{max-width:1300px;margin:0 auto;}
.project-swiper{overflow:hidden;}
.project-swiper .swiper-slide{display:flex;}

.ps-slide{width:100%;background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 4px 10px rgba(0,0,0,.05);}

.ps-top{display:flex;flex-wrap:wrap;min-height:400px;}

/* Panel đỏ */
.ps-panel{
  flex:1 1 50%;
  background:var(--gradient-color);
  color:#fff;
  padding:60px 48px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.ps-title{
  font-size:1.5rem;
  line-height:1.2;
  margin:0 0 24px;
  text-transform:uppercase;
  color: #fff;
}
.ps-desc{
  font-size:16px;
  line-height:1.7;
  margin:0 0 32px;
}
.ps-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 30px;
  background:#fff;
  color:var(--primary-color);
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
  width: 200px;
}
.ps-btn:hover{background:var(--fs-color-secondary);color:#fff;}

/* Ảnh cover */
.ps-cover{flex:1 1 50%;min-height:400px;}
.ps-cover img{width:100%;height:100%;object-fit:cover;display:block;}

/* Prev / Next */
.ps-nav-group{text-align:center;margin:32px 0 60px;}
.ps-nav-group button{
  width:56px;height:56px;border:2px solid var(--primary-color);border-radius:50%;
  background:#fff;color:var(--primary-color);font-size:24px;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;
  transition:.3s;margin:0 16px;
}
.ps-nav-group button:hover{background:var(--fs-color-secondary);color:#fff}

/* Responsive */
@media(max-width:992px){
  .ps-top{flex-direction:column;}
  .ps-panel,.ps-cover{flex:1 1 100%;}
  .ps-panel{padding:40px 32px;}
  .ps-title{font-size:2.4rem;margin-bottom:16px;}
}
@media(max-width:576px){
  .ps-panel{padding:32px 24px;}
  .ps-desc{margin-bottom:24px;}
}


/* =====================================================
   TUYỂN DỤNG – STYLE
   Path:  child-theme/assets/css/career.css
   ===================================================== */

/* -------- 1. BIẾN MÀU / RADIUS -------- */
:root{
  --gn-red:#be0004;
  --gn-grey:#d9d9d9;
  --gn-light:#f7f7f7;
  --gn-border:#e5e5e5;
  --gn-radius:6px;
}

/* -------- 2. BANNER -------- */
.career-banner{
  position:relative;
  height:420px;
  background:url('/wp-content/uploads/2025/08/co-hoi-viec-lam-geleximco-min.webp') center/cover no-repeat;
  display:flex;align-items:center;justify-content:center;
}
.career-banner__overlay{position:absolute;inset:0;background:rgba(0,0,0,.55);}
.career-banner__inner{
  position:relative;
  width:100%;max-width:800px;padding:0 15px;
  text-align:center;color:#fff;
}
.career-banner__title{
  font-size:48px;font-weight:700;line-height:1.2;margin-bottom:42px;
  color: #fff;
  text-transform:uppercase;letter-spacing:.5px;
}

/* -------- 3. FORM FILTER (1 HÀNG – 2 CỘT) -------- */
.career-filter{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  max-width:760px;
  margin:0 auto;
}
.filter-col select{
  width:100%;

  border:none;border-radius:var(--gn-radius);
  background:#fff linear-gradient(180deg,#ffffff 0%,#f7f7f7 100%);
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  font-size:18px;font-weight:500;color:#000;cursor:pointer;
  appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l8 8 8-8' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 22px center;
}
.filter-col select:focus{outline:none;box-shadow:0 0 0 3px rgba(190,0,4,.25);}

/* -------- 4. SECTION HEADING -------- */
.career-table__heading{
  text-align:center;font-size:32px;font-weight:700;
  text-transform:uppercase;color:var(--primary-color);
  margin:60px auto 32px;letter-spacing:1px;
}

/* -------- 5. BẢNG TUYỂN DỤNG -------- */
.jobs{
  width:94%;margin:0 auto;
  border-collapse:collapse;
  font-size:17px;line-height:1.6;
}
.jobs thead tr{
  background:var(--gradient-color);
  text-transform:uppercase;letter-spacing:.5px;
}
.jobs th{padding:18px 20px;font-weight:700;border:none;color: #fff;}
.jobs td{padding:18px 20px;border:none;vertical-align:top;}
.jobs td.text-center{text-align:center;}
.jobs tbody tr:nth-child(even){background:var(--gn-light);}
.jobs tbody tr:hover{background:#ececec;}
.jobs a{color:#000;font-weight:500;text-decoration:none;}
.no-result{padding:20px;text-align:center;font-style:italic;}

/* -------- 6. PHÂN TRANG -------- */
.career-pagination{text-align:center;margin-top:48px;}
.career-pagination .page-numbers{
  display:inline-flex;align-items:center;justify-content:center;
  width:36px;height:36px;margin:0 6px;
  border:1px solid var(--gn-border);border-radius:50%;
  font-size:15px;font-weight:500;
}
.career-pagination .current{
  background:var(--gn-red);color:#fff;border-color:var(--gn-red);
}
.career-pagination .prev,
.career-pagination .next{
  width:auto;padding:0 14px;border-radius:var(--gn-radius);
}

/* -------- 7. RESPONSIVE -------- */
@media (max-width:991px){
  .career-banner{height:320px;}
  .career-banner__title{font-size:36px;margin-bottom:32px;}
}
@media (max-width:575px){
  .career-filter{
    grid-template-columns:1fr;gap:16px;
  }
  .jobs{width:100%;font-size:15px;}
  .jobs th,.jobs td{padding:12px 14px;}
}


/* ==== LAYOUT GRID ==== */
.job-detail__grid{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:40px;
  padding: 10px 0;
}
@media(max-width:991px){
  .job-detail__grid{grid-template-columns:1fr;}
}

/* ==== CỘT TRÁI ==== */
.job-left{
  background:var(--gradient-color);
  color:#fff;padding:40px 36px;border-radius:6px;
}
.job-title{
  font-size:28px;font-weight:700;line-height:1.3;margin-bottom:32px;text-transform:uppercase;color: #fff;
}
.job-meta{list-style:none;padding:0;margin:0 0 32px 0;font-size:15px;line-height:1.8;}
.job-meta li strong{display:inline-block;width:130px;}
.job-share{font-size:14px;margin-bottom:32px}
.job-share a{color:#fff;margin-left:14px;text-decoration:none;font-weight:600;}
.job-share a:hover{opacity:.8}
.btn-cv{
  display:inline-block;background:#fff;color:#a80004;font-weight:600;
  padding:10px 24px;border-radius:24px;text-decoration:none;
}
.btn-cv:hover{background:#ffecec;color:#a80004}

/* ==== CỘT PHẢI ==== */
.job-heading{font-size:32px;font-weight:700;margin-bottom:24px;text-transform:uppercase;color: var(--primary-color);}
.job-content{font-size:15px;line-height:1.8;}
.job-content h2,h3{margin-top:32px;margin-bottom:16px;font-weight:700;}


.title_img {
    position: relative;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 200px;
    font-style: normal;
    font-weight: 700;
    line-height: 210px;
    text-transform: uppercase;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-image: url(/wp-content/uploads/2025/08/title.webp);
    background-size: contain;
    background-position: 50% 50%;
}
.title_img2 {
    position: relative;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 200px;
    font-style: normal;
    font-weight: 700;
    line-height: 210px;
    text-transform: uppercase;
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-image: url(/wp-content/uploads/2025/08/489917815_122151743258464049_4317838102643324262_n.webp);
    background-size: contain;
    background-position: 50% 50%;
}

.fs-gradient {
  background-color: var(--gradient-color);
}

:root{
  --brand:#be0004;    /* đỏ chủ đạo */
  --border:#e9e9e9;
}
.archive-page-header{
  display: none;
}
.blog-wrapper{
  padding-top: 0;
}
/* ============== HERO ============== */
.news-hero{
  position:relative;min-height:460px;background:#111 center/cover no-repeat;
  background-image: var(--hero);
}
.news-hero__overlay{position:absolute;inset:0;display:flex;align-items:flex-end;
  background:linear-gradient(180deg,rgba(0,0,0,.25),rgba(0,0,0,.7) 70%)}
.news-hero__title{color:#fff;margin:0 0 8px;font-size:34px;line-height:1.2}
.news-hero__desc{color:#f5f5f5;max-width:920px;margin:0 0 22px}

/* ============== STRIP SLIDER ============== */
.news-strip{background:var(--gradient-color);padding:18px 0;position:relative;color:#fff;margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);}
.news-strip .container{position:relative}
/* card */
.strip-card{
  background: transparent;color:#fff;overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}
.strip-card:hover{transform:translateY(-3px);box-shadow:0 10px 24px rgba(0,0,0,.12)}
.strip-card__thumb img{display:block;width:100%;height:auto;transition:transform .5s ease}
.strip-card:hover .strip-card__thumb img{transform:scale(1.04)}
.strip-card__content{padding:10px 12px 12px; background: transparent;}
.strip-card__meta{font-size:12px;color:#777;margin-bottom:4px}
.strip-card__title{ font-size:15px;line-height:1.45;margin:0}
.strip-card__title a{color: #fff}
/* nav */
.news-strip .swiper-button-prev,
.news-strip .swiper-button-next{
  width:40px;height:40px;border-radius:50%;background:#fff;box-shadow:0 4px 16px rgba(0,0,0,.15);
  color:#c81f1f; --swiper-navigation-color: currentColor;
}
.news-strip .swiper-button-prev:after,
.news-strip .swiper-button-next:after{font-size:18px}
@media(max-width:768px){
  .news-strip .swiper-button-prev,
  .news-strip .swiper-button-next{display:none}
}

/* dots */
.news-strip .swiper-pagination{position:static;margin-top:10px}
.news-strip .swiper-pagination-bullet{opacity:.6;background:#fff}
.news-strip .swiper-pagination-bullet-active{opacity:1;background:#fff}
@media(max-width:768px){.strip-nav{display:none}}

/* ============== TABS DANH MỤC ============== */
.news-tabs{
  display:flex;gap:18px;flex-wrap:wrap;list-style:none;margin:18px 0 20px;padding:0;
  border-bottom:1px solid var(--border)
}
.news-tabs li a{
  display:inline-block;padding:10px 0;color:#333;border-bottom:3px solid transparent;
}
.news-tabs li.active a,
.news-tabs li a:hover{color:var(--primary-color);border-color:var(--primary-color)}

/* ============== FEATURE 2 BÀI ============== */
.news-feature{
  display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin:8px 0 24px;
}
@media(max-width:992px){.news-feature{grid-template-columns:1fr}}
.feature-card{
  background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden;
  display:flex;flex-direction:column
}
.feature-card__thumb img{display:block;width:100%}
.feature-card__body{padding:16px}
.feature-card__title{margin:0 0 8px;font-size:18px;line-height:1.35}
.feature-card__meta{font-size:12px;color:#777;display:flex;gap:6px;align-items:center;margin-bottom:10px}
.feature-card__excerpt{margin:0 0 12px;color:#444}
.btn-more{
  display:inline-block;border:1px solid var(--fs-color-secondary);color:var(--fs-color-secondary);padding:6px 12px;border-radius:999px;font-size:13px
}
.btn-more:hover{background:var(--fs-color-secondary);color:#fff}

/* ============== GRID 3 CỘT ============== */
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
@media(max-width:1024px){.news-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.news-grid{grid-template-columns:1fr}}

.news-card{
  background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden;
  display:flex;flex-direction:column
}
.news-card__thumb img{width:100%;display:block}
.news-card__body{padding:14px}
.news-card__title{margin:0 0 6px;font-size:18px;line-height:1.45}
.news-card__meta{font-size:12px;color:#777;display:flex;gap:6px;align-items:center;margin-bottom:8px}
.news-card__excerpt{margin:0 0 10px;color:#444}

/* ============== PAGINATION ============== */
.news-pagination{text-align:center;margin:28px 0}
.news-pagination .page-numbers{
  display:inline-block;margin:0 4px;padding:8px 12px;border:1px solid var(--border);border-radius:8px
}
.news-pagination .current,.news-pagination a:hover{background:var(--brand);border-color:var(--brand);color:#fff}
/* ==== KHUNG 1640PX CHO RIÊNG TRANG TIN ==== */
.news-archive .container{
  max-width:1640px !important;
  width:100%;
  margin:0 auto;
  padding-left:16px;
  padding-right:16px;
}

/* ==== BANNER FULL-WIDTH (FULL BLEED) ==== */
/* Section banner phủ toàn màn, text vẫn gói trong .container 1640 */
.news-hero{
  position:relative;
  min-height:460px;
  background:#111 center/cover no-repeat;
  background-image: var(--hero);
  /* full-bleed tricks – không gây thanh cuộn ngang */
  width:auto;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  height: calc(100vh - 160px);
}

/* lớp phủ + text */
.news-hero__overlay{
  position:absolute; inset:0;
  display:flex; align-items:flex-end;
  background:linear-gradient(180deg,rgba(0,0,0,.25),rgba(0,0,0,.7) 70%);
}
.news-hero__title{color:#fff;margin:0 0 10px;font-size:34px;line-height:1.2}
.news-hero__desc{color:#f5f5f5;max-width:960px;margin:0 0 22px}

/* ==== CÁC KHỐI DƯỚI BANNER VẪN BÁM 1640PX ==== */
/* strip, tabs, feature, grid… giữ nguyên – chỉ chắc chắn không vượt quá 1640 */
.news-strip .container,
.news-tabs,
.news-feature,
.news-grid,
.news-pagination{ /* không cần style đặc biệt ở đây, chỉ nhắc để bạn yên tâm */ }

/* Optional: nới chiều cao banner ở màn lớn */
@media (min-width:1680px){
  .news-hero{ min-height:520px; }
}











/* WRAPPER */
.cf7-contact.card{
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  padding:32px;
}

/* TITLE */
.cf7-contact .form-title{
  margin:0 0 20px;
  font-size:32px;
  font-weight:800;
  letter-spacing:.2px;
}

/* GRID 2 CỘT CHO EMAIL + PHONE */
.cf7-contact .row-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

@media (max-width: 767px){
  .cf7-contact .row-2{ grid-template-columns:1fr; }
}

/* FIELD + INPUT */
.cf7-contact .field{ margin-bottom:18px; }
.cf7-contact label{
  display:block;
  font-size:14px;
  margin-bottom:8px;
  color:#333;
}

.cf7-contact .input-full,
.cf7-contact input[type="text"],
.cf7-contact input[type="email"],
.cf7-contact input[type="tel"],
.cf7-contact textarea{
  width:100%;
  height:56px;
  border:1px solid #E5E7EB;
  border-radius:10px;
  padding:12px 16px;
  font-size:16px;
  outline:none;
  transition:all .2s ease;
  background:#fff;
}

.cf7-contact textarea{
  min-height:180px;
  resize:vertical;
}

.cf7-contact input:focus,
.cf7-contact textarea:focus{
  border-color:#ef4444;
  box-shadow:0 0 0 4px rgba(239,68,68,.1);
}

/* reCAPTCHA block */
.cf7-contact .recaptcha{
  margin:16px 0 8px;
}
.g-recaptcha{ transform:scale(1); transform-origin:0 0; }

/* SUBMIT BUTTON */
.cf7-contact .actions{ margin-top:8px; }
.cf7-contact .btn-contact{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#e11900;
  color:#fff;
  border:none;
  border-radius:999px;
  padding:14px 26px;
  font-weight:600;
  cursor:pointer;
  transition:transform .08s ease, box-shadow .2s ease, opacity .2s ease;
}
.cf7-contact .btn-contact:hover{ opacity:.92; }
.cf7-contact .btn-contact:active{ transform:translateY(1px); }

/* Thêm mũi tên ở nút */
.cf7-contact .btn-contact::after{
  content:"\2192"; /* → */
  font-size:18px;
  line-height:1;
}
