.app-page main, .app-page > .site-footer {
  width: min(1120px, calc(100% - 64px));
}
.app-feature {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  padding-top: 48px;
}
.app-heading { grid-column: 1 / -1; }
.app-heading h1 {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -.6px;
  overflow-wrap: anywhere;
}
.app-heading p { margin: 0; color: var(--muted); }
.app-screenshot {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.app-summary { min-width: 0; }
.app-summary p { margin: 0 0 24px; color: var(--muted); }
.app-summary .app-description {
  color: var(--secondary-text);
  font-size: 16px;
  line-height: 1.65;
}
.visit-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--violet);
  color: #fff;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.visit-app:hover { background: #7130ce; }
@media (max-width: 800px) {
  .app-feature { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; }
  .app-summary { max-width: 65ch; }
}
@media (max-width: 600px) {
  .app-page main, .app-page > .site-footer { width: calc(100% - 32px); }
}
