/* -- Reset -- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: #fff;
  color: #222;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.65;
}

/* -- Links -- */
a { color: #297878; text-decoration: none; }
a:hover, a:focus { text-decoration: underline; color: #1a5555; }

/* -- Layout -- */
.site-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 130px;
}

/* -- Header -- */
.site-header {
  text-align: center;
  padding: 24px 0 0;
  border-bottom: 2px solid #297878;
}
.site-header img { max-width: 100%; height: auto; }

/* -- Nav -- */
.site-nav {
  background: #ffffff;
  border-bottom: 0px solid #ddd;
  padding: 10px 0;
  text-align: center;
}
.site-nav a { display: inline-block; margin: 4px 6px; }
.site-nav img { height: 25px; vertical-align: middle; transition: opacity 0.15s; }
.site-nav a:hover img { opacity: 0.75; }

/* -- Search -- */
.search-wrap {
  text-align: center;
  padding: 14px 0 4px;
  border-bottom: 1px solid #e0e0e0;
}
.search-wrap iframe {
  width: 100%; max-width: 650px; height: 40px;
  border: none; overflow: hidden; display: block; margin: 0 auto;
}

/* -- Section label -- */
.section-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin: 28px 0 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e0e0e0;
}

/* -- Review card -- */
.review-card {
  display: flex;
  gap: 18px;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  align-items: flex-start;
  background: #fff;
}
.review-thumb { flex: 0 0 120px; }
.review-thumb a { display: block; }
.review-thumb img {
  width: 120px; height: auto; display: block;
  border: 1px solid #ddd; transition: opacity 0.15s;
}
.review-thumb a:hover img { opacity: 0.85; }
.review-body { flex: 1; font-size: 0.95rem; }
.review-body p { margin: 0 0 8px; }
.review-body strong { color: #111; }
.read-more {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.88rem;
  color: #297878;
  font-style: italic;
}

/* -- Sound Bites card -- */
.soundbites-card iframe {
  width: 100%; max-width: 500px; height: 42px;
  border: 0; margin-top: 8px; display: block;
}
.soundbites-date { font-size: 0.78rem; color: #888; margin-top: 4px; }

/* -- Year archive -- */
.year-archive {
  margin: 32px 0 24px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}
.year-archive p {
  margin: 0 0 10px;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.year-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.year-links a {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #297878;
  border-radius: 20px;
  font-weight: 700;
  color: #297878;
  font-size: 0.82rem;
  transition: background 0.15s, color 0.15s;
}
.year-links a:hover { background: #297878; color: #fff; text-decoration: none; }

/* -- Footer -- */
.site-footer {
  border-top: 1px solid #e0e0e0;
  padding: 20px 0 16px;
  font-size: 0.78rem;
  color: #777;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  text-align: center;
}
.site-footer a { color: #297878; }

/* -- Sticky pitch bar -- */
.sticky-pitch {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 600px;
  height: 60px;
  background: #fff;
  border-top: 2px solid #297878;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 0 20px;
}
.sticky-pitch iframe { width: 100%; height: 80px; border: none; }

/* -- Mobile -- */
@media (max-width: 600px) {
  .review-card { flex-direction: column; gap: 10px; }
  .review-thumb { flex: unset; }
  .review-thumb img { width: 100px; }
  .site-nav img { height: 22px; }
  .sticky-pitch { height: 80px; }
  .sticky-pitch iframe { height: 70px; }
}
