.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Lora', serif;
  line-height: 1.7;
}

.page-title {
  text-align: center;
  font-size: 32px;
  color: #114d5f;
  margin-bottom: 40px;
  font-weight: 700;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  padding-bottom: 6px;
}

/* Grid */
.org-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Cards */
.org-card {
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  padding: 20px;
}

.org-card.full {
  grid-column: span 2;
}

.org-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #0f5e76;
  text-align: center;
}

/* Video */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Responsive */
@media(max-width: 900px){
  .org-grid {
    grid-template-columns: 1fr;
  }
  .org-card.full {
    grid-column: span 1;
  }
}
