/* TODO */

.cover-product {
  display: flex;
  align-items: center;
  padding-top: var(--gap-2xl);
  padding-bottom: var(--gap-2xl);
  box-sizing: border-box;
}

@media screen and (min-width: 1024px) {
  .cover-product--image {
    width: 36.875rem;
    height: 36.875rem;
    flex-shrink: 0;
  }
  .cover-product--container {
    transform: translateX(-6.3rem);
  }
  .cover-product--logo-wrapper {
    border-radius: 1rem;
    background: #fff;
    padding: 2rem;
  }
  .cover-product--logo {
    height: 3rem;
  }
  .cover-product--paragraph {
    width: 44.1875rem;
    font-size: var(--text-3xl);
    padding: 2rem;
    box-sizing: border-box;
    font-weight: 500;
    margin: 0;
    margin-top: var(--gap-s);
  }
}

@media screen and (max-width: 1023px) {
  .cover-product {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .cover-product--image {
    margin-top: 8rem;
    width: 30.6rem;
    height: 30.6rem;
    flex-shrink: 0;
  }
  .cover-product--container {
  }
  .cover-product--logo {
    position: absolute;
    height: 6rem;
    left: 50%;
    transform: translate(-50%, -38.6rem);
  }
  .cover-product--paragraph {
    --width: 80%;
    margin: -3rem 0 0 calc(100% - var(--width));
    width: var(--width);
    font-size: var(--text-3xl);
    padding: 1em;
    box-sizing: border-box;
    font-weight: 500;
  }
}
