
/* HEADER */
.governing-header h1 {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 32px;
}

.divider {
  width: 70px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto 40px;
}

/* GRID */
.governing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.governing-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
  border-top: 4px solid var(--primary-blue);
}

/* FULL WIDTH CARD */
.full-width {
  grid-column: span 2;
}

/* HOVER */
.governing-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* TITLE */
.governing-box h3 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.governing-box h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin-top: 6px;
}

/* LIST */
.styled-list {
  list-style: none;
  padding: 0;
}

.styled-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.7;
  color: #444;
}

/* ICON BULLET */
.styled-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: bold;
}

/* HOVER EFFECT */
.styled-list li:hover {
  color: var(--primary-blue);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .governing-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .governing-header h1 {
    font-size: 24px;
  }
}