/* AMORA NEWS — Brand */
.amora-news{
  --amora-brown:#3C1F1A;
  --amora-gold:#F1BF50;
  --amora-bg:#E9DED5;    /* nền như bạn đang dùng */
  --amora-card:#E7EEF6;  /* màu card giống mock */
  --amora-radius:28px;

  padding: 48px 0;
}

.amora-news__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.amora-news__header{
  text-align: center;
  margin-bottom: 28px;
}

.amora-news__title{
  color: var(--amora-brown);
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 14px;
}

.amora-news__line{
  display:inline-block;
  width: 140px;
  height: 4px;
  border-radius: 999px;
  background: var(--amora-gold);
  box-shadow: 0 8px 24px rgba(241,191,80,.25);
}

/* GRID LAYOUT — giống mẫu: trái 1 card to, phải 3 card nhỏ */
.amora-news__grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 26px;
  align-items: center; /* ✅ canh giữa card to so với cụm card nhỏ */
}

/* FEATURED CARD */
.amora-news__featured{
  background: var(--amora-bg);
  border-radius: var(--amora-radius);
  overflow: hidden;
}

.amora-news__featured-link{
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
}

.amora-news__featured-thumb{
  background: var(--amora-card);
  border-radius: var(--amora-radius);
  overflow: hidden;
  aspect-ratio: 16 / 9; /* ✅ thumbnail to đẹp */
}

.amora-news__featured-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.amora-news__featured-body{
  padding: 18px 6px 10px;
}

.amora-news__featured-title{
  color: var(--amora-brown);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  margin: 14px 0 10px;

  /* ✅ 1 dòng ... */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.amora-news__featured-excerpt{
  margin: 0;
  color: rgba(60,31,26,.75);
  font-size: 16px;
  line-height: 1.5;

  /* ✅ 2 dòng ... */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* LIST RIGHT */
.amora-news__list{
  display: grid;
  gap: 18px;
}

/* SMALL ITEM */
.amora-news__item{
  background: transparent;
}

.amora-news__item-link{
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.amora-news__item-thumb{
  background: var(--amora-card);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.amora-news__item-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.amora-news__item-body{ min-width: 0; }

.amora-news__item-title{
  color: var(--amora-brown);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 6px;

  /* ✅ 2 dòng ... */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.amora-news__item-excerpt{
  margin: 0;
  color: rgba(60,31,26,.70);
  font-size: 14px;
  line-height: 1.45;

  /* ✅ 2 dòng ... */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA */
.amora-news__cta{
  margin-top: 26px;
  text-align: center; /* ✅ mobile/desktop đều center */
}

.amora-news__button{
  background: var(--amora-gold) !important;
  color: var(--amora-brown) !important;
  border-radius: 999px !important;
  padding: 12px 30px !important;
  font-weight: 700;
}

/* Fallback thumb */
.amora-news__thumb-fallback{
  width: 100%;
  height: 100%;
  background: var(--amora-card);
}

/* ✅ TABLET / MOBILE */
@media (max-width: 991px){
  .amora-news__grid{
    grid-template-columns: 1fr;
    align-items: start;
  }

  /* ✅ Mobile center như bạn yêu cầu */
  .amora-news__featured-body{
    text-align: center;
    padding: 16px 8px 8px;
  }

  .amora-news__featured-title{
    font-size: 26px;
  }

  .amora-news__list{
    padding-top: 8px;
  }
}

@media (max-width: 575px){
  .amora-news{
    padding: 38px 0;
  }

  .amora-news__item-link{
    grid-template-columns: 92px 1fr;
  }
}