.shortcuts-guide-page {
  --surface: #ffffff;
  --surface-border: #e5e7eb;
  --title: #111827;
  --text: #1f2937;
  --muted: #4b5563;
  --accent: #1a73e8;
  --accent-strong: #1558b0;

  background: #ffffff;
  min-height: 100vh;
  color: var(--text);
  padding: 24px 16px 48px;
}

.shortcuts-hero,
.shortcuts-main {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.shortcuts-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--surface-border);
  padding: 0 0 20px;
}

.shortcuts-eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.shortcuts-hero h1 {
  margin: 0;
  color: var(--title);
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
}

.shortcuts-subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.shortcuts-chip-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.shortcuts-chip {
  color: var(--accent);
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

.shortcuts-chip:hover,
.shortcuts-chip:focus {
  color: var(--accent-strong);
}

.shortcuts-main {
  margin-top: 8px;
  display: grid;
  gap: 18px;
}

.shortcuts-part {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 18px;
}

.shortcuts-part__heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shortcuts-part__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 26px;
  border-radius: 4px;
  color: #1f3f7b;
  background: #eaf1ff;
  border: 1px solid #d3e1ff;
  font-size: 12px;
  font-weight: 700;
}

.shortcuts-part h2 {
  margin: 0;
  color: var(--title);
  font-size: 26px;
  line-height: 1.3;
}

.shortcuts-part__description {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.45;
}

.shortcuts-steps {
  margin: 16px 0 0;
  display: grid;
  gap: 14px;
}

.shortcuts-step {
  border: 1px solid #eceff3;
  background: #fafafa;
  border-radius: 8px;
  padding: 12px;
}

.shortcuts-step__title {
  margin: 0 0 10px;
  line-height: 1.5;
  color: #1f2937;
  font-weight: 600;
}

.shortcuts-step__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #d9dde5;
  box-shadow: none;
  margin: 0 auto;
}

.shortcuts-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #0d5bd6;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 18px;
  min-width: 180px;
}

.shortcuts-btn:hover,
.shortcuts-btn:focus {
  text-decoration: none;
  color: #fff;
  background: var(--accent-strong);
}

@media (max-width: 768px) {
  .shortcuts-guide-page {
    padding: 16px 10px 30px;
  }

  .shortcuts-hero,
  .shortcuts-part {
    padding: 14px;
    border-radius: 8px;
  }

  .shortcuts-hero h1 {
    font-size: 30px;
  }

  .shortcuts-subtitle {
    font-size: 16px;
  }

  .shortcuts-part h2 {
    font-size: 22px;
  }

  .shortcuts-part__description,
  .shortcuts-step__title {
    font-size: 15px;
  }

  .shortcuts-btn {
    width: 100%;
  }

  .shortcuts-step__image {
    max-height: 52vh;
  }
}
