.download-page {
  overflow-x: clip;
}

.download-page .site-header {
  border-bottom-color: rgba(151, 201, 255, 0.1);
}

.download-breadcrumb {
  display: none;
}

.download-page--complete main {
  padding-top: var(--header-height);
}

.download-breadcrumb ol {
  display: flex;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  list-style: none;
}

.download-breadcrumb li + li::before {
  margin-right: 0.7rem;
  color: rgba(255, 255, 255, 0.32);
  content: "/";
}

.download-breadcrumb a {
  color: var(--text-soft);
}

.download-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 7.5rem) 0 clamp(4.5rem, 8vw, 8rem);
}

.download-hero::before {
  position: absolute;
  z-index: -1;
  width: min(74vw, 980px);
  height: min(74vw, 980px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 135, 255, 0.17), transparent 68%);
  content: "";
  inset: -42% auto auto -22%;
  pointer-events: none;
}

.download-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
  gap: clamp(2rem, 5vw, 5.4rem);
  align-items: center;
}

.download-hero h1 {
  max-width: 720px;
  margin: 1.2rem 0;
  font-size: clamp(3.2rem, 6.5vw, 6.9rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.download-hero__lead {
  max-width: 680px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.72;
}

.download-actions,
.download-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.download-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  padding: 0;
  margin: 1.6rem 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  list-style: none;
}

.download-hero__proof span {
  margin-right: 0.3rem;
  color: #7cf2c4;
}

.download-note {
  max-width: 680px;
  padding-left: 1rem;
  margin-top: 1.25rem;
  border-left: 2px solid rgba(118, 175, 255, 0.35);
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.download-hero__visual {
  position: relative;
  overflow: hidden;
  padding: 0.65rem;
  border-radius: 30px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
}

.download-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8.5;
  border-radius: 23px;
  object-fit: cover;
}

.download-hero__visual figcaption {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.7rem 0.25rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.os-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.2rem;
  min-height: 310px;
  padding: 1.6rem;
  border-radius: 24px;
}

.os-card__icon,
.feature-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(128, 185, 255, 0.25);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(59, 146, 255, 0.22), rgba(68, 78, 255, 0.08));
  color: #b9dcff;
  font-size: 1.55rem;
}

.os-card h3,
.download-feature h3,
.model-card h3,
.use-case h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
}

.os-card p,
.download-feature p,
.model-card p,
.use-case p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.os-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(117, 176, 255, 0.2);
  border-radius: 14px;
  background: rgba(35, 91, 153, 0.12);
  color: #d9ecff;
  font-weight: 700;
}

.os-card > a:hover {
  border-color: rgba(117, 176, 255, 0.5);
  background: rgba(35, 91, 153, 0.25);
}

.requirement-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 1.1rem 1.25rem;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(5, 17, 29, 0.72);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.requirement-bar strong {
  color: var(--text);
}

.requirement-bar span::before {
  margin-right: 0.5rem;
  color: #78e2bd;
  content: "✓";
}

.feature-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.download-feature {
  min-height: 260px;
  padding: 1.5rem;
  border-radius: 24px;
}

.download-feature .feature-symbol {
  margin-bottom: 2rem;
}

.download-feature--visual {
  display: grid;
  grid-column: span 2;
  grid-row: span 2;
  gap: 1.4rem;
  min-height: 540px;
}

.download-feature--visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 18px;
  object-fit: cover;
}

.download-feature a {
  color: #a9d4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.model-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.model-card {
  overflow: hidden;
  border-radius: 26px;
}

.model-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.92 / 1;
  object-fit: cover;
}

.model-card > div {
  padding: 1.5rem;
}

.model-tip {
  padding: 1.2rem 1.3rem;
  margin: 1rem 0 0;
  border: 1px solid rgba(128, 185, 255, 0.14);
  border-radius: 18px;
  background: rgba(14, 33, 49, 0.5);
  color: var(--text-muted);
}

.model-tip a {
  color: #acd5ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.step-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.step-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(14, 31, 48, 0.92), rgba(7, 19, 31, 0.82));
}

.step-row__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3.2rem);
}

.step-row__copy > span {
  margin-bottom: 1.8rem;
  color: #6fb4ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.step-row h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.step-row p {
  color: var(--text-muted);
  line-height: 1.7;
}

.step-row img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.step-row:nth-child(even) .step-row__copy {
  order: 2;
}

.process-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  overflow: hidden;
  border-radius: 30px;
}

.process-panel__visual {
  display: grid;
  min-width: 0;
  min-height: 520px;
  padding: clamp(0.8rem, 1.5vw, 1.25rem);
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(82, 164, 255, 0.11), transparent 58%),
    rgba(3, 12, 22, 0.46);
}

.process-compare {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
}

.process-compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.process-compare__before-image {
  filter: blur(2.2px) saturate(0.82) contrast(0.91);
  transform: scale(1.01);
}

.process-compare .image-compare__label {
  top: auto;
  bottom: 0.9rem;
}

.process-compare .image-compare__line span {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(7, 19, 31, 0.92);
  color: #f6fbff;
  backdrop-filter: blur(12px);
}

.process-panel__copy {
  align-self: center;
  padding: clamp(1.7rem, 4vw, 3.5rem);
}

.process-panel__copy h2 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.process-panel__copy p,
.process-panel__copy li {
  color: var(--text-muted);
  line-height: 1.68;
}

.process-panel__copy ul {
  padding-left: 1.15rem;
  margin: 1.2rem 0;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.use-case {
  display: flex;
  min-height: 300px;
  padding: 1.5rem;
  border-radius: 24px;
  color: inherit;
  flex-direction: column;
}

.use-case > span,
.card-kicker {
  margin-bottom: 1rem;
  color: #75b9ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.use-case b {
  margin-top: auto;
  padding-top: 1.5rem;
  color: #cfe8ff;
  font-size: 0.85rem;
}

.use-case:hover {
  border-color: rgba(115, 180, 255, 0.35);
  transform: translateY(-4px);
}

.desktop-choice__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.desktop-choice h2 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
}

.desktop-choice p {
  color: var(--text-muted);
  line-height: 1.7;
}

.choice-table {
  overflow-x: auto;
  border-radius: 24px;
}

.choice-table table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
}

.choice-table th,
.choice-table td {
  padding: 1.2rem 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.choice-table thead th {
  color: var(--text-muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-table tbody th {
  color: #cfe7ff;
}

.choice-table td {
  color: var(--text-muted);
}

.download-final__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 20%, rgba(57, 139, 255, 0.22), transparent 34%),
    rgba(12, 29, 44, 0.78);
}

.download-final h2 {
  max-width: 900px;
  margin: 0.7rem 0;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 1;
}

.download-final p {
  max-width: 780px;
  color: var(--text-muted);
}

.download-final__actions {
  min-width: 250px;
  margin: 0;
  flex-direction: column;
}

.download-final__actions a {
  justify-content: center;
}

@media (max-width: 1199.98px) {
  .download-hero__grid {
    grid-template-columns: 1fr;
  }

  .download-hero__visual {
    max-width: 980px;
  }

  .feature-bento,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-feature--visual {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991.98px) {
  .os-grid,
  .model-cards {
    grid-template-columns: 1fr;
  }

  .os-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .os-card > a {
    grid-column: 1 / -1;
  }

  .process-panel,
  .desktop-choice__grid,
  .download-final__panel {
    grid-template-columns: 1fr;
  }

  .download-final__actions {
    width: 100%;
  }

  .download-final__actions a {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .download-breadcrumb {
    padding-top: 1rem;
  }

  .download-hero {
    padding-top: 2.5rem;
  }

  .download-hero h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .download-actions,
  .download-actions a {
    width: 100%;
  }

  .download-hero__visual {
    margin-inline: -0.2rem;
    border-radius: 20px;
  }

  .download-hero__visual img {
    border-radius: 15px;
  }

  .download-hero__visual figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-bento,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .download-feature--visual {
    grid-column: auto;
    min-height: 0;
  }

  .download-feature--visual img {
    min-height: 220px;
  }

  .step-row {
    grid-template-columns: 1fr;
  }

  .step-row:nth-child(even) .step-row__copy {
    order: initial;
  }

  .step-row img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .process-panel__visual {
    min-height: 0;
    padding: 0.7rem;
  }

  .process-compare {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  .process-compare img {
    object-position: center center;
  }

  .use-case {
    min-height: 240px;
  }
}

@media (max-width: 479.98px) {
  .os-card {
    grid-template-columns: 1fr;
  }

  .download-hero__proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .requirement-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Complete long-form download guide */
.download-page--complete .download-hero__copy > p:not(.download-hero__lead, .download-note) {
  max-width: 680px;
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin-top: 1.1rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-support-links a {
  color: #add8ff;
}

.hero-support-links a::after {
  margin-left: 0.3rem;
  color: var(--mint);
  content: "→";
}

.download-safety-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 17, 29, 0.72);
}

.download-safety-strip > div {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  gap: 1rem 1.5rem;
  min-height: 92px;
  align-items: center;
}

.download-safety-strip strong {
  color: #75e8c4;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-safety-strip p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.download-safety-strip a {
  color: #d3eaff;
  font-size: 0.83rem;
  font-weight: 750;
}

.download-guide-nav {
  position: sticky;
  z-index: 20;
  top: calc(var(--header-height) + 0.65rem);
  display: flex;
  overflow-x: auto;
  gap: 0.55rem;
  width: calc(100% - (var(--container-pad) * 2));
  padding: 0.55rem;
  margin-top: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(6, 18, 30, 0.9);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.download-guide-nav::-webkit-scrollbar {
  display: none;
}

.download-guide-nav a {
  flex: 0 0 auto;
  padding: 0.62rem 0.85rem;
  border-radius: 11px;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 720;
  white-space: nowrap;
}

.download-guide-nav a:hover {
  background: rgba(83, 157, 255, 0.13);
  color: var(--text);
}

.content-section {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 5rem);
}

.content-section:nth-of-type(even)::before {
  position: absolute;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(36, 102, 166, 0.045), transparent);
  content: "";
  inset: 0;
}

.content-section__heading {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  max-width: 1080px;
  margin-bottom: clamp(2rem, 4vw, 3.7rem);
}

.section-number {
  padding-top: 0.65rem;
  color: #62abf7;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.content-section__heading h2 {
  max-width: 990px;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.content-section__heading p {
  max-width: 880px;
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.72;
}

.content-section__heading h4 {
  margin: 1.4rem 0 0.55rem;
  color: #87c4ff;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-section__heading .content-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0.8rem 0 0;
  list-style: none;
}

.content-section__heading .content-list li {
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(118, 180, 255, 0.14);
  border-radius: 999px;
  background: rgba(45, 108, 173, 0.09);
  color: var(--text-soft);
  font-size: 0.78rem;
}

.content-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.content-subgrid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card {
  min-width: 0;
  padding: clamp(1.4rem, 2.5vw, 2.1rem);
  border-radius: 24px;
}

.content-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -0.025em;
}

.content-card h4 {
  margin: 1.35rem 0 0.65rem;
  color: #7ec2ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.content-card p,
.accordion-body p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  line-height: 1.68;
}

.content-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0.75rem 0 1.1rem;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.content-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(88, 237, 194, 0.44);
  content: "";
}

.content-list a {
  color: #b5dcff;
  text-decoration: underline;
  text-decoration-color: rgba(181, 220, 255, 0.35);
  text-underline-offset: 3px;
}

.content-cta {
  display: inline-flex;
  margin-top: 0.75rem;
}

.download-code {
  overflow-x: auto;
  padding: 0.9rem 1rem;
  margin: 1rem 0;
  border: 1px solid rgba(120, 179, 255, 0.2);
  border-radius: 14px;
  background: #06111d;
  color: #9ceacd;
  font-size: 0.86rem;
}

.guide-media-grid,
.workflow-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.guide-media-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-media-grid--steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workflow-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(10, 26, 40, 0.74);
}

.guide-media--wide {
  margin-bottom: 1rem;
}

.guide-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.guide-media > span {
  position: absolute;
  z-index: 2;
  top: 0.8rem;
  left: 0.8rem;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(5, 16, 28, 0.76);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.guide-media figcaption {
  padding: 0.85rem 1rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.content-comparison {
  width: 100%;
  margin: 1rem 0;
  aspect-ratio: 16 / 9;
}

.content-comparison img {
  object-position: center center;
}

.content-comparison__before {
  filter: blur(2.3px) saturate(0.82) contrast(0.92);
  transform: scale(1.01);
}

.content-section--choose-your-upscayl-desktop-download .content-subgrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-section--choose-your-upscayl-desktop-download .content-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
}

.content-section--choose-your-upscayl-desktop-download .content-card .content-cta {
  margin-top: auto;
}

.content-section--privacy-licensing-and-download-trust .content-card {
  border-color: rgba(91, 227, 186, 0.2);
}

.content-section--download-upscayl-desktop {
  padding-bottom: clamp(6rem, 12vw, 11rem);
}

.content-section--download-upscayl-desktop .content-section__heading {
  max-width: none;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(101, 176, 255, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 15%, rgba(71, 144, 255, 0.2), transparent 34%),
    rgba(11, 28, 44, 0.76);
}

@media (max-width: 1199.98px) {
  .content-subgrid--compact,
  .content-section--choose-your-upscayl-desktop-download .content-subgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-media-grid--three,
  .workflow-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .download-safety-strip > div {
    grid-template-columns: 1fr;
    padding-block: 1.2rem;
  }

  .content-subgrid,
  .content-subgrid--compact,
  .content-section--choose-your-upscayl-desktop-download .content-subgrid {
    grid-template-columns: 1fr;
  }

  .content-section--choose-your-upscayl-desktop-download .content-card {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .download-guide-nav {
    top: calc(var(--header-height) + 0.35rem);
    width: calc(100% - 1rem);
    margin-top: 0.75rem;
  }

  .content-section__heading {
    grid-template-columns: 1fr;
  }

  .section-number {
    padding: 0;
  }

  .guide-media-grid,
  .guide-media-grid--three,
  .guide-media-grid--steps,
  .workflow-gallery {
    grid-template-columns: 1fr;
  }

  .content-comparison {
    border-radius: 16px;
  }
}
