/* Float the headshot left on the home page */
img[alt="Jericho Cain"] {
  float: left;
  margin: 0 1rem 1rem 0;
  max-width: 200px;          /* tweak size here */
  border-radius: 0;        /* circle crop */
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Make sure content below clears the float */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.gearset {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .gearset { grid-template-columns: 1fr 1fr; }
}
.gear-item { padding: 1rem; border-left: 4px solid #888; background: #f9f9f9; }
.gear-item h3 { margin: 0 0 .5rem; font-size: 1.15rem; }

.teaching ul {
  list-style: none;       /* remove bullets */
  padding: 0;
  margin: 0;
  text-align: center;     /* center list text */
}

.teaching li {
  margin: 0.5rem 0;       /* spacing between items */
}

.schedule table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.schedule th,
.schedule td {
  border: 1px solid #ccc;
  padding: 0.6rem 0.8rem;
  vertical-align: top;
}

.schedule th {
  background: #f5f5f5;
  font-weight: 600;
  text-align: left;
}

.schedule tr:nth-child(even) {
  background: #fafafa;
}

