/* Consistent top-banner button style for all pages */
.about-btn {
  background: var(--boston-mid);
  color: #fff;
  border: none;
  border-radius: 5px;
  height: 48px;
  min-width: 180px;
  padding: 0 24px;
  font-size: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
/* Top banner and disclaimer (copied from licenses.css for consistency) */
.top-banner {
  background: #ffffff;
  margin: -24px -24px 12px -24px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(11,35,64,0.06);
}
.city-logo {
  height: 72px;
  width: auto;
  display: block;
  margin: 0;
}

/* disclaimer in top banner, right-aligned */
.disclaimer-banner {
  background: var(--boston-red);
  color: #fff;
  margin: 0 -24px 12px -24px;
  padding: 10px 24px;
}
.disclaimer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.disclaimer-content .disclaimer-label { font-weight: 800; font-size: 1.2rem; }
.disclaimer-content .disclaimer-body { font-size: 1rem; }

@media (max-width: 720px) {
  .disclaimer-content { flex-direction: column; gap: 6px; }
  .disclaimer-content .disclaimer-label { font-size: 1rem; }
  .disclaimer-content .disclaimer-body { font-size: 0.95rem; text-align: center; }
}
/* Our Team styles — matches licenses.css and entertainment-licenses-style.css structure */

:root {
  --boston-navy: #0b2340;
  --boston-mid: #123a5b;
  --boston-light: #f6f8fb;
  --boston-red: #c62828;
  --boston-muted: #475b6a;
  --desc-muted: #6b7280;
}

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #111;
  margin: 24px;
}

/* Header */
header {
  background: var(--boston-navy);
  color: #fff;
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 18px;
}
header h1 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.02;
  margin: 0 0 8px 0;
}
header a { color: rgba(255,255,255,0.95); }

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Headings and copy */
h2 {
  color: var(--boston-mid);
  margin: 0 0 12px 0;
}
p {
  color: #111;
  line-height: 1.45;
}

/* Images */
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Team photos */
.team-photo {
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.team-photo-square {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: left center;
  display: block;
  margin: 0 auto;
}

/* Team grid layout */
.team-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
.team-member {
  flex: 1 1 320px;
  max-width: 480px;
}
.team-member h2 {
  text-align: center;
  margin-top: 8px;
}

/* Utility classes */
.muted {
  color: var(--boston-muted);
  font-size: 13px;
}

/* Responsive layout for mobile */
@media (max-width:900px) {
  .container { padding: 0 8px; }
  .team-grid { flex-direction: column; gap: 16px; }
}

@media (max-width:480px) {
  header { padding: 12px 8px; border-radius: 0; }
  .container { padding: 0 2px; }
  .team-photo, .team-photo-square { width: 100%; max-width: 220px; }
}

/* Small button styles (kept but commented out for potential use) */
/*
button {
  padding: 8px 12px;
  cursor: pointer;
}
*/
