:root {
  --amadeus-bg:#faf3e0;
  --amadeus-text:#233d40;
  --amadeus-accent:#cca300;
  --amadeus-muted:#8a8a8a;
  --amadeus-radius:18px;
}

.am-wrap {
  width:min(1100px,92vw);
  margin:0 auto;
}

/* ===============================
   HERO
=============================== */
.am-news-hero {
  background:var(--amadeus-bg);
  padding:80px 0 32px;
  border-bottom:1px solid rgba(0,0,0,.04);
}

.am-news-eyebrow {
  font-size:var(--am-type-label);
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--amadeus-accent);
  margin-bottom:6px;
}

.am-news-hero h1 {
  margin:0 0 8px;
  font-size:var(--am-type-page-title);
  color:var(--amadeus-text);
}

.am-news-hero p.lead {
  margin:0;
  font-size:var(--am-type-subtitle);
  color:var(--amadeus-muted);
  max-width:640px;
}

/* Meta Row */
.am-news-meta-row {
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px;
  font-size:var(--am-type-body-sm);
  color:var(--amadeus-muted);
}
.am-news-meta-row a {
  color:var(--amadeus-accent);
  text-decoration:none;
  border-bottom:1px solid rgba(204,163,0,.35);
}

/* ===============================
   GRID
=============================== */
.am-news-section {
  background:#fff;
  padding:32px 0 70px;
}

.am-news-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

@media (max-width:960px) {
  .am-news-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:640px) {
  .am-news-grid {
    grid-template-columns:1fr;
  }
}

/* ===============================
   CARDS
=============================== */
.am-news-card {
  border-radius:var(--amadeus-radius);
  border:1px solid rgba(0,0,0,.06);
  background:#fff;
  box-shadow:0 10px 26px rgba(0,0,0,.05);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.am-news-card a {
  display:flex;
  flex-direction:column;
  height:100%;
  color:inherit;
  text-decoration:none;
}

.am-news-thumb {
  overflow:hidden;
  max-height:210px;
}

.am-news-thumb img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  transition:transform .22s ease;
}

.am-news-card-inner {
  padding:18px 18px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.am-news-meta {
  display:flex;
  flex-wrap:wrap;
  gap:6px 12px;
  font-size:var(--am-type-note);
  color:var(--amadeus-muted);
}

.am-news-meta .dot::before {
  content:"• ";
}

.am-news-card h2 {
  font-size:var(--am-type-h3);
  margin:0;
  color:var(--amadeus-text);
}

.am-news-excerpt {
  font-size:var(--am-type-body-sm);
  color:#2f4345;
}

.am-news-readmore {
  margin-top:auto;
  padding-top:10px;
  font-size:var(--am-type-body-sm);
  font-weight:600;
  color:var(--amadeus-accent);
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.am-news-readmore span.icon {
  font-size:var(--am-type-body);
  transform:translateX(0);
  transition:transform .18s ease;
}

/* HOVER */
.am-news-card:hover {
  transform:translateY(-3px);
  box-shadow:0 14px 32px rgba(0,0,0,.09);
  border-color:rgba(0,0,0,.08);
}

.am-news-card:hover .am-news-thumb img {
  transform:scale(1.05);
}

.am-news-card:hover .am-news-readmore span.icon {
  transform:translateX(2px);
}

/* ===============================
   PAGINATION
=============================== */
.am-news-pagination {
  margin-top:40px;
  display:flex;
  justify-content:center;
}

.am-news-pagination .page-numbers {
  display:inline-block;
  margin:0 2px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:var(--am-type-body-sm);
}

.am-news-pagination .page-numbers.current {
  background:var(--amadeus-accent);
  color:#fff;
  border-color:var(--amadeus-accent);
}

.am-news-pagination .page-numbers:not(.current) {
  border-color:rgba(0,0,0,.12);
  color:#333;
  text-decoration:none;
}

/* EMPTY */
.am-news-empty {
  font-size:var(--am-type-body-sm);
  color:var(--amadeus-muted);
  margin-top:18px;
}

/* SR only */
.screen-reader-text{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}
