/* ============================================================
   ACQUIRY — Article Page Stylesheet
   ============================================================ */

/* ---- Article Hero ---- */
.article-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,46,0.55) 0%, rgba(13,27,46,0.85) 100%);
}
.article-hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
  max-width: 1200px;
  width: 100%;
}
.article-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.article-category {
  font-family: 'Rubik', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: #086AD8;
  border: 1px solid #086AD8;
  padding: 6px 14px;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(8,106,216,0.45);
}
.article-date {
  font-family: 'Rubik', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.article-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.article-hero-byline {
  font-family: 'Rubik', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.article-hero-byline a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Article Layout ---- */
.article-main {
  padding: 72px 0 80px;
  background: #ffffff;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* ---- Article Content ---- */
.article-content {
  max-width: 720px;
}
.article-lead {
  font-family: 'Rubik', sans-serif;
  font-size: 1.13rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8edf3;
}
.article-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #0D1B2E;
  margin: 44px 0 16px;
}
.article-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0D1B2E;
  margin: 32px 0 12px;
}
.article-content p {
  font-family: 'Rubik', sans-serif;
  font-size: 0.97rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}
.article-content strong {
  color: #0D1B2E;
  font-weight: 500;
}
.article-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.article-list li {
  font-family: 'Rubik', sans-serif;
  font-size: 0.97rem;
  color: #444;
  line-height: 1.75;
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #f0f4f8;
}
.article-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #086AD8;
}

/* ---- Inline CTA ---- */
.article-cta-inline {
  background: #EEF4FB;
  border-left: 3px solid #086AD8;
  border-radius: 0 6px 6px 0;
  padding: 28px 32px;
  margin: 48px 0 0;
}
.article-cta-inline p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 16px;
}

/* ---- Sidebar ---- */
.article-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-widget {
  background: #F4F9FC;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0D1B2E;
  margin-bottom: 16px;
}
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-links li {
  border-bottom: 1px solid #e0e8f0;
}
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.87rem;
  color: #444;
  padding: 10px 0;
  transition: color 0.2s;
}
.sidebar-links a:hover { color: #086AD8; }
.sidebar-cta {
  background: #0D1B2E;
  border-radius: 6px;
  padding: 28px 24px;
  margin-bottom: 24px;
}
.sidebar-cta h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.sidebar-cta p {
  font-family: 'Rubik', sans-serif;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 18px;
}
.btn-block { width: 100%; text-align: center; justify-content: center; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .article-sidebar { position: static; }
  .article-content { max-width: 100%; }
}
@media (max-width: 640px) {
  .article-hero-inner { padding: 60px 0 40px; }
  .article-main { padding: 48px 0 60px; }
}
