.council-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.council-header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.council-header h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.council-lead {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.council-meta {
  font-size: 0.95rem;
  color: #555;
}

.council-section {
  margin-bottom: 2.5rem;
}

.council-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.35rem;
}

/* Prime Minister card */
.person-card--pm {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.person-card--pm .person-photo img {
  border-radius: 4px;
}

/* Cabinet grid */
.cabinet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem 1.5rem;
}

.person-card {
  text-align: center;
}

.person-photo img {
  display: block;
  margin: 0 auto 0.75rem;
  border-radius: 4px;
}

.person-name {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

.person-role {
  font-size: 0.95rem;
  margin: 0;
  color: #555;
}

/* Optional: visually distinguish the Secretary */
.person-card--secretary {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}



.juclandia-timeline {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  position: relative;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.jt-header h1 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.jt-intro {
  font-size: 0.98rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 640px;
}

.jt-line {
  position: absolute;
  left: 1.5rem;
  top: 4.5rem;
  bottom: 2rem;
  width: 3px;
  background: linear-gradient(to bottom, #ffcd4d, #f39c12);
  opacity: 0.85;
}

.jt-events {
  list-style: none;
  margin: 0;
  padding: 0 0 0 3.5rem;
}

.jt-event {
  position: relative;
  margin-bottom: 1.8rem;
  padding-left: 0.5rem;
}

.jt-icon {
  position: absolute;
  left: -3.1rem;
  top: 0.25rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 3px solid #ffcd4d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #c47a00;
  box-shadow: 0 0 0 2px #fff;
}

.jt-content {
  background: #fffdf7;
  border-radius: 6px;
  padding: 0.8rem 1rem 0.9rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border-left: 3px solid #f1c40f;
}

.jt-title {
  font-size: 1.03rem;
  margin: 0 0 0.1rem;
}

.jt-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: #b36b00;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jt-text {
  font-size: 0.94rem;
  margin: 0;
  color: #444;
}

/* Colour accents per category (optional but nice) */

.jt-event--founding .jt-content { border-left-color: #27ae60; }
.jt-event--founding .jt-icon { border-color: #27ae60; color: #1e8449; }

.jt-event--commemoration .jt-content { border-left-color: #8e44ad; }
.jt-event--commemoration .jt-icon { border-color: #8e44ad; color: #6c3483; }

.jt-event--law .jt-content { border-left-color: #2980b9; }
.jt-event--law .jt-icon { border-color: #2980b9; color: #1f618d; }

.jt-event--sovereignty .jt-content { border-left-color: #c0392b; }
.jt-event--sovereignty .jt-icon { border-color: #c0392b; color: #922b21; }

.jt-event--monarchy .jt-content { border-left-color: #d35400; }
.jt-event--monarchy .jt-icon { border-color: #d35400; color: #a04000; }

.jt-event--constitution .jt-content { border-left-color: #16a085; }
.jt-event--constitution .jt-icon { border-color: #16a085; color: #0e6655; }

.jt-event--diplomacy .jt-content { border-left-color: #34495e; }
.jt-event--diplomacy .jt-icon { border-color: #34495e; color: #2c3e50; }

.jt-event--federal .jt-content,
.jt-event--supranational .jt-content,
.jt-event--institutions .jt-content { border-left-color: #9b59b6; }
.jt-event--federal .jt-icon,
.jt-event--supranational .jt-icon,
.jt-event--institutions .jt-icon { border-color: #9b59b6; color: #6c3483; }

.jt-event--transition .jt-content { border-left-color: #7f8c8d; }
.jt-event--transition .jt-icon { border-color: #7f8c8d; color: #566573; }

.jt-event--pragma .jt-content { border-left-color: #2ecc71; }
.jt-event--pragma .jt-icon { border-color: #2ecc71; color: #239b56; }

.jt-event--crisis .jt-content { border-left-color: #e74c3c; }
.jt-event--crisis .jt-icon { border-color: #e74c3c; color: #922b21; }

/* Responsive tweaks */

@media (max-width: 640px) {
  .jt-line {
    left: 1.2rem;
  }
  .jt-events {
    padding-left: 3rem;
  }
  .jt-icon {
    left: -2.8rem;
  }
}



.jcoop {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Hero section using flag colours: red–green–purple */

.jcoop-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  border-radius: 10px;
  padding: 1.8rem 1.6rem;
  background: linear-gradient(135deg, #e53935 0%, #008b5a 45%, #6a1b9a 100%);
  color: #fff;
}

.jcoop-hero-text {
  flex: 2 1 260px;
}

.jcoop-hero h1 {
  font-size: 1.9rem;
  margin: 0 0 0.5rem;
}

.jcoop-lead {
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 0 0.9rem;
}

.jcoop-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.jcoop-facts li {
  margin-bottom: 0.2rem;
}

.jcoop-fact-label {
  font-weight: 600;
}

.jcoop-hero-symbol {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.jcoop-circle {
  border-radius: 999px;
  position: absolute;
}

.jcoop-circle--outer {
  width: 110px;
  height: 110px;
  border: 4px solid rgba(255, 255, 255, 0.8);
}

.jcoop-circle--inner {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(255, 255, 255, 0.95);
}

.jcoop-icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #ffffff;
  color: #6a1b9a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-bottom: 0.6rem;
}

.jcoop-symbol-caption {
  font-size: 0.8rem;
  max-width: 10rem;
  opacity: 0.9;
}

/* Middle sections */

.jcoop-constitution,
.jcoop-grid-section,
.jcoop-role {
  margin-bottom: 2.2rem;
}

.jcoop-constitution h2,
.jcoop-grid-section h2,
.jcoop-role h2 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.3rem;
}

.jcoop-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.jcoop-col {
  flex: 1 1 260px;
  font-size: 0.95rem;
  color: #444;
}

.jcoop-caption {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.2rem;
}

/* Grid of co-operatives – accents in green and purple */

.jcoop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.jcoop-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem 1.1rem 1rem;
  box-shadow: 0 1px 5px rgba(0,0,0,0.06);
  border-top: 3px solid #008b5a;
  position: relative;
}

.jcoop-card-icon {
  position: absolute;
  top: -1.1rem;
  left: 0.9rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: #6a1b9a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.jcoop-card-title {
  font-size: 1rem;
  margin: 0.4rem 0 0.2rem 0;
  padding-left: 2.7rem;
}

.jcoop-card-text {
  font-size: 0.9rem;
  color: #444;
  margin: 0.1rem 0 0;
}

/* Final section */

.jcoop-role p {
  font-size: 0.95rem;
  color: #444;
}

/* Responsive */

@media (max-width: 720px) {
  .jcoop-hero {
    padding: 1.4rem 1.2rem 1.6rem;
  }
  .jcoop-hero h1 {
    font-size: 1.6rem;
  }
}