/* ==========================================================================
   IJAEA Homepage Redesign — Design System
   Scoped to .home-redesign so archives.php / papers.php remain untouched.
   Palette: Elsevier/Springer-inspired premium academic system.
   Type: Inter (everywhere) + Source Serif 4 (H1 / journal name / headlines only).
   ========================================================================== */

.home-redesign{
  --ink:#1B1F24;
  --paper:#F7F9FC;
  --paper-2:#EFF3F8;
  --navy:#1E3A5F;
  --navy-2:#0F4C81;
  --hover:#0B3B63;
  --blueprint:#0F4C81;
  --brass:#F28C28;
  --brass-text:#B5651D;
  --brass-light:#FBE4CB;
  --line:#E4E8EE;
  --muted:#5F6B7A;
  --success:#1F8A70;
  --white:#FFFFFF;
  --radius:10px;
  --radius-lg:16px;
  --shadow:0 8px 24px -10px rgba(15,29,45,.14);
  --shadow-soft:0 2px 10px rgba(15,29,45,.06);
  color:var(--ink);
  background:var(--paper);
}

.home-redesign *{ box-sizing:border-box; }

.home-redesign h1,.home-redesign h2,.home-redesign h3,.home-redesign h4{
  font-family:'Source Serif 4', 'Georgia', serif;
  color:var(--navy);
  line-height:1.15;
  margin:0;
}

.home-redesign .hr-eyebrow{
  font-family:'Inter', sans-serif;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.72rem;
  color:var(--brass-text);
  font-weight:600;
}

.home-redesign p{ color:var(--muted); line-height:1.7; }

.home-redesign .hr-wrap{
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}

.home-redesign section{ padding:56px 0; position:relative; }
.home-redesign .hr-tight{ padding:32px 0; }

.home-redesign .hr-section-head{
  max-width:680px;
  margin:0 0 28px;
}
.home-redesign .hr-section-head h2{ font-size:2.2rem; margin-top:8px; }
.home-redesign .hr-section-head p{ margin-top:12px; font-size:1.05rem; }
.home-redesign .hr-center{ text-align:center; margin-left:auto; margin-right:auto; }

/* ---------- Hide legacy banner only on the homepage ---------- */
.home-redesign .banner{ display:none; }

/* ---------- Meta / trust strip under nav ---------- */
.hr-metabar{
  background:var(--navy);
  color:#EDE7D8;
  font-family:'Inter', sans-serif;
  font-size:.78rem;
  letter-spacing:.03em;
}
.hr-metabar .hr-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:10px 26px;
  align-items:center;
  padding:10px 24px;
}
.hr-metabar span{ display:inline-flex; align-items:center; gap:6px; opacity:.92; }
.hr-metabar span b{ color:var(--brass-light); font-weight:600; }
.hr-metabar .hr-badge-issue{
  margin-left:auto;
  background:rgba(185,129,47,.18);
  border:1px solid rgba(185,129,47,.5);
  padding:4px 12px;
  border-radius:30px;
  color:#F6E9CC;
}

/* ---------- Hero ---------- */
.hr-hero{
  padding:44px 0 0;
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.hr-hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:48px;
  align-items:center;
}
.hr-hero .hr-eyebrow{ display:block; margin-top:14px; }
.hr-estd-badge{
  display:inline-flex;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  color:var(--navy-2);
  font-family:'Inter', sans-serif;
  font-size:.8rem;
  font-weight:600;
  padding:7px 16px;
  border-radius:30px;
  box-shadow:var(--shadow-soft);
}
.hr-hero h1{
  font-size:clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight:700;
  letter-spacing:-.01em;
}
.hr-hero h1 em{ color:var(--brass-text); font-style:normal; }
.hr-hero .hr-sub{
  font-size:1.12rem;
  max-width:560px;
  margin-top:18px;
}
.hr-hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.hr-btn{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:11px 20px;
  border-radius:10px;
  font-weight:600;
  font-size:.9rem;
  text-decoration:none;
  border:1.5px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease;
}
.hr-btn:hover{ transform:translateY(-2px); text-decoration:none; }
.hr-btn-primary{ background:var(--navy-2); color:#fff; box-shadow:var(--shadow-soft); }
.hr-btn-primary:hover{ background:var(--hover); color:#fff; }
.hr-btn-outline{ border-color:var(--navy); color:var(--navy); background:#fff; }
.hr-btn-outline:hover{ border-color:var(--brass); color:var(--brass-text); }
.hr-btn-ghost{ color:var(--navy); background:rgba(18,42,69,.06); }
.hr-btn-ghost:hover{ background:rgba(18,42,69,.12); }

/* Floating manuscript card (illustration substitute, CSS-only) */
.hr-hero-art{ position:relative; height:100%; min-height:320px; }
.hr-doc-card{
  position:absolute;
  width:78%;
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px 22px 18px;
  border:1px solid var(--line);
}
.hr-doc-card .hr-doc-bar{ height:8px; width:38%; background:var(--brass-light); border-radius:6px; margin-bottom:12px; }
.hr-doc-card .hr-doc-line{ height:7px; background:var(--paper-2); border-radius:5px; margin-bottom:9px; }
.hr-doc-card .hr-doc-line.w1{ width:96%; }
.hr-doc-card .hr-doc-line.w2{ width:88%; }
.hr-doc-card .hr-doc-line.w3{ width:64%; }
.hr-doc-1{ top:0; left:0; transform:rotate(-4deg); z-index:2; }
.hr-doc-2{ top:70px; left:22%; transform:rotate(3deg); z-index:1; opacity:.9; }
.hr-doc-stamp{
  position:absolute; right:6%; bottom:6%;
  width:118px; height:118px; border-radius:50%;
  border:3px dashed var(--brass);
  display:flex; align-items:center; justify-content:center;
  text-align:center; font-family:'Inter', sans-serif;
  font-size:.68rem; color:var(--navy); font-weight:700;
  letter-spacing:.05em; transform:rotate(-8deg); background:rgba(250,247,239,.9);
}

/* ---------- Manuscript ledger ticker (signature element) ---------- */
.hr-ledger{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--navy);
  overflow:hidden;
  padding:0;
}
.hr-ledger-track{
  display:flex;
  gap:0;
  animation:hr-scroll 42s linear infinite;
  width:max-content;
}
.home-redesign .hr-ledger:hover .hr-ledger-track{ animation-play-state:paused; }
.hr-ledger-item{
  display:flex; align-items:center; gap:14px;
  padding:16px 34px;
  border-right:1px solid rgba(255,255,255,.12);
  white-space:nowrap;
  color:#EDE7D8;
  font-size:.88rem;
}
.hr-ledger-item .hr-tick{
  font-family:'Inter', sans-serif;
  color:var(--brass-light);
  font-size:.78rem;
}
.hr-ledger-item .hr-title{ color:#fff; font-weight:600; max-width:340px; overflow:hidden; text-overflow:ellipsis; }
.hr-ledger-item .hr-auth{ color:#B9C3CE; font-size:.8rem; }
@keyframes hr-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------- Trust stats ---------- */
.hr-stats{ background:var(--paper-2); }
.hr-stats-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:#fff;
}
.hr-stat{
  padding:28px 14px;
  text-align:center;
  border-right:1px solid var(--line);
}
.hr-stat:last-child{ border-right:none; }
.hr-stat .hr-num{
  font-family:'Inter', sans-serif;
  font-size:1.7rem;
  font-weight:700;
  color:var(--navy-2);
  display:block;
}
.hr-stat .hr-plus{
  font-family:'Inter', sans-serif;
  font-size:1.4rem;
  font-weight:700;
  color:var(--brass-text);
}
.hr-stat .hr-label{
  font-size:.76rem;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-top:4px;
  display:block;
}
@media (max-width:1000px){
  .hr-stats-grid{ grid-template-columns:repeat(3,1fr); }
  .hr-stat:nth-child(3n){ border-right:none; }
}
@media (max-width:600px){
  .hr-stats-grid{ grid-template-columns:repeat(2,1fr); }
  .hr-stat:nth-child(2n){ border-right:none; }
}

/* ---------- Overview / why publish ---------- */
.hr-overview{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:56px;
  align-items:center;
}
.hr-overview-panel{
  background:var(--navy);
  border-radius:var(--radius-lg);
  padding:34px;
  color:#EDE7D8;
  position:relative;
}
.hr-overview-panel h3{ color:#fff; font-size:1.4rem; }
.hr-overview-list{ list-style:none; margin:18px 0 0; padding:0; }
.hr-overview-list li{
  display:flex; gap:12px; align-items:flex-start;
  padding:10px 0; border-top:1px solid rgba(255,255,255,.12);
  font-size:.92rem; color:#D8DEE6;
}
.hr-overview-list li:first-child{ border-top:none; }
.hr-overview-list li b{ color:var(--brass-light); font-family:'Inter', sans-serif; font-size:.8rem; }

.hr-card-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.hr-feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow-soft);
}
.hr-feature-card .hr-icn{
  width:38px;height:38px;border-radius:10px;
  background:var(--brass-light); color:var(--brass-text);
  display:flex;align-items:center;justify-content:center;
  font-size:1.05rem; margin-bottom:12px;
}
.hr-feature-card h4{ font-size:1.02rem; margin-bottom:6px; }
.hr-feature-card p{ font-size:.9rem; margin:0; }

/* ---------- Current issue ---------- */
.hr-issue{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  display:grid;
  grid-template-columns:280px 1fr;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hr-issue-cover{
  background:var(--navy);
  color:#fff;
  padding:0;
  display:flex;
  position:relative;
}
.hr-issue-cover .hr-cover-svg{ width:100%; height:100%; object-fit:cover; }
.hr-issue-body{ padding:30px 32px; display:flex; flex-direction:column; justify-content:center; gap:14px; }
.hr-issue-body .hr-meta-row{ display:flex; gap:26px; flex-wrap:wrap; }
.hr-issue-body .hr-meta-row div span{ display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:.05em; color:var(--muted); }
.hr-issue-body .hr-meta-row div b{ font-family:'Inter', sans-serif; color:var(--navy); font-size:1.15rem; }

/* ---------- Recent articles ---------- */
.hr-article-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.hr-article-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:box-shadow .2s ease, transform .2s ease;
}
.hr-article-card:hover{ box-shadow:var(--shadow); transform:translateY(-3px); }
.hr-article-tag{
  font-family:'Inter', sans-serif;
  font-size:.68rem;
  color:var(--brass-text);
  text-transform:uppercase;
  letter-spacing:.05em;
}
.hr-article-card h3{ font-size:1.08rem; line-height:1.35; }
.hr-article-card a.hr-title-link{ color:var(--navy); text-decoration:none; }
.hr-article-card a.hr-title-link:hover{ color:var(--brass-text); }
.hr-article-authors{ font-size:.85rem; color:var(--muted); }
.hr-article-abstract{ font-size:.87rem; color:var(--muted); display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.hr-article-foot{ display:flex; justify-content:space-between; align-items:center; margin-top:auto; padding-top:10px; border-top:1px solid var(--line); }
.hr-article-foot a{ font-size:.82rem; font-weight:600; color:var(--navy-2); text-decoration:none; }
.hr-article-foot a:hover{ color:var(--brass-text); }

/* ---------- Research areas ---------- */
.hr-area-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.hr-area-chip{
  display:flex; align-items:center; gap:10px;
  padding:16px 16px;
  border-radius:var(--radius);
  text-decoration:none;
  font-weight:600;
  font-size:.92rem;
  color:#fff;
  box-shadow:var(--shadow-soft);
  transition:transform .15s ease;
}
.hr-area-chip:hover{ transform:translateY(-2px); text-decoration:none; color:#fff; }

/* ---------- Publication process timeline ---------- */
.hr-timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px 16px;
  position:relative;
}
.hr-tl-step{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:20px 18px; position:relative;
}
.hr-tl-step .hr-tl-num{
  font-family:'Inter', sans-serif; color:var(--brass-text); font-weight:700; font-size:.85rem;
}
.hr-tl-step h4{ font-size:.98rem; margin:8px 0 6px; }
.hr-tl-step p{ font-size:.85rem; margin:0; }
@media (min-width:900px){
  .hr-tl-step:not(:last-child)::after{
    content:"";
    position:absolute; top:50%; right:-26px; width:20px; height:2px;
    background:var(--line);
  }
}

/* ---------- Indexing partners ---------- */
.hr-index-grid{
  display:flex; flex-wrap:wrap; gap:16px; justify-content:center;
}
.hr-index-chip{
  display:flex; align-items:center; gap:10px;
  background:#fff; border:1px solid var(--line); border-radius:12px;
  padding:14px 18px; text-decoration:none; color:var(--navy);
  font-weight:600; font-size:.88rem;
  transition:border-color .2s ease, transform .2s ease;
}
.hr-index-chip:hover{ border-color:var(--brass); transform:translateY(-2px); color:var(--brass-text); text-decoration:none; }
.hr-index-chip img{ height:26px; width:auto; object-fit:contain; }
.hr-index-chip .hr-idx-fallback{
  width:26px;height:26px;border-radius:50%;background:var(--navy);color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:.72rem;font-weight:700;
}

/* ---------- CTA band ---------- */
.hr-cta-band{
  background:var(--navy);
  border-radius:var(--radius-lg);
  color:#fff;
  padding:48px;
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:30px;
  align-items:center;
}
.hr-cta-band h2{ color:#fff; font-size:1.9rem; }
.hr-cta-band p{ color:#C6D0DA; }
.hr-cta-band .hr-cta-actions{ display:flex; flex-direction:column; gap:12px; }
.hr-cta-band .hr-btn-primary{ text-align:center; justify-content:center; }
.hr-cta-band .hr-btn-outline{ background:transparent; color:#fff; border-color:rgba(255,255,255,.5); text-align:center; justify-content:center; }
.hr-cta-band .hr-btn-outline:hover{ border-color:var(--brass); color:var(--brass-light); }
.hr-cta-meta{ display:flex; gap:22px; margin-top:18px; flex-wrap:wrap; }
.hr-cta-meta div span{ display:block; font-size:.72rem; text-transform:uppercase; color:#9FB0BF; }
.hr-cta-meta div b{ font-family:'Inter', sans-serif; font-size:1.05rem; }

/* ---------- Resource cards ---------- */
.hr-resource-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.hr-resource-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:22px; text-decoration:none; display:block;
  transition:box-shadow .2s ease, transform .2s ease;
}
.hr-resource-card:hover{ box-shadow:var(--shadow); transform:translateY(-3px); text-decoration:none; }
.hr-resource-card .hr-icn{ font-size:1.3rem; color:var(--brass-text); }
.hr-resource-card h4{ font-size:1rem; margin:10px 0 4px; color:var(--navy); }
.hr-resource-card p{ font-size:.84rem; margin:0; }

/* ---------- FAQ ---------- */
.hr-faq{ max-width:820px; margin:0 auto; }
.hr-faq-item{ border-bottom:1px solid var(--line); padding:18px 0; }
.hr-faq-item summary{ cursor:pointer; font-weight:600; color:var(--navy); font-size:1rem; list-style:none; display:flex; justify-content:space-between; }
.hr-faq-item summary::-webkit-details-marker{ display:none; }
.hr-faq-item summary::after{ content:"+"; color:var(--brass-text); font-size:1.3rem; }
.hr-faq-item[open] summary::after{ content:"–"; }
.hr-faq-item p{ margin-top:10px; font-size:.92rem; }

/* ---------- News / notices ---------- */
.hr-news-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.hr-news-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:20px; display:flex; gap:12px; align-items:flex-start;
}
.hr-news-card i{ color:var(--brass-text); margin-top:3px; }
.hr-news-card p{ margin:0; font-size:.9rem; color:var(--ink); }
.hr-news-card time{ display:block; font-family:'Inter', sans-serif; font-size:.7rem; color:var(--muted); margin-top:4px; }

/* ---------- Reveal-on-scroll ---------- */
.hr-reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.hr-reveal.hr-in{ opacity:1; transform:translateY(0); }

@media (prefers-reduced-motion: reduce){
  .hr-ledger-track{ animation:none; }
  .hr-reveal{ opacity:1; transform:none; transition:none; }
}

/* ---------- Responsive ---------- */
@media (max-width:1000px){
  .hr-hero-grid{ grid-template-columns:1fr; }
  .hr-hero-art{ display:none; }
  .hr-overview{ grid-template-columns:1fr; }
  .hr-article-grid{ grid-template-columns:repeat(2,1fr); }
  .hr-area-grid{ grid-template-columns:repeat(2,1fr); }
  .hr-resource-grid{ grid-template-columns:repeat(2,1fr); }
  .hr-timeline{ grid-template-columns:repeat(2,1fr); }
  .hr-issue{ grid-template-columns:1fr; }
  .hr-cta-band{ grid-template-columns:1fr; }
}
@media (max-width:640px){
  .home-redesign section{ padding:40px 0; }
  .hr-article-grid,.hr-area-grid,.hr-resource-grid,.hr-timeline,.hr-news-grid{ grid-template-columns:1fr; }
  .hr-metabar .hr-badge-issue{ margin-left:0; }
  .hr-card-grid{ grid-template-columns:1fr; }
}

/* ==========================================================================
   Additions — hero depth layer, search widget, richer article badges,
   issue cover, featured tabs, testimonials, news timeline, footer.
   ========================================================================== */

/* ---------- Hero ---------- */
.hr-hero{ position:relative; }

/* ---------- Hero illustration: Research / Tech / AI / Publication ---------- */
.hr-hero-art{ position:relative; height:100%; min-height:340px; z-index:1; }
.hr-illustration{ width:100%; height:100%; }
.hr-illustration .hr-il-card{
  fill:#fff; stroke:var(--line); stroke-width:1.2;
  filter:drop-shadow(0 14px 26px rgba(18,42,69,.16));
}
.hr-illustration .hr-il-label{
  font-family:'Inter',sans-serif; font-size:11px; font-weight:600; fill:var(--navy);
}
.hr-illustration .hr-il-sub{
  font-family:'Inter',sans-serif; font-size:8.5px; fill:var(--muted);
}
.hr-illustration .hr-il-accent{ fill:var(--brass); }
.hr-illustration .hr-il-line{ stroke:var(--line); stroke-width:1.4; }
.hr-illustration .hr-il-pulse{ fill:none; stroke:var(--blueprint); stroke-width:1.6; }

/* ---------- Search widget ---------- */
.hr-search-wrap{ margin-top:16px; position:relative; z-index:2; }
.hr-search{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:8px;
  display:flex;
  align-items:center;
  gap:10px;
  max-width:820px;
}
.hr-search-tabs{
  display:flex;
  gap:4px;
  flex-shrink:0;
  border-right:1px solid var(--line);
  padding-right:8px;
}
.hr-search-tabs label{
  font-size:.76rem;
  font-weight:600;
  color:var(--muted);
  padding:8px 10px;
  border-radius:8px;
  cursor:pointer;
  user-select:none;
}
.hr-search-tabs input{ display:none; }
.hr-search-tabs input:checked + label{ background:var(--brass-light); color:var(--brass-text); }
.hr-search input[type="text"]{
  flex:1;
  border:none;
  outline:none;
  font-size:.96rem;
  padding:10px 4px;
  font-family:'Inter',sans-serif;
  color:var(--ink);
  background:transparent;
  min-width:0;
}
.hr-search button{
  border:none;
  background:var(--navy-2);
  color:#fff;
  border-radius:10px;
  padding:11px 20px;
  font-weight:600;
  font-size:.9rem;
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  flex-shrink:0;
}
.hr-search button:hover{ background:var(--hover); }
@media (max-width:640px){
  .hr-search{ flex-wrap:wrap; }
  .hr-search-tabs{ border-right:none; padding-right:0; width:100%; flex-wrap:wrap; }
  .hr-search input[type="text"]{ width:100%; order:3; }
}

/* ---------- Richer article-card badges ---------- */
.hr-badge-row{ display:flex; gap:6px; flex-wrap:wrap; margin:2px 0 4px; }
.hr-badge{
  font-size:.66rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  padding:3px 9px;
  border-radius:20px;
}
.hr-badge-oa{ background:#E4F3EC; color:var(--success); }
.hr-badge-doi{ background:var(--brass-light); color:var(--brass-text); }
.hr-chip-row{ display:flex; gap:6px; flex-wrap:wrap; margin-top:4px; }
.hr-chip{
  font-size:.68rem;
  color:var(--navy-2);
  background:var(--paper-2);
  border:1px solid var(--line);
  border-radius:14px;
  padding:3px 9px;
}

/* ---------- Dynamic journal cover (SVG) ---------- */
.hr-cover-svg{ width:100%; display:block; }
.hr-cover-svg .hr-cv-bg{ fill:var(--navy); }
.hr-cover-svg text{ font-family:'Source Serif 4', 'Georgia', serif; }
.hr-cover-svg .hr-cv-meta{ font-family:'Inter',sans-serif; }

/* ---------- Featured papers tabs ---------- */
.hr-tabs-nav{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:26px; }
.hr-tab-btn{
  border:1px solid var(--line);
  background:#fff;
  color:var(--navy);
  padding:9px 18px;
  border-radius:30px;
  font-size:.86rem;
  font-weight:600;
  cursor:pointer;
}
.hr-tab-btn.hr-tab-active{ background:var(--navy); color:#fff; border-color:var(--navy); }
.hr-tab-panel{ display:none; }
.hr-tab-panel.hr-tab-panel-active{ display:grid; }

/* ---------- Testimonials (honest empty-state) ---------- */
.hr-testimonial-empty{
  border:1.5px dashed var(--line);
  border-radius:var(--radius-lg);
  padding:40px;
  text-align:center;
  background:#fff;
}
.hr-testimonial-empty i{ font-size:1.6rem; color:var(--brass-text); margin-bottom:10px; }
.hr-testimonial-empty h3{ font-size:1.2rem; }
.hr-testimonial-empty p{ max-width:480px; margin:8px auto 0; }
.hr-testimonial-empty a{ margin-top:16px; }

/* ---------- News timeline ---------- */
.hr-news-timeline{ position:relative; padding-left:26px; border-left:2px solid var(--line); }
.hr-tl-news-item{ position:relative; padding-bottom:26px; }
.hr-tl-news-item:last-child{ padding-bottom:0; }
.hr-tl-news-item::before{
  content:""; position:absolute; left:-32px; top:2px;
  width:12px; height:12px; border-radius:50%;
  background:var(--brass); border:2px solid #fff; box-shadow:0 0 0 2px var(--line);
}
.hr-tl-news-item time{ font-family:'Inter', sans-serif; font-size:.72rem; color:var(--muted); }
.hr-tl-news-item p{ margin:4px 0 0; color:var(--ink); font-size:.94rem; }


/* ---------- Announcement marquee (dynamic, real notices/events) ---------- */
.hr-announce{
  background:var(--navy);
  border-bottom:1px solid rgba(255,255,255,.1);
  overflow:hidden;
  padding:0;
}
.hr-announce-track{
  display:flex;
  width:max-content;
  animation:hr-announce-scroll 36s linear infinite;
}
.hr-announce:hover .hr-announce-track{ animation-play-state:paused; }
.hr-announce-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 30px;
  color:#EDF1F6;
  font-size:.84rem;
  white-space:nowrap;
  border-right:1px solid rgba(255,255,255,.12);
}
.hr-announce-item i{ color:var(--brass-light); font-size:.78rem; }
.hr-announce-item a{ color:#fff; text-decoration:none; font-weight:600; }
.hr-announce-item a:hover{ text-decoration:underline; }
@keyframes hr-announce-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){
  .hr-announce-track{ animation:none; overflow-x:auto; }
}