.downloads-hero {
  padding: 70px 0 58px;
  overflow: hidden;
  background: var(--color-surface);
}
.downloads-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 80px;
  min-height: 300px;
}
.downloads-hero h1 {
  margin: 0 0 18px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 50px;
  line-height: 1.04;
}
.downloads-hero__content > p:last-child {
  max-width: 690px;
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
}
.downloads-hero__visual {
  position: relative;
  width: min(420px, 100%);
  height: 250px;
  justify-self: end;
}
.downloads-hero__sheet {
  position: absolute;
  width: 290px;
  height: 205px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}
.downloads-hero__sheet--back {
  top: 5px;
  right: 45px;
  background: #fff;
  transform: rotate(7deg);
}
.downloads-hero__sheet--front {
  right: 90px;
  bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 34px;
  color: #fff;
  background: var(--color-dark);
  transform: rotate(-4deg);
}
.downloads-hero__sheet--front::after {
  content: '';
  position: absolute;
  right: -22px;
  bottom: 24px;
  width: 90px;
  height: 10px;
  background: var(--color-accent);
  transform: rotate(-20deg);
}
.downloads-hero__sheet--front .icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
}
.downloads-hero__sheet--front strong {
  font: 700 36px/1 var(--font-heading);
}
.downloads-hero__sheet--front span {
  max-width: 180px;
  font-size: 13px;
  line-height: 1.4;
}
.download-section {
  padding: 72px 0 84px;
}
.download-section__heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.download-section__heading h2 {
  margin: 0 0 8px;
  color: var(--color-heading);
  font: 700 clamp(30px,4vw,40px)/1.1 var(--font-heading);
}
.download-section__heading > p:last-child {
  margin: 0;
  color: var(--color-muted);
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.download-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 11px;
  color: inherit;
  background: #fff;
  box-shadow: 0 6px 18px rgba(48,51,50,.055);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.download-card:hover {
  transform: translateY(-3px);
  border-color: rgba(236,128,0,.55);
  box-shadow: 0 12px 28px rgba(48,51,50,.10);
}
.download-card__image {
  position: relative;
  display: block;
  aspect-ratio: 500/281;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}
.download-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease;
}
.download-card:hover .download-card__image img {
  transform: scale(1.025);
}
.download-card__body {
  position: relative;
  display: block;
  min-height: 76px;
  padding: 13px 42px 13px 14px;
}
.download-card__body strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-heading);
  font: 700 14px/1.3 var(--font-heading);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.download-card__icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-accent);
  background: rgba(236,128,0,.10);
}
.download-card__icon .icon {
  width: 14px;
  height: 14px;
}
@media (max-width: 980px) {
  .download-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}
@media (max-width: 820px) {
  .downloads-hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .downloads-hero__visual { justify-self: start; }
}
@media (max-width: 620px) {
  .download-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
}
@media (max-width: 560px) {
  .downloads-hero { padding: 50px 0 40px; }
  .downloads-hero h1 { font-size: 40px; }
  .downloads-hero__visual { height: 210px; }
  .downloads-hero__sheet { width: 245px; height: 175px; }
  .downloads-hero__sheet--front { right: 35px; padding: 26px; }
  .downloads-hero__sheet--back { right: 10px; }
  .download-section { padding: 55px 0 65px; }
}
@media (max-width: 390px) {
  .download-grid { grid-template-columns: 1fr; }
}

.downloads-hero h1 span{color:#ec8000}

.downloads-hero h1 span{color:#ec8000 !important}
