.responsible-wrap {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: var(--discipline-gap) 24px;
}

.responsible-wrap h1 {
  font-size: 32px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent);
}

.responsible-wrap p {
  font-size: 15px;
  margin-bottom: 1.1rem;
}

.responsible-wrap h2 {
  font-size: 20px;
  font-weight: normal;
  margin: 2rem 0 0.85rem;
}

.responsible-quote {
  font-size: 22px;
  font-style: italic;
  text-align: center;
  padding: 2rem;
  margin: 2rem 0;
  color: var(--primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.responsible-resources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 2rem 0;
}

.resource-card {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.resource-card h3 {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.resource-card p {
  font-size: 13px;
  margin: 0;
}

.responsible-image {
  text-align: center;
  margin: 2rem 0;
  overflow: hidden;
  max-width: 100%;
}

.responsible-image img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}

@media (max-width: 600px) {
  .responsible-resources {
    grid-template-columns: 1fr;
  }
}
