/* Programs & Events page */

.prg-hero { width: 100%; height: 55vh; margin-top: 65px; overflow: hidden; }
.prg-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.prg-intro p { font-size: 1rem; font-weight: 300; color: #4a4740; line-height: 1.85; margin-top: 1.5rem; }
.prg-intro p + p { margin-top: 1rem; }

.fmt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(201, 168, 76, .1); margin-top: 2rem; }
.fmt-cell { background: var(--deep); padding: 2.75rem; transition: background .25s; }
.fmt-cell:hover { background: var(--ink); }
.fmt-cell h3 { font-family: var(--fd); font-size: 1.6rem; font-weight: 600; color: var(--gl); margin-bottom: .75rem; }
.fmt-cell p { font-size: .83rem; font-weight: 300; color: rgba(250, 249, 246, .6); line-height: 1.75; }

@media (max-width: 960px) {
  .prg-hero { height: 40vh; }
  .fmt-grid { grid-template-columns: 1fr; }
}
