.hydrant-section {
  margin: 2rem auto;
  max-width: 1100px;
  border-radius: 6px;
  overflow: hidden;
  color: #fff;
}

/* Header */
.section-header {
  display: flex;
  justify-content: space-between;
  background-color: #f87d1c;
  padding: 1rem;
  flex-wrap: wrap;
}

.section-header h2 {
  color: #fff;
  margin: 0.5rem 0;
  text-transform: uppercase;
  font-size: 1.2rem;
  text-align: center;
  flex: 1 1 300px;
}

/* Content layout */
.content-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem;
}

/* Left column grid */
.left-column {
  flex: 1 1 50%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-items: center;
}

.item {
  text-align: center;
}

.item img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background-color: #fff;
  border: 2px solid #f87d1c;
  border-radius: 6px;
  padding: 6px;
}

.item p {
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Last wide item */
.item.wide {
  grid-column: span 2;
}

/* Right column */
.right-column {
  flex: 1 1 45%;
  text-align: center;
  margin-top: 1rem;
}

.diagram-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.right-column img {
  max-width: 100%;
  border: 2px solid #f87d1c;
  border-radius: 6px;
  background-color: #fff;
  padding: 4px;
}
