/* @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@100;300;400;700&display=swap"); */

#body-tldr {
  background-color: rgb(64, 77, 102);
  /* color: #fff; */
  color: rgb(64, 77, 102);
}

hr {
  background-color: rgb(0, 183, 255);
  margin: 1.618rem auto;
  margin-bottom: 2rem;
  width: 60%;
}

header {
  font-size: 2rem;
  color: #dfdbdb;
  text-align: center;
  margin: 2.5rem auto 0 auto;
  /* margin-bottom: 0; */
  padding-top: 1.5rem;
}

.tldr-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* grid-template-columns: repeat(4, 1fr); */
  gap: 1rem;
  margin: 1.25rem 2.5rem;
}

.tldr-container > div {
  height: 12rem; /* 14rem = 224px (@ 16px/rem) */
  /* height: 14rem; */ /* 14rem = 224px (@ 16px/rem) */
  color: #fff;
  background-image: url("/images/Buza-sun-sea-stone.jpg");
  /* background-image: url("/images/the-wqmap.jpg"; */
  background-size: cover;
  background-attachment: fixed;
  /* background-position-y: 10.5rem; */
  /* background-position-y: 12rem;
  background-repeat: no-repeat; */

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;

  /* opacity: 0.85; */

  transition: all 0.5s ease-in;
}

.tldr-container > div:hover,
.tldr-container > div:active {
  opacity: 1;
  transform: scale(0.975);
  border: 2px solid #e8d581;
}

/* ------------- */

.tldr-container > div:nth-of-type(1) {
  grid-column: 1 / 4;
}

.tldr-container > div:nth-of-type(2) {
  grid-column: 4 / 7;
}

.tldr-container > div:nth-of-type(3) {
  grid-column: 1 / 3;
}

.tldr-container > div:nth-of-type(4) {
  grid-column: 3 / 5;
}

.tldr-container > div:nth-of-type(5) {
  grid-column: 5 / 7;
}
/* ------------- */

/* .tldr-container > div:nth-of-type(8) {
  grid-row: 2/5;
} */

/* h2 {
  font-size: 2.8rem;
} */

h2 span,
p {
  font-size: 1.7rem;
}

article.the-w {
  /* border: 2px solid rgba(50, 57, 67, 0.25); */
  border-radius: 6px;
  background-color: rgba(50, 57, 67, 0.45);
  padding: 0.5rem;
  margin: 0 0.5rem;
  color: #f7eff1;
  /* color: #e8d581; */
}

article.the-w h1 {
  font-size: 2rem;
  font-weight: 520;
}

article.the-w h3 {
  font-size: 1.35rem;
  font-weight: 400;
}

.tldrWqMap,
.wqmap article.the-w h1 {
  color: rgb(253, 253, 138);
}

.tldrWqToolBox,
.wqtoolbox article.the-w h1 {
  color: #f4c100;
  /* color: rgb(205, 223, 252); */
}

.wqmapLogo {
  width: 3.75rem;
}

/* article.the-w:hover,
article.the-w:active {
  color: #e8d581;
} */

/* .bg2 {
  background-image: url("/images/the-wqmap.jpg");
} */

.tldrWqMap,
.wqmap article.theW h1 {
  color: rgb(253, 253, 138);
}

.tldrWqToolBox,
.wqtoolbox article.theW h1 {
  color: #f4c100;
  /* color: rgb(205, 223, 252); */
}

.tldrWqToolBox {
  margin-bottom: 30px;
}

.wqmapLogo {
  width: 3.75rem;
}

@media (max-width: 414px) {
  /* .tldrWqMap,
  .wqmap article.the-w h1 {
    color: red;
  } */

  .tldr-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .tldr-container > div {
    grid-column: 1 / 7;
  }

  .tldr-container > div:nth-of-type(1) {
    grid-column: 1 / 7;
  }

  .tldr-container > div:nth-of-type(2) {
    grid-column: 1 / 7;
  }

  .tldr-container > div:nth-of-type(3) {
    grid-column: 1 / 7;
  }

  .tldr-container > div:nth-of-type(4) {
    grid-column: 1 / 7;
  }

  .tldr-container > div:nth-of-type(5) {
    grid-column: 1 / 7;
  }
}

@media (min-width: 731px) {
  /* .tldrWqMap,
  .wqmap article.the-w h1 {
    color: green;
  } */

  .tldr-container {
    grid-template-columns: repeat(6, 1fr);
  }

  .tldr-container > div:nth-of-type(1) {
    grid-column: 1 / 4;
  }

  .tldr-container > div:nth-of-type(2) {
    grid-column: 4 / 7;
  }

  .tldr-container > div:nth-of-type(3) {
    grid-column: 1 / 3;
  }

  .tldr-container > div:nth-of-type(4) {
    grid-column: 3 / 5;
  }

  .tldr-container > div:nth-of-type(5) {
    grid-column: 5 / 7;
  }
}

@media (min-width: 1024px) {
  /* .tldrWqMap,
  .wqmap article.the-w h1 {
    color: yellow;
  } */

  .tldr-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .tldr-container > div:nth-of-type(1) {
    grid-column: 1 / 3;
  }

  .tldr-container > div:nth-of-type(2) {
    grid-column: 3 / 5;
  }

  .tldr-container > div:nth-of-type(3) {
    grid-column: 1 / 2;
  }

  .tldr-container > div:nth-of-type(4) {
    grid-column: 2 / 4;
  }

  .tldr-container > div:nth-of-type(5) {
    grid-column: 4 / 5;
  }
}
