/* ============================================
   Civic Resilience Modules – Common Layout
   ============================================ */

/* Hero Section */
.module-hero {
  height: 40vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Merriweather", serif;
}

.module-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.55);
}

.module-hero h1, .module-hero p {
  position: relative;
  z-index: 2;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.6);
}

/* Body */
.module-body {
  background: var(--civic-light);
  color: var(--civic-text);
  padding: 3em 10%;
  font-family: "Merriweather", serif;
  line-height: 1.8;
}

.timeline {
  text-align: center;
  margin: 3em auto;
  width: 90%;
  max-width: 800px;
  overflow: hidden;
}

.timeline img {
  width: 100%;
  height: auto;
  max-width: 750px;
  border: 2px solid var(--civic-gold);
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  transition: transform 0.25s ease;
}

.timeline img:hover {
  transform: scale(1.01);
}

/* Responsive */
@media (max-width: 768px) {
  .module-body { padding: 2em 5%; }
  .module-hero { height: 30vh; }
}
.quiz-result {
  background-color: #f9fafb;
  border: 2px solid #3b82f6;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
  text-align: center;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}
.quiz-result h3 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}
.quiz-result p {
  color: #334155;
}

