html {
  --gap-content: clamp(2rem, 4vw, 4.5rem);
  --flex-basis: 288px;
}
.maxwidth .page-top {
  padding-bottom: 8px;
}
@media (min-width: 992px) {
  .page-top,
  .products-footer {
    max-width: calc(100% - var(--flex-basis) - var(--gap-content));
  }
}

/* content */
.content {
  display: flex;
  gap: var(--gap-content);
}

.content img:not(.products-list__item-image):not(.rounded) {
  border-radius: 12px;
}

@media (max-width: 991px) {
  .content {
    flex-direction: column-reverse;
  }
  .content__aside:not(:has(*)){
    display:none;
  }
}

.content__article {
  flex: 1 1 auto;
}
.content__article .wide-video {
  min-height: 0;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}
.content__article .wide-video img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.content__article > :first-child {
  margin-top: 0;
}

.content__aside {
  flex: 0 0 var(--flex-basis);
}

@media (max-width: 992px) {
  .content__aside {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .content__aside .news-detail-aside__logo{
    height: 200px;
  }
  .content__aside:not(:has(*)){
    display:none;
  }
}

.content__image {
  aspect-ratio: 27 / 16;
  margin-bottom: 1.25rem;
}




.topbar__left {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
}

.topbar__back {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.topbar__back svg,
.topbar__back use {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.topbar__back svg path,
.topbar__back use {
  transition: stroke 0.3s ease;
  stroke: var(--title-color);
}

@media (any-hover: hover) {
  .topbar__back:hover {
    color: var(--blue-hover);
  }

  .topbar__back:hover svg path,
  .topbar__back:hover use {
    stroke: var(--blue-hover);
  }
}

.topbar__item {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.topbar__item svg,
.topbar__item use {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  stroke: var(--title-color);
}

.topbar__interact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}





.review-description p {
  line-height: var(--fs-16-line-height);
}

.news-detail-aside {
	width: 288px;
	max-width: 100%;
}

.news-detail-aside__logo {
	height: 145px;
}

.news-detail-aside__logo-img {
	max-width: 202px;
	max-height: 40px;
}
.news-detail-pill{
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: var(--flex-basis);
}
