.uc-concept-detail {
  display: grid;
  grid-template-columns: calc((100vw - 1400px) / 2) 1fr 1fr calc((100vw - 1400px) / 2);
  grid-template-rows: 1fr 3fr;
  height: 100vh;
  gap: 2rem 0;

  padding: 2rem;
}

.uc-concept-detail .intro, 
.uc-concept-detail .outtro {
  text-align: center;
  grid-column-start: 2;
  grid-column-end: 4;
  text-wrap: balance;
  padding: 1px calc((100% - 1080px) / 2);
}

.uc-concept-detail .picture p {
  line-height: 0;
  margin: 0;
  padding: 0;
}

.uc-concept-detail .picture img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
}

.uc-concept-detail .picture {
  max-width: 700px;
  overflow: hidden;
  background-color: white;
  
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.uc-concept-detail .prose {
  max-width: 700px;
  padding: 1px 1.5rem;
  background-color: white;

  scrollbar-gutter: stable;
  overflow-x: hidden;
  overflow-y: scroll;
}

.uc-concept-detail:nth-child(even) .prose{
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 3;
  
  border-radius:  0 1.25rem 1.25rem 0;
}

.uc-concept-detail:nth-child(odd)  .prose{
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;

  border-radius: 1.25rem 0 0 1.25rem;
}

.uc-concept-detail:nth-child(even) .picture {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;

  border-radius: 1.25rem 0 0 1.25rem;
}

.uc-concept-detail:nth-child(odd) .picture {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 3;

  border-radius:  0 1.25rem 1.25rem 0;
}

.uc-concept-detail .prose::-webkit-scrollbar-thumb { border-radius: 1.5rem; 
}

.uc-concept-detail h2,
.uc-concept-detail h3, 
.uc-concept-detail h4 {
  font-weight: 600;
}

.uc-concept-detail:nth-child(3n + 2) {
  background-color: rgba(111, 172, 213, 0.2);
}

.uc-concept-detail:nth-child(3n + 2) h2,
.uc-concept-detail:nth-child(3n + 2) h3, .uc-concept-detail:nth-child(3n + 2) h4, .uc-concept-detail:nth-child(3n + 2) a {
  color: #1a76b8;
}

.uc-concept-detail:nth-child(3n + 3) {
  background-color: rgba(51, 153, 153, 0.2);
}

.uc-concept-detail:nth-child(3n + 3) h2,
.uc-concept-detail:nth-child(3n + 3) h3, .uc-concept-detail:nth-child(3n + 3) h4, .uc-concept-detail:nth-child(3n + 3) a {
  color: #339999;
}

.uc-concept-detail:nth-child(3n + 4) {
    background-color: rgba(255, 102, 102, 0.08);
}

.uc-concept-detail:nth-child(3n + 4) h2,
.uc-concept-detail:nth-child(3n + 4) h3, .uc-concept-detail:nth-child(3n + 4) h4, .uc-concept-detail:nth-child(3n + 4) a {
  color: #ff6666;
}