/* Museum Intro Card */

.museum-intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 180px;
  margin: 2rem 0 3rem;
  padding: 2rem 5rem;

  background: #f8fbff;
  border: 2px solid #d8e3f5;
  border-radius: 18px;

  box-shadow: 2px 2px 0 rgba(138,162,211,.18);

  overflow: hidden;
}

.museum-intro-content {
  width: 80%;
  max-width: 600px;
  font-family: ipx;
  text-align: center;
}

.museum-intro h1 {
  margin: 0 0 1rem;

  color: #8aa2d3;
  font-size: 1.8rem;
  font-family: ipxs;
}

.museum-intro p {
  margin: .5rem 0;

  line-height: 1.8;
  color: #667;
}

.museum-deco {
  position: absolute;

  width: 80px;
  height: 80px;

  object-fit: contain;
  image-rendering: pixelated;
}

.museum-deco.left {
  left: 1.1rem;
}

.museum-deco.right {
  right: 1.1rem;
}

@media(max-width:600px){

  .museum-intro {
    padding: 2rem 1rem;
  }

  .museum-intro-content {
    width: 85%;
  }

  .museum-deco {
    width: 50px;
    height: 50px;
  }

}

.post-title::before,
.post-title::after {
  content: "";
  display: inline-block;

  width: 36px;
  height: 36px;

  background-image: url("https://img.naturaleki.one/neversista/love.png");
  background-size: contain;
  background-repeat: no-repeat;

  image-rendering: pixelated;

  vertical-align: middle;
  transform: translateY(-5px);
}


/* ===========================
   Game Library
=========================== */

.game-library {
  width: 98%;
  margin: 2rem auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  column-gap: .8rem;
  row-gap: 1.5rem;
}

.game-card {
  display: flex;
  flex-direction: column;
  gap: .2rem;

  text-decoration: none !important;
  color: inherit;
}

.game-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;

  border-radius: 5px;
  background: #f3f3f3;
}

.game-card p {
  margin: 0 !important;
  padding: 0;

  text-align: center;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  font-family: ipxs;
  color: #8aa2d3;
}

/* Section Title */
.museum-title {
  display: flex;
  align-items: center;
  margin: 3rem 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #8aa2d3;
}

.museum-title img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  object-fit: contain;
  image-rendering: pixelated;
  transform: translateY(4px);
}

/* Responsive */
@media(max-width:1000px){
  .game-library {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }
}

@media(max-width:800px){
  .game-library {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}

@media(max-width:600px){
  .game-library {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media(max-width:600px){
  .museum-intro {
    min-height: auto;
    padding: 6rem 1.2rem 2rem;
  }
  .museum-intro-content {
    width: 100%;
    max-width: none;
  }
  .museum-deco {
    width: 52px;
    height: 52px;
    top: 1.5rem;
    bottom: auto;
  }
  .museum-deco.left {
    left: 2rem;
  }
  .museum-deco.right {
    right: 2rem;
  }
  .museum-intro h1 {
    margin: 0 0 1rem;
    font-size: 1.55rem;
  }
  .museum-intro p {
    font-size: .95rem;
    line-height: 1.7;
  }
}