.product-info-header {
  display: flex;
}

.product-info-header__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-regular);
  line-height: var(--font-line-height-medium);
  margin-top: auto;
}

.product-info-header__content {
  display: flex;
  justify-content: space-between;
}

.product-info-header__content--left {
  flex-wrap: wrap;
}

.product-info-header__content--right {
  gap: 20px;
  display: none;
}

.product-info-header__heading {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.product-info-header__image {
  border-radius: 4px;
  width: 100px;
  aspect-ratio: 100 / 141;
  flex-shrink: 0;
  object-fit: contain;
  background-color: var(--color-gray6);
  display: block;
  margin-right: 18px;
}

.product-info-header__msfs24-compatible-badge {
  margin-left: 8px;
}

.product-info-header__review-average {
  color: var(--color-blue1);
}

.product-info-header__review-details {
  display: flex;
  gap: 4px;
  cursor: pointer;
  margin-right: 8px;
}

.product-info-header__review-total {
  color: var(--color-gray3);
}

.product-info-header__text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-info-header__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: var(--font-line-height-base);
}

.product-info-header__subtitle {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-regular);
  line-height: var(--font-line-height-small);
  color: var(--color-gray3);
  text-decoration: underline transparent;
  transition: text-decoration var(--transition-duration);
}

.product-info-header__subtitle:hover {
  text-decoration: underline;
}

.product-info-header__tooltip {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-info-header__tooltip-icon {
  height: 18px;
  width: 18px;
  color: var(--color-gray3);
  margin-left: 4px;
}

@media (min-width: 576px) {
  .product-info-header__heading {
    gap: 8px;
  }

  .product-info-header__subtitle {
    font-size: var(--font-size-base);
    line-height: var(--font-line-height-base);
  }

  .product-info-header__title {
    font-size: var(--font-size-large);
    line-height: var(--font-line-height-large);
  }
}
@media (min-width: 768px) {
  .product-info-header__title {
    font-size: var(--font-size-xl);
    line-height: var(--font-line-height-xl);
  }
}

@media (min-width: 1024px) {
  .product-info-header__content--right {
    display: flex;
  }

  .product-info-header__image {
    display: none;
  }
}
