/* ASBG Officers Page Custom Styles */
/* Phil Hamer 10/29/2025 */

/* Section wrapper */
.officers-section {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: "Segoe UI", Roboto, sans-serif;
}

/* Title */
.officers-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #002855; /* Hancock blue accent */
}

/* Card grid */
.officer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Individual card */
.officer-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.officer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Officer photo */
.officer-card img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Officer text */
.officer-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
}

.officer-title {
  color: #777;
  font-size: 0.95rem;
}

/* .officers-section {
  background: #f7f9fb;
  border-radius: 1rem;
} */
