/* ===== NEWS (không “card” cho bài lớn) ===== */
  .news {
    background: #fff;
    padding: 60px 0px;
    display: grid;
    place-items: center;
  }

  .news__inner {
    width: var(--wrap);
  }

  /* Head */
  .news__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 22px;
  }

  .news__title {
    margin: 0;
    color: var(--brand);
    font: 600 50px/1.2 "Playfair Display", serif;
  }

  .news__bar {
    width: var(--bar-w);
    height: 3px;
    background: var(--yellow);
    border-radius: 999px;
    margin-top: 12px;
  }

  .news__see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 2px;
    /* căn đáy link gần trùng đáy thanh vàng */
  }

  .news__see-all:hover {
    text-decoration: underline;
  }

  /* Grid */
  .news__grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    /* trái rộng, phải cố định */
    gap: 28px;
    align-items: start;
    /* đỉnh hai cột ngang nhau */
  }

  /* LEFT big article – NO CARD */
  .news__hero {}

  .news__hero-media {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
  }

  .news__hero-media img {
    width: 100%;
    height: 370px;
    aspect-ratio: 16/7;
    display: block;
    object-fit: cover;
  }

  .news__meta {
    margin: 14px 0 6px;
    font: 600 13px/1.2 "Roboto", system-ui, sans-serif;
    color: #6B7280;
  }

  .news__hero-title a{
    margin: 0 0 10px;
    font: 700 30px/1.35 "Playfair Display", serif;
    color: #172432;
  }
   article:hover .news__hero-title a{
    color: var(--brand-green);
  }
  .list_blogs:hover .news__item-title{
    color: var(--brand-green);
  }
  .news__excerpt {
    margin: 0 0 12px;
    color: #4B5563;
    font: 400 15px/1.7 "Roboto", system-ui, sans-serif;
  }

  .news__more {
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
  }

  .news__more:hover {
    text-decoration: underline;
  }

  /* RIGHT list */
  .news__list {
    display: flex;
    flex-direction: column;
  }

  .news__item {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid #EAEAEA;
    text-decoration: none;
    color: inherit;
  }

  .news__item:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .news__thumb {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f2f2f2;
    aspect-ratio: 4/3;
  }

  .news__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .news__item-title {
    margin: 0 0 6px;
    font: 700 18px/1.35 "Playfair Display", serif;
    color: #172432;
  }

  .news__date {
    font: 400 13px/1.2 "Roboto", system-ui, sans-serif;
    color: #6B7280;
  }

  .see-all-blog{
    display: none;
    width: 100%;
}
  @media (max-width: 1100px) {
    .news__grid {
      grid-template-columns: 1fr 360px;
      gap: 24px;
    }
  }

  @media (max-width: 900px) {
    .news__grid {
      grid-template-columns: 1fr;
    }

    .news__list {
      margin-top: 6px;
    }
  }
    @media (max-width:777px){
       .news-viewall{
        display: none;
       }
        .see-all-blog{
    display: block;
}
    }

  @media (max-width:640px) {
    .news {
      padding: 50px 0;
    }

    .news__title {
      font-size: 36px;
    }

    .news__bar {
      width: 240px;
    }

    .news__hero-title {
      font-size: 24px;
    }
  }




  /* ===== Internal News (additive only) ===== */
.news-section{
  background: #F2FAE3; /* khớp nền trang của bạn */
  padding: 40px 0 56px;
}

.news-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

/* Link "Xem tất cả" */
.news-viewall{
  color: var(--brand-green);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.news-viewall:hover{
  color: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

/* Grid 3 cột */
.news-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* Card */
.news-card{
  background: transparent;
  border: 0;
  overflow: hidden;
}

/* Ảnh */
.news-media{
  display: block;
  position: relative;
}
.news-media img{

  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Banner chữ trên ảnh (chỉ dùng cho item có breaking) */
.news-banner{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  color: #fff;
  text-align: center;
  padding: 10px 12px;
  background: linear-gradient(0deg, rgba(0,0,0,.75), rgba(0,0,0,.32));
}
.news-banner-title{
  font-weight: 800;
  letter-spacing: .4px;
}
.news-banner-sub{
  font-size: 14px;
  font-weight: 500;
  opacity: .95;
}

/* Nội dung */
.news-body{
  padding: 14px 16px 18px;

  border-radius: 0 0 10px 10px;
}

.news-kicker{
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--ink-500, #475569);
}

.news-title{
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink-900, #0f172a);
}
.news-title a{
  color: inherit;
  text-decoration: none;
}
.news-title a:hover{
  text-decoration: underline;
}

.news-meta{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-500, #475569);
}
.news-avatar{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* Mô tả */
.news-excerpt{
  margin: 10px 0 14px;
  font-size: 15px;
  color: var(--ink-700, #2f4a36);
}

/* Nút */
.news-btn{
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  text-decoration: none;
  background: #fff;
  color: #222;
  border: 1px solid #E2E8F0;
  transition: all .18s ease;
  width: auto;  
}
.news-btn:hover{
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .news-grid{ grid-template-columns: 1fr 1fr; gap: 22px; }
}
@media (max-width: 576px){
  .news-head{ flex-direction: column; align-items: flex-start; gap: 8px; }
  .news-grid{ grid-template-columns: 1fr; gap: 16px; }
  .news-title{ font-size: 20px; }
  .news-media img{ height: 220px; }
}
/* Đảm bảo card luôn full height và nút ở đáy */
.news-card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-body{
  display: flex;
  flex-direction: column;
  flex: 1; /* fill khoảng trống còn lại */
}

.news-excerpt{
  flex: 1; /* đẩy nội dung giãn ra */
}

/* Nút chỉ ôm chữ, không full width */
.news-btn{
  display: inline-flex;       /* inline + flex để căn giữa text + icon */
  align-items: center;
  gap: 6px;                   /* khoảng cách giữa text và dấu › */
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  text-decoration: none;
  background: #fff;
  color: #222;
  border: 1px solid #E2E8F0;
  transition: all .18s ease;
  width: auto;                /* ép không full width */
  max-width: max-content;     /* chỉ bằng nội dung */
}

.news-btn::after{
  content: "›";
  font-size: 16px;
  line-height: 1;
  transition: transform .2s ease;
}

.news-btn:hover{
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}

.news-btn:hover::after{
  transform: translateX(3px);
}


/* Hover chuyển màu và icon dịch chuyển */
.news-btn:hover::after{
  transform: translateX(3px);
}

/* Hover ảnh */
.news-media{
  overflow: hidden;
}
.news-media img{
  transition: transform .35s ease, filter .35s ease;
}

.news-card:hover .news-media img{
  transform: scale(1.08);
  filter: brightness(1.05);
}
.news-card:hover{
    box-shadow: var(--shadow, 0 10px 30px rgba(0,0,0,.08));
}
/* hover new blogs */
.news .news__item img,.news .news__hero img {
    transition: transform .35s ease, filter .35s ease;
}

.news__item:hover .news__thumb img,.news__grid article:hover .news__hero-media img {
     transform: scale(1.08);
  filter: brightness(1.05);
}


/* ===== Destinations (no-library) ===== */
/* Rail full width */
.dest-rail {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  width: 100vw;
}

/* Track ngang */
.dest-track {
  display: flex;
  gap: 28px;
  will-change: transform;
  cursor: grab;
}

.dest-track:active {
  cursor: grabbing;
}

/* Card */
.dest-card {
  position: relative;
  width: 320px;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: #e9ecef;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  flex-shrink: 0; /* luôn giữ kích thước */
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.dest-card:hover .dest-img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

.dest-title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font: 700 20px/1.2 "Open Sans", sans-serif;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  z-index: 2;
}


:root{
  --green:#2E7D32;
  --yellow:#FCCD04;
  --ink:#11261B;
  --muted:#F7F7F7;
  --line:#E6E6E6;
}

.ib-pagination{
  margin: 28px 0 48px;
  text-align: center;
  font-family: "Open Sans", system-ui, sans-serif;
}

.ib-pagination .page-numbers{
  display: inline-flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
}

.ib-pagination .page-numbers > li{ display: inline-block; }

/* Nút */
.ib-pagination .page-numbers a,
.ib-pagination .page-numbers span{
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

/* Trang hiện tại */
.ib-pagination .page-numbers .current{
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  cursor: default;
}

/* Dấu chấm lửng */
.ib-pagination .page-numbers .dots{
  background: transparent;
  border-color: transparent;
  color: #9aa4a9;
}

/* Hover/focus */
.ib-pagination .page-numbers a:hover{
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
}
.ib-pagination .page-numbers a:focus-visible{
  outline: 2px solid rgba(46,125,50,.35);
  outline-offset: 2px;
}

/* Prev/Next phong cách link chính */
.ib-pagination .page-numbers .prev,
.ib-pagination .page-numbers .next{
  background: #fffbe8;
  border-color: #ffeaa3;
}

/* Mobile: tăng bề mặt chạm, cho phép cuộn ngang nếu dài */
@media (max-width: 576px){
  .ib-pagination .page-numbers{
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .ib-pagination .page-numbers a,
  .ib-pagination .page-numbers span{
    min-width: 36px;
    height: 36px;
    font-size: 13px;
    border-radius: 6px;
  }
  .ib-pagination .page-numbers::-webkit-scrollbar{ display: none; }
}
