.about-title-trigger {
  cursor: pointer;
  display: inline-block;
}
.about-title-trigger:hover {
  color: var(--gold, #c8a200);
}
.about-overlay {
  position: fixed !important;
  inset: 0;
  z-index: 3000 !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.68);
}
.about-overlay.is-open {
  display: flex;
}
body.about-modal-open { overflow: hidden; }
.about-overlay,
.about-overlay * {
  box-sizing: border-box;
}
.about-modal {
  width: min(720px, 100%);
  max-height: min(86vh, 820px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0f2418;
  color: white;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
body.light .about-modal {
  background: white;
  color: #111827;
  border-color: #b8dbb8;
}
.about-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
body.light .about-head {
  border-bottom-color: #b8dbb8;
}
.about-head h2 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--gold, #c8a200);
}
body.light .about-head h2 {
  color: #1e7a40;
}
.about-close {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.1);
  color: inherit;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}
body.light .about-close {
  border-color: #b8dbb8;
  background: #f4f6f4;
}
.about-body {
  display: grid;
  gap: 14px;
  padding: 18px;
  min-height: 0;
  overflow: auto;
}
.about-section {
  display: grid;
  gap: 7px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
}
.about-section h3 {
  margin: 0;
  font-size: .82rem;
  color: var(--gold, #c8a200);
  text-transform: uppercase;
  letter-spacing: .04em;
}
body.light .about-section h3 {
  color: #1e7a40;
}
.about-section p,
.about-section li {
  color: rgba(255,255,255,.76);
  font-size: .9rem;
  line-height: 1.45;
}
body.light .about-section p,
body.light .about-section li {
  color: #374151;
}
.about-section ul {
  margin: 0;
  padding-left: 18px;
}
.about-section a {
  color: var(--gold, #c8a200);
  font-weight: 800;
}
body.light .about-section a {
  color: #1e7a40;
}
.about-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
}
.about-meta-item {
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  font-size: .88rem;
}
body.light .about-meta-item {
  background: #f4f6f4;
  border-color: #b8dbb8;
}
.about-meta-item strong {
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 520px) {
  .about-overlay {
    align-items: flex-start;
    padding: 8vh 12px 12px;
  }
  .about-modal {
    width: 100%;
    max-height: 74dvh;
  }
  .about-head { padding: 10px 12px; }
  .about-body { padding: 12px; }
}
