/* Poway Adult School blue-and-green brand treatment. */
:root {
  --navy: #156a9a;
  --deep: #164b70;
  --blue: #2586b8;
  --sky: #e7f4f8;
  --coral: #78a943;
  --gold: #b5cf4b;
  --cream: #ffffff;
  --ink: #203e50;
  --muted: #5f7480;
  --line: #d6e4ea;
  --shadow: 0 16px 50px rgba(22, 75, 112, 0.13);
}

body {
  background: #f7fafb;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(21, 106, 154, 0.18);
}

.utility,
footer {
  background: #164b70;
}

.brand-mark {
  background: linear-gradient(135deg, #2586b8 0 50%, #78a943 50% 100%);
}

.nav-wrap nav a:hover,
.nav-wrap nav a.active {
  color: #5f8f2f;
  border-color: #78a943;
}

.hero {
  background: linear-gradient(120deg, #164b70 0 63%, #2586b8 63%);
}

.workshop-hero {
  background: linear-gradient(115deg, #164b70, #2586b8);
}

.education-hero {
  background: linear-gradient(115deg, #164b70, #1f739d);
}

.btn.primary {
  background: #78a943;
}

.btn.primary:hover {
  background: #608d34;
}

.quick-card.coral { background: #78a943; }
.quick-card.blue { background: #2586b8; }
.quick-card.gold { background: #b5cf4b; }
.quick-card.navy { background: #164b70; }

.support-card {
  border-top-color: #b5cf4b;
}

.feature-job,
.safety {
  background: #156a9a;
}

.contact-strip {
  background: #e7f4f8;
}

.featured-contact {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: center;
}

.featured-contact > div {
  display: flex;
  flex-direction: column;
}

.contact-photo {
  width: 88px;
  height: 110px;
  object-fit: cover;
  object-position: center 22%;
  border: 4px solid #ffffff;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(22, 75, 112, 0.18);
}

.interest-section {
  padding: 5rem 6vw 3.5rem;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.interest-card {
  min-height: 330px;
  padding: 2rem;
  background: #ffffff;
  border-top: 6px solid #78a943;
  box-shadow: 0 10px 30px rgba(22, 75, 112, 0.08);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.interest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.interest-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #5f8f2f;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.interest-card h3 {
  margin: 2rem 0 0.6rem;
  color: #164b70;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2rem;
  line-height: 1.08;
}

.interest-card p {
  color: var(--muted);
}

.interest-card .audience {
  color: #203e50;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.interest-card b {
  margin-top: auto;
  color: #2586b8;
  font-size: 0.84rem;
}

.resource-subhead {
  padding: 1rem 6vw 0;
}

.resource-subhead h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.note,
.palomar-callout {
  background: #b5cf4b;
}

@media (max-width: 980px) {
  .nav-wrap nav { background: #ffffff; }
  .interest-grid { grid-template-columns: 1fr; }
}
