.feature { margin-bottom: 32px; }

.feature-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.feature-text p {
  font-size: 1rem;
  color: var(--berkeley-blue);
  margin-bottom: 12px;
  line-height: 1.7;
}
.feature-text h2 {
  font-size: 1.75rem; /* slightly larger than h3 */
  margin-bottom: 12px;
  color: var(--berkeley-blue);
}
.feature-text h3 {
  font-size: 1.5rem; /* keep current size */
  margin-bottom: 12px;
  color: var(--berkeley-blue);
}

.feature-details { list-style: none; margin-top: 16px; }
.feature-details li {
  padding: 3px 0 3px 24px;
  position: relative;
  color: var(--berkeley-blue);
  font-size: 0.95rem;
  line-height: 1.6;
}
.feature-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--berkeley-blue-80);
  font-weight: bold;
}

@media (max-width: 1024px) {
  .feature-content { gap: 32px; }
}

@media (max-width: 768px) {
  .feature-content { grid-template-columns: 1fr; gap: 20px; }
}

