.info {
}
.info__head {
}
.info__body {
}

.info-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--g-font--oswald);
  font-size: var(--g-font-size--x1p5);
}
.info-head__text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-head__text img {
  height: 1em;
}
.info-head__text--category {
}
.info-head__text--code {
}

.display {
  position: relative;
  z-index: 1;
  padding: 3rem;
}
.display::before,
.display::after {
  position: absolute;
  z-index: -1;
  content: '';
  width: calc(100% - 2.5rem);
  height: calc(100% - 2.5rem);
  border-radius: 1.2rem;
  border: 4px solid #000;
}
.display::before {
  left: 0;
  top: 0;
}
.display::after {
  right: 0;
  bottom: 0;
}
.display__texts {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
}
.display__text {
  font-family: var(--g-font--oswald);
  font-size: var(--g-font-size--x1p5);
}
.display__text--title {
  font-size: var(--g-font-size--x2p5);
  color: var(--g-color--red);
}

.description {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1280px) {
  .description {
    grid-template-columns: 53.4rem 1fr;
  }
}
.description__thumb {
}
.description__thumb img {
  width: 100%;
}
.description__text {
}
.description__text-line {
  display: flex;
  gap: 0.5rem;
}
.description__text-line::before {
  content: '-';
}

.comment {
  display: grid;
  grid-template: 'thumb' 'text';
  gap: 2rem;
  padding: 2rem;
  background-color: var(--g-color--blue);
}
@media (min-width: 1280px) {
  .comment {
    grid-template: 'text thumb' / 1fr auto;
    gap: 4rem;
  }
}
.comment__thumb {
  grid-area: thumb;
  display: grid;
  grid-template-columns: 17.5rem;
  justify-content: center;
}
.comment__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.comment__text {
  position: relative;
  grid-area: text;
  border-radius: 1.2rem;
  background-color: #fff;
  padding: 2rem 4rem;
}
.comment__text::after {
}
@media (min-width: 1280px) {
  .comment__text::after {
    content: '';
    position: absolute;
    width: 4rem;
    height: 4rem;
    right: -4rem;
    top: 10rem;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    background-color: #fff;
  }
}
