.et-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
  color: #222;
}
.et-section {
  margin-bottom: 40px;
}
.et-section-title {
  color: #1a4d8f;
  font-size: 1.35em;
  font-weight: bold;
  border-bottom: 2px solid #1a4d8f;
  padding-bottom: 8px;
  margin-bottom: 18px;
  margin-top: 0;
}
.et-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px 28px;
}
.et-member {
  background: #fafbfc;
  border-left: 4px solid #1a4d8f;
  padding: 12px 14px;
  border-radius: 0 6px 6px 0;
  transition: background 0.2s ease;
}
.et-member:hover {
  background: #eef3fa;
}
.et-member p {
  margin: 0;
}
@media (max-width: 600px) {
  .et-members-grid {
    grid-template-columns: 1fr;
  }
  .et-section-title {
    font-size: 1.15em;
  }
}
