/* faq-styles.css — Medius Global FAQ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a1a;
  background: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 48px;
}

header a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
}

header a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

p {
  margin-bottom: 16px;
}

a {
  color: #BD1D2C;
  text-decoration: underline;
}

/* Hub page cluster cards */
.cluster-nav {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.cluster-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 150ms ease;
}

.cluster-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.cluster-card h2 {
  margin-bottom: 8px;
}

.cluster-card h2 a {
  color: #1a1a1a;
  text-decoration: none;
}

.cluster-card h2 a:hover {
  color: #BD1D2C;
  text-decoration: underline;
}

.cluster-card p {
  color: #555;
  font-size: 15px;
  margin-bottom: 0;
}

/* Cluster intro */
.cluster-intro {
  font-size: 17px;
  color: #444;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.cluster-byline {
  font-size: 14px;
  color: #777;
  margin-top: -8px;
  margin-bottom: 28px;
}

/* FAQ items */
.faq-item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-of-type {
  border-bottom: none;
}

.further-reading {
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 0;
}

.further-reading a {
  color: #BD1D2C;
}

/* CTA block */
.cta {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 32px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.cta h2 {
  margin-bottom: 8px;
}

.cta p {
  margin-bottom: 20px;
  color: #444;
}

.cta-button {
  display: inline-block;
  background: #BD1D2C;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.cta-button:hover {
  background: #a01826;
}

footer {
  border-top: 1px solid #e5e5e5;
  padding: 32px 0;
  margin-top: 48px;
}

footer p {
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}

footer a {
  color: #555;
}

.disclaimer {
  margin-top: 12px;
  font-size: 12px;
}

@media (max-width: 600px) {
  h1 { font-size: 22px; }
  h3 { font-size: 16px; }
  .cta { padding: 24px; }
}
