.md-page-hero {
  max-width: 61rem;
  margin: 0 auto 1rem;
  padding: 0 1rem;
}
.md-page-hero__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

[data-md-color-scheme="slate"] .md-page-hero__img {
  filter: invert(1);
}

.md-page-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 0 0 0.5rem;
  max-width: 61rem;
  margin: 0 auto;
}

.md-page-feature-card {
  padding: 0;
  border-radius: 0.375rem;
  background: var(--md-default-bg-color--light, rgba(0, 0, 0, 0.05));
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

[data-md-color-scheme="slate"] .md-page-feature-card {
  background: var(--md-default-bg-color--lighter, rgba(255, 255, 255, 0.05));
}

.md-page-feature-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.md-page-feature-card__img {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.md-page-feature-card__img img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

[data-md-color-scheme="slate"] .md-page-feature-card__img img {
  filter: invert(1);
}

.md-page-feature-card__body {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
}

.md-page-feature-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  color: var(--md-default-fg-color);
}

.md-page-feature-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

[data-md-color-scheme="slate"] .md-page-feature-card__icon {
  color: rgba(255, 255, 255, 0.9);
}


.md-page-feature-card__text {
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}

.md-page-feature-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.md-page-feature-card__description {
  font-size: 0.8rem;
  opacity: 0.85;
  margin: 0.25em 0 0;
  line-height: 1.4;
}

.info {
  color: #5488e8;
}