@import "../../components/products-list/style.css";
.products-single-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media screen and (width < 768px) {
  .products-single-content {
    gap: 40px;
  }
}
.products-single-content-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 24px 60px;
}
.products-single-content-header > .header-img {
  grid-row: span 2;
  padding: 12px;
  border-radius: 20px;
  background-color: var(--color-gray-6);
  position: relative;
}
.products-single-content-header > .header-img > .img {
  aspect-ratio: 3/2;
}
.products-single-content-header > .header-img > .img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-single-content-header > .header-title > h3 {
  margin-top: 36px;
  padding: 12px;
  background-color: var(--color-gray-6);
  width: fit-content;
}
.products-single-content-header > .header-spec > h3 {
  font-weight: 600;
  margin-bottom: 24px;
}
.products-single-content-header > .header-spec > h5 {
  margin-bottom: 8px;
}
.products-single-content-header > .header-spec > p {
  margin-bottom: 24px;
  white-space: pre-line;
}

@media screen and (width < 1280px) {
  .products-single-content-header {
    gap: 24px;
  }
}
@media screen and (width < 768px) {
  .products-single-content-header {
    grid-template-columns: 100%;
    gap: 40px;
  }
  .products-single-content-header > .header-img {
    grid-row: auto;
  }
  .products-single-content-header > .header-title {
    order: -1;
  }
  .products-single-content-header > .header-title > h3 {
    margin-top: 16px;
  }
  .products-single-content-header > .header-spec > h3 {
    margin-bottom: 16px;
  }
  .products-single-content-header > .header-spec > h5 {
    margin-bottom: 4px;
  }
  .products-single-content-header > .header-spec > p {
    margin-bottom: 16px;
  }
}
.header-img-open-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--color-gray-5);
  transition: background-color 0.3s;
}
.header-img-open-modal:hover {
  background-color: var(--color-gray-5);
  border-color: var(--color-gray-5);
}

.products-single-content-number > .title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.products-single-content-number > .title > h3 {
  font-weight: 600;
}
.products-single-content-number > .img {
  margin-bottom: 24px;
}
.products-single-content-number > .img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.products-single-content-number > p {
  border-top: 2px solid var(--color-secondary-1);
  border-radius: 4px;
  background-color: var(--color-gray-6);
  padding: 24px;
  white-space: pre-line;
  max-height: 400px;
  overflow: auto;
}

@media screen and (width < 768px) {
  .products-single-content-number > h3 {
    margin-bottom: 16px;
  }
  .products-single-content-number > .img {
    aspect-ratio: 36/5;
  }
  .products-single-content-number > p {
    padding: 12px;
  }
}