.anth-home .anth-dor {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.anth-home .anth-dor-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
  text-align: center;
  color: var(--text);
  margin: 0 0 40px;
}

.anth-home .anth-dor-title em {
  font-style: normal;
  color: var(--teal);
}

.anth-home .anth-dor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.anth-home .anth-dor-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  background: var(--surface);
}

.anth-home .anth-dor-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--teal-dim);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.anth-home .anth-dor-card-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
  line-height: 1.35;
}

.anth-home .anth-dor-card-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

@media (max-width: 900px) {
  .anth-home .anth-dor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .anth-home .anth-dor {
    padding: 48px 0;
  }
  .anth-home .anth-dor-grid {
    grid-template-columns: 1fr;
  }
}
