:root {
  --sat-blue: #003974;
  --sat-gold: #c0936c;
  --sat-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
}

button,
a {
  font: inherit;
}

.header-contacts {
  width: 100%;
  min-height: 40px;
  padding: 8px 0;
  color: var(--sat-blue);
  background: var(--sat-white);
}

.header-contacts__inner {
  display: flex;
  width: calc(100% - 320px);
  max-width: 1408px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.header-contacts__details {
  display: flex;
  width: 842.5px;
  flex: 0 0 842.5px;
  align-items: center;
  gap: 47px;
}

.header-contacts__item,
.header-contacts__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-contacts__item {
  color: var(--sat-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
}

.header-contacts__email {
  display: block;
  width: 200px;
  /* text-align: center; */
}

.header-contacts__phone {
  display: block;
  width: 139px;
  text-align: center;
}

.header-contacts__social {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.header-contacts__social-text {
  display: block;
  width: 160px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: right;
  white-space: nowrap;
}

.header-contacts__icon,
.header-contacts__linkedin {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.header-contacts__item {
  transition: opacity 180ms ease;
}

.header-contacts__item:hover,
.header-contacts__item:focus-visible {
  opacity: 0.72;
}

.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 88px;
  padding-inline: 0;
  background: var(--sat-blue);
}

.site-header__inner {
  display: flex;
  width: calc(100% - 320px);
  max-width: 1408px;
  min-height: 88px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}

.site-header__logo {
  display: block;
  width: 183px;
  height: 56px;
  flex: 0 0 183px;
}

.site-header__logo img,
.site-header__logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-header__link,
.language-switcher__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 0;
  color: var(--sat-white);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.site-header__link {
  position: relative;
}

.site-header__link::after {
  position: absolute;
  right: 4px;
  bottom: 0;
  left: 4px;
  height: 2px;
  background: var(--sat-gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-header__link:hover::after,
.site-header__link:focus-visible::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher__item.is-active {
  color: var(--sat-gold);
}

.site-header__search {
  display: grid;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.site-header__search img,
.site-header__search svg {
  display: block;
  width: 24px;
  height: 24px;
}

.site-header__menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-block: 5px;
  background: var(--sat-white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.about-page {
  display: grid;
  width: calc(100% - 320px);
  max-width: 1408px;
  padding: 24px 0;
  margin-inline: auto;
  gap: 24px;
  background: var(--sat-white);
}

.about-hero {
  position: relative;
  /* height: 436px; */
  padding: 40px 0;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  color: var(--sat-white);
}

.about-hero__image,
.about-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero__image {
  display: block;
  object-fit: cover;
  object-position: center 54%;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 640px;
  /* height: 100%; */
  padding: 24px 32px;
  flex-direction: column;
  background-color: rgba(32, 32, 32, .4);
  justify-content: center;
}

.about-hero__title {
  margin: 0 0 12px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
}

.about-hero__copy {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.about-hero__copy p,
.about-section__content p {
  margin: 0;
}

.about-hero__copy p + p,
.about-section__content p + p {
  margin-top: 16px;
}

.about-section {
  display: grid;
  /* height: 416px; */
  align-items: stretch;
  gap: 32px;
}

.about-section--who,
.about-section--approach,
.about-section--vision {
  grid-template-columns: minmax(0, 17fr) minmax(0, 26fr);
}

.about-section--offer,
.about-section--mission {
  grid-template-columns: minmax(0, 26fr) minmax(0, 17fr);
}

.about-section__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  color: #1c252e;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.about-section__title {
  margin: 0 0 16px;
  color: var(--sat-blue);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-section__image {
  display: block;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section__image--right {
  border-radius: 16px 0 0 16px;
}

.about-section__image--left {
  border-radius: 0 16px 16px 0;
}

.about-section__image--mission {
  object-position: center 42%;
}

.about-section__image--vision {
  object-position: center 58%;
}

.about-section__list {
  padding-left: 22px;
  margin: 12px 0 12px;
}

.about-section__list li + li {
  margin-top: 2px;
}

.home-page {
  width: calc(100% - 320px);
  max-width: 1408px;
  padding: 24px 0;
  margin-inline: auto;
  background: var(--sat-white);
}

.home-about {
  position: relative;
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  background: var(--sat-white);
}

.home-about__title {
  display: grid;
  min-height: 56px;
  margin: 0 0 32px;
  color: var(--sat-blue);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
}

.home-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.65fr);
  align-items: stretch;
  gap: 64px;
}

.home-about__content {
  display: flex;
  padding-bottom: 36px;
  flex-direction: column;
  justify-content: flex-start;
  color: #202020;
  font-size: 16px;
  line-height: 1.35;
}

.home-about__content p {
  margin: 0;
}

.home-about__content p + p {
  margin-top: 16px;
}

.home-about__image {
  display: block;
  width: 100%;
  height: 424px;
  border-radius: 24px 0 0 24px;
  object-fit: cover;
}

.home-about__dots {
  position: absolute;
  bottom: 0;
  left: 19%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-about__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--sat-blue);
  cursor: pointer;
  transition: width 180ms ease, height 180ms ease;
}

.home-about__dot.is-active {
  width: 20px;
  height: 20px;
}

.solutions-section,
.news-section {
  width: 100%;
  margin-bottom: 24px;
  background: var(--sat-white);
}

.section-band {
  display: grid;
  min-height: 56px;
  margin: 0;
  color: var(--sat-white);
  background: var(--sat-blue);
  font-size: 32px;
  line-height: 1;
  place-items: center;
}

.solutions-list {
  display: grid;
  padding-top: 36px;
  gap: 36px;
}

.solution-card {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  align-items: center;
  gap: 38px;
}

.section-sprite {
  background-position: var(--sprite-x) var(--sprite-y);
  background-repeat: no-repeat;
  background-size: 300% auto;
}

.solution-card__image {
  height: 180px;
  border-radius: 16px;
}

.solution-card__content h3,
.news-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.solution-card__content p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.35;
}

.solutions-section__actions {
  display: flex;
  padding: 36px 0 0;
  justify-content: flex-end;
  gap: 24px;
}

.section-pill {
  display: grid;
  min-width: 176px;
  min-height: 44px;
  padding-inline: 24px;
  border-radius: 999px;
  color: var(--sat-blue);
  background: linear-gradient(110deg, #d7d7d7 0%, #ffffff 60%, #e5e5e5 100%);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  place-items: center;
}

.solutions-section__actions .section-pill {
  color: var(--sat-white);
  background: var(--sat-blue);
}

.news-slider {
  position: relative;
  padding: 36px 64px 0;
}

.news-slider__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.news-card__image {
  width: 100%;
  aspect-ratio: 1.5/1;
  border-radius: 16px;
}

.news-card h3 {
  margin-top: 18px;
  text-align: center;
}

.news-card .section-pill {
  margin-top: 14px;
}

.news-slider__arrow {
  position: absolute;
  top: 48%;
  z-index: 2;
  display: grid;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c79a73;
  cursor: pointer;
  transform: translateY(-50%);
  place-items: center;
}

.news-slider__arrow--prev {
  left: 0;
}

.news-slider__arrow--next {
  right: 0;
}

.news-slider__arrow--next svg {
  transform: rotate(180deg);
}

.home-hero {
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: var(--sat-white);
}

.home-hero__media {
  position: relative;
  height: 424px;
  overflow: hidden;
}

.home-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__caption {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 24px;
  padding: 18px 32px;
  color: var(--sat-white);
  background: rgba(18, 22, 27, 0.46);
  transform: translateY(-50%);
}

.home-hero__caption h1 {
  margin: 0;
  font-size: clamp(44px, 4.2vw, 60px);
  font-weight: 700;
  line-height: 1.05;
}

.home-hero__caption p {
  margin: 4px 0 0;
  font-size: clamp(22px, 2.15vw, 30px);
  font-weight: 400;
  line-height: 1.15;
}

.home-hero__controls {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-hero__dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-hero__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--sat-blue);
  cursor: pointer;
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease;
}

.home-hero__dot.is-active {
  width: 20px;
  height: 20px;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-hero__button {
  display: grid;
  min-width: 212px;
  min-height: 44px;
  padding-inline: 24px;
  border-radius: 999px;
  color: var(--sat-white);
  background: var(--sat-blue);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
  place-items: center;
}

.home-hero__button:hover,
.home-hero__button:focus-visible {
  opacity: 0.88;
  transform: translateY(-2px);
}

.reviews-section {
  width: 100%;
  padding-bottom: 40px;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--sat-white);
}

.reviews-section__title {
  display: grid;
  min-height: 56px;
  margin: 0 0 32px;
  color: var(--sat-blue);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
}

.reviews-slider {
  position: relative;
  padding-inline: 64px;
}

.reviews-slider__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-width: 0;
  color: #202020;
}

.review-card__author {
  display: flex;
  min-height: 72px;
  padding: 14px 16px;
  align-items: center;
  gap: 14px;
  background: #ededed;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background-position: var(--avatar-x) center;
  background-repeat: no-repeat;
  background-size: 400% auto;
}

.review-card__person {
  min-width: 0;
}

.review-card__person h3 {
  margin: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card__person span {
  color: #ae9999;
  font-size: 13px;
}

.review-card__linkedin {
  display: grid;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border-radius: 3px;
  color: var(--sat-white);
  background: var(--sat-blue);
  flex: 0 0 40px;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  place-items: center;
}

.review-card__meta {
  display: flex;
  margin: 14px 0 6px;
  align-items: center;
  gap: 14px;
}

.review-card__rating {
  display: flex;
  color: #eeeeee;
  gap: 2px;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.review-card__rating .is-active {
  color: #ffc43d;
}

.review-card__meta time {
  color: #ae9999;
  font-size: 13px;
  white-space: nowrap;
}

.review-card__text {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.reviews-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--sat-white);
  background: #c79a73;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  place-items: center;
}

.reviews-slider__arrow--prev {
  left: 0;
}

.reviews-slider__arrow--next {
  right: 0;
}

.reviews-slider__arrow svg {
  display: block;
  width: 24px;
  height: 20px;
}

.reviews-slider__arrow--next svg {
  transform: rotate(180deg);
}

.reviews-slider__arrow:hover,
.reviews-slider__arrow:focus-visible {
  opacity: 0.86;
}

.catalog-section {
  width: 100%;
  overflow: hidden;
  background: var(--sat-white);
}

.catalog-section__title {
  display: grid;
  min-height: 56px;
  margin: 0;
  color: var(--sat-white);
  background: var(--sat-blue);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
}

.catalog-section__body {
  display: grid;
  padding: 36px 0 24px;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
}

.catalog-sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  color: #191919;
}

.catalog-filter {
  display: grid;
  gap: 8px;
}

.catalog-filter__item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.catalog-filter__item input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--sat-blue);
  cursor: pointer;
}

.catalog-sidebar__feedback {
  display: grid;
  width: 212px;
  min-height: 44px;
  margin-top: 48px;
  border-radius: 999px;
  color: var(--sat-white);
  background: var(--sat-blue);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  place-items: center;
}

.catalog-sidebar__offer {
  max-width: 250px;
  margin-top: 42px;
}

.catalog-sidebar__offer h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.1;
}

.catalog-sidebar__offer p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.catalog-products {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.catalog-card {
  display: flex;
  min-width: 0;
  padding: 12px;
  border: 1px solid #b9aaaa;
  color: #191919;
  background: var(--sat-white);
  flex-direction: column;
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  background-position: var(--product-x) var(--product-y);
  background-repeat: no-repeat;
  background-size: 400% auto;
}

.catalog-card__favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  color: var(--sat-white);
  background: transparent;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
  place-items: center;
}

.catalog-card__favorite.is-active {
  color: var(--sat-gold);
}

.catalog-card__title {
  margin: 12px 0 10px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.catalog-card__copy {
  font-size: 13px;
  line-height: 1.25;
}

.catalog-card__copy span {
  color: #aa9696;
  font-size: 11px;
}

.catalog-card__copy p {
  display: -webkit-box;
  margin: 4px 0 12px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-card__more,
.catalog-products__all {
  display: grid;
  border-radius: 999px;
  color: var(--sat-blue);
  font-weight: 800;
  text-decoration: none;
  place-items: center;
}

.catalog-card__more {
  width: 158px;
  min-height: 44px;
  margin: auto auto 0;
  background: linear-gradient(110deg, #d7d7d7 0%, #ffffff 60%, #e5e5e5 100%);
  font-size: 16px;
}

.catalog-products__all {
  display: none;
}

.catalog-card__more,
.catalog-products__all,
.catalog-sidebar__feedback {
  transition: opacity 180ms ease, transform 180ms ease;
}

.catalog-card__more:hover,
.catalog-card__more:focus-visible,
.catalog-products__all:hover,
.catalog-products__all:focus-visible,
.catalog-sidebar__feedback:hover,
.catalog-sidebar__feedback:focus-visible {
  opacity: 0.88;
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  width: calc(100% - 320px);
  max-width: 1408px;
  /* min-height: 472px; */
  padding: 40px;
  margin-inline: auto;
  grid-template-columns: 230px minmax(300px, 1fr) minmax(380px, 454px);
  align-items: stretch;
  gap: 64px;
  color: var(--sat-white);
  background: var(--sat-blue);
}

.site-footer__brand,
.site-footer__contacts {
  align-self: end;
}

.footer-logo {
  display: flex;
  width: 230px;
  color: var(--sat-white);
  flex-direction: column;
  text-decoration: none;
}

.footer-logo__mark {
  display: block;
  width: 100%;
  height: auto;
}

.footer-logo__tagline {
  display: flex;
  margin-top: 4px;
  flex-direction: column;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.7px;
  line-height: 1.05;
  white-space: nowrap;
}

.site-footer__copyright {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.35;
}

.site-footer__contacts {
  display: flex;
  padding-bottom: 2px;
  flex-direction: column;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.35;
}

.site-footer__title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.site-footer__address {
  margin: 0 0 6px;
  font-style: normal;
}

.site-footer__address:last-child {
  margin-bottom: 0;
}

.site-footer__contact-link {
  display: inline-flex;
  margin-bottom: 6px;
  color: inherit;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.site-footer__contact-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.site-footer__policy-link {
  margin-top: 2px;
  color: inherit;
  text-decoration: none;
}

.site-footer__contact-link,
.site-footer__policy-link,
.footer-logo {
  transition: opacity 180ms ease;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus-visible,
.site-footer__policy-link:hover,
.site-footer__policy-link:focus-visible,
.footer-logo:hover,
.footer-logo:focus-visible {
  opacity: 0.72;
}

.footer-form {
  display: grid;
  width: 100%;
  max-width: 454px;
  align-self: center;
  justify-self: end;
  gap: 12px;
}

.footer-form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-form__field {
  width: 100%;
  height: 48px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  outline: 2px solid transparent;
  color: #1c252e;
  background: var(--sat-white);
  font: inherit;
  font-size: 16px;
  transition: outline-color 180ms ease;
}

.footer-form__field::placeholder {
  color: #a89494;
  opacity: 1;
}

.footer-form__field:focus {
  outline-color: var(--sat-gold);
}

.footer-form__message {
  height: 70px;
  padding-top: 10px;
  resize: vertical;
}

.footer-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-form__required {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.footer-form__submit {
  width: 144px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--sat-blue);
  background: linear-gradient(110deg, #d7d7d7 0%, #ffffff 60%, #e5e5e5 100%);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  transition: transform 180ms ease, opacity 180ms ease;
}

.footer-form__submit:hover,
.footer-form__submit:focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 1440px) {
  .header-contacts__inner {
    width: calc(100% - 128px);
  }

  .about-page {
    width: calc(100% - 128px);
    padding-inline: 0;
  }

  .home-page {
    width: calc(100% - 128px);
  }

  .site-header__inner {
    width: calc(100% - 128px);
  }

  .site-header__nav {
    gap: 24px;
  }

  .site-footer {
    width: calc(100% - 128px);
    padding-inline: 40px;
    grid-template-columns: 230px minmax(280px, 1fr) minmax(360px, 454px);
    gap: 40px;
  }
}
@media (max-width: 1100px) {
  .header-contacts__inner {
    width: calc(100% - 64px);
  }

  .header-contacts__details {
    width: auto;
    flex-basis: auto;
    gap: 24px;
  }

  .about-page {
    width: calc(100% - 64px);
    padding-inline: 0;
  }

  .home-page {
    width: calc(100% - 64px);
  }

  .catalog-section__body {
    grid-template-columns: 230px minmax(0, 1fr);
  }

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

  .home-hero__media {
    height: 360px;
  }

  .home-about__grid {
    gap: 32px;
  }

  .home-about__image {
    height: 360px;
  }

  .home-about__content {
    font-size: 14px;
  }

  .solution-card {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
  }

  .solution-card__image {
    height: 170px;
  }

  .solution-card__content p {
    font-size: 14px;
  }

  .home-hero__actions {
    gap: 12px;
  }

  .home-hero__button {
    min-width: 180px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .reviews-slider {
    padding-inline: 48px;
  }

  .reviews-slider__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card:nth-child(n+3) {
    display: none;
  }

  .about-hero {
    height: 420px;
  }

  .about-section {
    min-height: 360px;
  }

  .about-section__title {
    font-size: 28px;
  }

  .site-header__inner {
    width: calc(100% - 64px);
  }

  .site-header__nav {
    gap: 12px;
  }

  .site-header__actions {
    gap: 16px;
  }

  .site-footer {
    width: calc(100% - 64px);
    min-height: 472px;
    padding-inline: 32px;
    grid-template-columns: 210px minmax(250px, 1fr) minmax(330px, 400px);
    gap: 20px;
  }

  .footer-logo {
    width: 210px;
  }

  .footer-logo__tagline {
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .site-footer__contacts,
.footer-form__required {
    font-size: 12px;
  }

  .footer-form {
    gap: 12px;
  }

  .footer-form__field {
    height: 48px;
    font-size: 16px;
  }

  .footer-form__message {
    height: 70px;
  }

  .footer-form__submit {
    width: 144px;
    height: 44px;
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .header-contacts__inner {
    width: calc(100% - 48px);
  }

  .header-contacts__social-text {
    display: none;
  }

  .about-page {
    width: calc(100% - 48px);
    padding-inline: 0;
  }

  .home-page {
    width: 100%;
  }

  .home-about {
    padding-bottom: 32px;
  }

  .home-about__title {
    min-height: 40px;
    margin: 0;
    color: var(--sat-white);
    background: #c79a73;
    font-size: 24px;
  }

  .home-about__grid {
    padding: 40px 24px 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .home-about__image {
    order: -1;
    height: 320px;
    border-radius: 20px 20px 0 0;
  }

  .home-about__content {
    padding: 0;
    font-size: 18px;
    line-height: 1.3;
  }

  .home-about__content p + p {
    margin-top: 20px;
  }

  .home-about__dots {
    position: static;
    margin-top: 24px;
    justify-content: center;
  }

  .section-band {
    min-height: 40px;
    background: #c79a73;
    font-size: 24px;
  }

  .solutions-list {
    padding: 36px 24px 0;
    gap: 32px;
  }

  .solution-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .solution-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.75/1;
  }

  .solution-card__content h3 {
    font-size: 18px;
  }

  .solution-card__content p {
    margin-top: 10px;
    font-size: 15px;
  }

  .solutions-section__actions {
    padding-top: 32px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .solutions-section__actions .section-pill {
    min-width: 160px;
  }

  .news-slider {
    padding: 48px 24px 0;
  }

  .news-slider__track {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .news-card__image {
    aspect-ratio: 1.15/1;
  }

  .news-card h3 {
    margin-top: 18px;
    font-size: 20px;
  }

  .news-card .section-pill {
    min-width: 144px;
    margin-top: 14px;
  }

  .news-slider__arrow {
    display: none;
  }

  .home-hero {
    border-radius: 0;
  }

  .home-hero__media {
    height: 360px;
  }

  .home-hero__media img {
    object-position: 58% center;
  }

  .home-hero__caption {
    right: 16px;
    left: 16px;
    padding: 18px;
  }

  .home-hero__caption h1 {
    font-size: 34px;
  }

  .home-hero__caption p {
    margin-top: 8px;
    font-size: 18px;
  }

  .home-hero__controls {
    min-height: 0;
    padding: 16px 24px 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__dots {
    justify-content: center;
  }

  .home-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero__button {
    min-width: 0;
    min-height: 42px;
    padding-inline: 12px;
    font-size: 12px;
    text-align: center;
  }

  .reviews-section {
    padding-bottom: 32px;
  }

  .reviews-section__title {
    min-height: 40px;
    margin-bottom: 40px;
    color: var(--sat-white);
    background: #c79a73;
    font-size: 24px;
  }

  .reviews-slider {
    padding-inline: 56px;
  }

  .reviews-slider__track {
    display: block;
  }

  .review-card,
.review-card:nth-child(n+3) {
    display: none;
  }

  .review-card:first-child {
    display: block;
  }

  .review-card__author {
    min-height: 72px;
    padding: 14px 16px;
  }

  .review-card__avatar {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .review-card__person h3 {
    font-size: 16px;
  }

  .review-card__person span {
    font-size: 13px;
  }

  .review-card__meta {
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .review-card__rating {
    font-size: 22px;
  }

  .review-card__meta time {
    font-size: 14px;
  }

  .review-card__text {
    display: block;
    overflow: visible;
    font-size: 18px;
    line-height: 1.3;
  }

  .reviews-slider__arrow {
    top: 54%;
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .reviews-slider__arrow--prev {
    left: 12px;
  }

  .reviews-slider__arrow--next {
    right: 12px;
  }

  .catalog-section__title {
    min-height: 40px;
    font-size: 24px;
  }

  .catalog-section__body {
    padding: 32px 24px 24px;
    grid-template-columns: minmax(0, 1fr);
    background: var(--sat-white);
  }

  .catalog-sidebar {
    display: none;
  }

  .catalog-products {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .catalog-card {
    padding: 12px;
  }

  .catalog-card__title {
    margin: 10px 0 8px;
    font-size: 12px;
  }

  .catalog-card__copy {
    font-size: 11px;
  }

  .catalog-card__copy span {
    font-size: 9px;
  }

  .catalog-card__copy p {
    margin-block: 3px 10px;
  }

  .catalog-card__more {
    width: 120px;
    min-height: 38px;
    font-size: 12px;
  }

  .catalog-products__all {
    display: grid;
    width: 190px;
    min-height: 42px;
    margin: 0 auto;
    color: var(--sat-white);
    background: var(--sat-blue);
    font-size: 12px;
  }

  .about-hero {
    height: 520px;
  }

  .about-hero__content {
    width: min(640px, 100%);
  }

  .about-section,
.about-section--who,
.about-section--offer,
.about-section--approach,
.about-section--mission,
.about-section--vision {
    height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .about-section__content {
    min-height: 300px;
    padding-block: 32px;
  }

  .about-section__image {
    order: -1;
    height: 360px;
    border-radius: 16px;
  }

  .site-footer {
    width: calc(100% - 48px);
    min-height: 0;
    padding: 24px 24px 48px;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .site-footer__brand,
.site-footer__contacts,
.footer-form {
    width: 100%;
    max-width: 100%;
    align-self: auto;
    justify-self: stretch;
  }

  .site-footer__brand,
.site-footer__contacts {
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    width: 230px;
    margin-inline: auto;
  }

  .footer-logo__tagline {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 2.2px;
  }

  .site-footer__copyright {
    margin-top: 16px;
    font-size: 12px;
  }

  .site-footer__contacts {
    font-size: 14px;
  }

  .site-footer__title {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .site-footer__address {
    margin-bottom: 8px;
  }

  .site-footer__contact-link {
    margin-bottom: 8px;
    gap: 10px;
  }

  .site-footer__contact-link svg {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .footer-form {
    gap: 16px;
  }

  .footer-form__field {
    height: 48px;
    padding-inline: 10px;
    border-radius: 10px;
    font-size: 14px;
  }

  .footer-form__message {
    height: 96px;
    padding-top: 10px;
  }

  .footer-form__bottom {
    padding-top: 2px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-form__required {
    font-size: 13px;
  }

  .footer-form__submit {
    width: 120px;
    height: 42px;
    margin-inline: auto;
    font-size: 14px;
  }

  .site-header__inner {
    width: calc(100% - 48px);
  }

  .site-header__menu-toggle {
    display: block;
    order: 3;
  }

  .site-header__nav {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--sat-blue);
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease;
  }

  .site-header__nav.is-open {
    max-height: 320px;
    padding-block: 12px 24px;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header__link {
    justify-content: flex-start;
    padding: 12px 4px;
  }

  .site-header__actions {
    margin-left: auto;
    margin-right: 20px;
  }

  .site-header__menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header__menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .site-header__menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.error-page-body {
  min-width: 320px;
  min-height: 100vh;
  color: #191919;
  background: var(--sat-white);
}

.error-page {
  display: flex;
  width: calc(100% - 48px);
  max-width: 1408px;
  min-height: 100vh;
  padding: 24px 0 28px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
}

.error-page__content {
  text-align: center;
}

.error-page__code {
  margin: 0 0 12px;
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
}

.error-page__title {
  margin: 0;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
}

.error-page__text {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.35;
}

.error-page__image-wrap {
  width: min(720px, 68vh);
  margin: 8px auto 0;
}

.error-page__image {
  display: block;
  width: 100%;
  height: auto;
}

.error-page__button {
  display: grid;
  min-width: 330px;
  min-height: 56px;
  padding: 12px 30px;
  margin-top: auto;
  border-radius: 999px;
  color: var(--sat-white);
  background: var(--sat-blue);
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
  place-items: center;
}

.error-page__button:hover,
.error-page__button:focus-visible {
  opacity: 0.88;
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .error-page-body {
    color: #171717;
    background: #000000;
  }

  .error-page {
    width: 100%;
    padding: 42px 24px 32px;
  }

  .error-page__code {
    margin-bottom: 32px;
    font-size: 64px;
  }

  .error-page__title {
    font-size: 25px;
    line-height: 1.2;
  }

  .error-page__text {
    max-width: 310px;
    margin: 28px auto 0;
    font-size: 18px;
    line-height: 1.45;
  }

  .error-page__image-wrap {
    width: 100%;
    margin-top: 38px;
    border-radius: 24px;
    background: var(--sat-white);
    overflow: hidden;
  }

  .error-page__button {
    width: min(100%, 404px);
    min-width: 0;
    min-height: 64px;
    margin-top: 50px;
    font-size: 17px;
  }
}
@media (max-width: 700px) {
  .header-contacts__details {
    gap: 16px;
  }

  .header-contacts__email,
.header-contacts__phone {
    width: auto;
  }
}
@media (max-width: 560px) {
  .header-contacts {
    min-height: 40px;
    padding: 8px 0;
  }

  .home-hero__media {
    height: 424px;
  }

  .home-hero__media img {
    object-position: 58% center;
  }

  .home-hero__caption {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 22px 32px 20px;
    background: rgba(18, 22, 27, 0.48);
    transform: none;
  }

  .home-hero__caption h1 {
    max-width: 290px;
    font-size: 36px;
    line-height: 1.18;
  }

  .home-hero__caption p {
    max-width: 300px;
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.25;
  }

  .home-hero__controls {
    padding: 16px 24px 17px;
  }

  .home-hero__dots {
    display: none;
  }

  .home-hero__actions {
    gap: 8px;
  }

  .home-hero__button {
    min-height: 42px;
    padding-inline: 8px;
    font-size: 12px;
  }

  .home-about__image {
    height: 260px;
  }

  .home-about__content {
    font-size: 18px;
  }

  .about-page {
    padding: 0 0 24px;
    gap: 24px;
  }

  .about-hero {
    width: calc(100% + 48px);
    height: auto;
    margin-left: -24px;
    border-radius: 0;
  }

  .about-hero__shade {
    background: rgba(32, 32, 32, 0.4);
  }

  .about-hero__content {
    width: 100%;
    height: auto;
    padding: 35px 31px 32px;
    justify-content: flex-start;
  }

  .about-hero__title {
    margin: 0 0 4px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
  }

  .about-hero__copy,
.about-section__content {
    font-size: 16px;
  }

  .about-hero__copy {
    font-weight: 700;
    line-height: 1.3;
  }

  .about-hero__copy p + p {
    margin-top: 15px;
  }

  .about-section__content {
    min-height: auto;
    padding: 0;
  }

  .about-section__title {
    margin-bottom: 12px;
    font-size: 26px;
  }

  .about-section__image {
    height: 240px;
    border-radius: 12px 12px 0 0;
  }

  .header-contacts__email,
.header-contacts__phone {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .header-contacts__details {
    flex: 1 1 auto;
    gap: 16px;
  }

  .site-header {
    min-height: 56px;
    padding-inline: 0;
  }

  .site-header__inner {
    min-height: 56px;
    padding-block: 16px;
  }

  .site-header__logo {
    width: 77px;
    height: 24px;
    flex-basis: 77px;
    order: 1;
  }

  .site-header__nav {
    top: 56px;
    right: auto;
    width: 156px;
    max-height: 0;
    padding: 0 24px;
    align-items: flex-start;
    gap: 24px;
  }

  .site-header__nav.is-open {
    max-height: 320px;
    padding: 24px;
  }

  .site-header__link {
    justify-content: center;
    padding: 4px;
  }

  .site-header__link.is-active {
    color: var(--sat-gold);
  }

  .site-header__actions {
    margin: 0;
    order: 2;
    gap: 4px;
  }

  .language-switcher {
    gap: 0;
  }

  .language-switcher__item {
    padding: 4px;
    color: var(--sat-white);
    font-size: 12px;
  }

  .language-switcher__item[data-language=en] {
    display: none;
  }

  .site-header__search,
.site-header__search svg {
    width: 16px;
    height: 16px;
  }

  .site-header__menu-toggle {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    padding: 0;
    order: 0;
  }

  .site-header__menu-toggle span {
    position: absolute;
    left: 3px;
    width: 18px;
    height: 2px;
    margin: 0;
  }

  .site-header__menu-toggle span:nth-child(1) {
    top: 5px;
  }

  .site-header__menu-toggle span:nth-child(2) {
    top: 11px;
  }

  .site-header__menu-toggle span:nth-child(3) {
    top: 17px;
  }

  .site-header__menu-toggle.is-open span:nth-child(1),
.site-header__menu-toggle.is-open span:nth-child(3) {
    top: 11px;
  }

  .site-header__menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header__menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
  }
}
[data-url] {
  cursor: pointer;
}

[data-url]:focus-visible {
  outline: 3px solid var(--sat-gold);
  outline-offset: 3px;
}

.catalog-page {
  padding-bottom: 64px;
}

.product-page {
  width: calc(100% - 320px);
  max-width: 1408px;
  padding: 24px 0 64px;
  margin-inline: auto;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(420px, 1fr);
  align-items: start;
  gap: 24px;
}

.product-gallery {
  min-width: 0;
}

.product-gallery__main,
.product-gallery__thumb {
  background-repeat: no-repeat;
  background-size: 200% auto;
}

.product-gallery__main {
  --gallery-x: 0%;
  position: relative;
  width: 100%;
  aspect-ratio: 1.35/1;
  border-radius: 16px;
  background-position: var(--gallery-x) center;
  overflow: hidden;
}

.product-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--sat-white);
  background: var(--sat-gold);
  cursor: pointer;
  transform: translateY(-50%);
  place-items: center;
}

.product-gallery__arrow--prev {
  left: 12px;
}

.product-gallery__arrow--next {
  right: 12px;
}

.product-gallery__arrow--next svg {
  transform: rotate(180deg);
}

.product-gallery__thumbs {
  display: flex;
  margin-top: 16px;
  gap: 8px;
}

.product-gallery__thumb {
  width: 116px;
  aspect-ratio: 1.42/1;
  padding: 0;
  border: 2px solid transparent;
  background-position: 0 center;
  cursor: pointer;
}

.product-gallery__thumb--second {
  background-position: 100% center;
}

.product-gallery__thumb.is-active {
  border-color: var(--sat-gold);
}

.product-order {
  display: grid;
  width: max-content;
  min-width: 146px;
  min-height: 48px;
  padding: 10px 24px;
  border-radius: 999px;
  color: var(--sat-white);
  background: var(--sat-blue);
  font-weight: 700;
  text-decoration: none;
  place-items: center;
}

.product-gallery__order {
  margin-top: 24px;
}

.product-details {
  color: #242424;
  font-size: 16px;
  line-height: 1.35;
}

.product-details__title {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.product-details__status {
  margin: 0 0 14px;
  color: var(--sat-gold);
  font-size: 13px;
}

.product-details__heading {
  margin: 0 0 8px;
  color: #aa9696;
  font-size: 25px;
  line-height: 1.15;
}

.product-details h3 {
  margin: 8px 0 4px;
  font-size: inherit;
  line-height: inherit;
}

.product-details p {
  margin: 0 0 14px;
}

.product-details ul {
  padding-left: 24px;
  margin: 0 0 10px;
}

.product-details li {
  margin: 0;
}

.product-specs p {
  margin: 0;
}

.product-details__order {
  display: none;
}

@media (max-width: 1100px) {
  .product-page {
    width: calc(100% - 48px);
  }

  .product-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 1fr);
  }
}
@media (max-width: 900px) {
  .product-page {
    width: 100%;
    padding: 24px 24px 48px;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-gallery__main {
    aspect-ratio: 1.42/1;
  }

  .product-gallery__arrow {
    width: 40px;
    height: 40px;
  }

  .product-gallery__arrow--prev {
    left: 12px;
  }

  .product-gallery__arrow--next {
    right: 12px;
  }

  .product-gallery__arrow svg {
    width: 18px;
    height: 15px;
  }

  .product-gallery__thumbs {
    margin-top: 14px;
    gap: 6px;
  }

  .product-gallery__thumb {
    width: calc(50% - 3px);
  }

  .product-gallery__order {
    display: none;
  }

  .product-details {
    font-size: 16px;
    line-height: 1.28;
  }

  .product-details__title {
    font-size: 20px;
    line-height: 1.25;
  }

  .product-details__status {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .product-details__heading {
    max-width: 310px;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.35;
  }

  .product-details p {
    margin-bottom: 16px;
  }

  .product-details ul {
    margin-bottom: 12px;
  }

  .product-specs p {
    margin: 0;
  }

  .product-details__order {
    display: grid;
    margin: 28px auto 0;
  }
}
.news-detail-page {
  display: grid;
  width: calc(100% - 320px);
  max-width: 1408px;
  padding: 24px 0 64px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.7fr) minmax(360px, 1fr);
  align-items: start;
  gap: 64px;
}

.news-article {
  min-width: 0;
  color: #242424;
}

.news-article__header h1 {
  margin: 0 0 4px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}

.news-article__header time,
.news-article__figure figcaption {
  color: #aa9696;
  font-size: 13px;
}

.news-article__figure {
  margin: 20px 0 16px;
}

.news-article__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.37/1;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}

.news-article__figure figcaption {
  margin-top: 10px;
}

.news-article__body {
  font-size: 16px;
  line-height: 1.4;
}

.news-article__body p {
  margin: 0 0 16px;
}

.news-article__body .news-article__lead {
  font-weight: 800;
}

.news-detail-sidebar__title {
  display: grid;
  min-height: 56px;
  margin: 0 0 16px;
  color: var(--sat-white);
  background: var(--sat-blue);
  font-size: 32px;
  line-height: 1;
  place-items: center;
}

.news-detail-sidebar__list {
  display: grid;
  gap: 16px;
}

.news-detail-card .news-card__image {
  aspect-ratio: 1.78/1;
}

.news-detail-card h3 {
  margin-top: 18px;
}

.news-detail-card .section-pill {
  margin-top: 14px;
}

@media (max-width: 1100px) {
  .news-detail-page {
    width: calc(100% - 64px);
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr);
    gap: 32px;
  }
}
@media (max-width: 900px) {
  .news-detail-page {
    display: block;
    width: 100%;
    padding: 24px 0 0;
  }

  .news-article {
    padding: 0 24px;
  }

  .news-article__header h1 {
    font-size: 18px;
  }

  .news-article__header time {
    font-size: 12px;
  }

  .news-article__figure {
    margin-top: 18px;
  }

  .news-article__figure img {
    aspect-ratio: 1.28/1;
    border-radius: 14px;
  }

  .news-article__figure figcaption {
    margin-top: 8px;
    font-size: 11px;
  }

  .news-article__body {
    font-size: 14px;
    line-height: 1.35;
  }

  .news-detail-sidebar {
    margin-top: 12px;
    padding-bottom: 28px;
    background: #000000;
  }

  .news-detail-sidebar__title {
    min-height: 40px;
    margin-bottom: 14px;
    font-size: 24px;
  }

  .news-detail-sidebar__list {
    padding: 0 24px;
    gap: 18px;
  }

  .news-detail-card {
    color: #171717;
  }

  .news-detail-card .news-card__image {
    aspect-ratio: 1.57/1;
    border-radius: 14px;
  }

  .news-detail-card h3 {
    margin-top: 14px;
    font-size: 15px;
  }

  .news-detail-card .section-pill {
    min-width: 116px;
    min-height: 38px;
    margin-top: 12px;
    padding-inline: 18px;
    font-size: 11px;
  }
}
