/* =================================================
   BASE ICONOS (SVG INLINE)
   ================================================= */
.pg-svg-icon svg {
  width: auto;
  height: 26px;
  display: block;
}

/* Android demasiado ancho (5º en el orden editorial) */
.pg-icons .pg-svg-icon:nth-child(5) svg {
  max-width: 42px;
}

/* =================================================
   CAJA 1 · PLATAFORMAS (ARRIBA)
   ================================================= */
.pg-platforms-box {
  width: 100%;
  background-color: #f1f1f1;
  padding: 16px;
  margin: 18px 0 24px;
  box-sizing: border-box;
}

.pg-platforms-box-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pg-platforms-box .pg-title {
  margin: 0;
  text-align: center;
}

.pg-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* =================================================
   CAJA 2 · FICHA DEL JUEGO (ABAJO)
   Mobile-first
   ================================================= */
.pg-game-summary-box {
  width: 100%;
  background-color: #f1f1f1;
  padding: 16px;
  margin-top: 28px;
  box-sizing: border-box;
}

.pg-game-summary-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pg-game-cover img {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: block;
}

.pg-game-summary-text {
  width: 100%;
}

.pg-game-title {
  margin: 0 0 8px;
}

.pg-game-meta {
  margin-top: 6px;
}

.pg-game-summary-platforms {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pg-game-summary-platforms .pg-title {
  margin: 0;
  text-align: center;
}

/* =================================================
   DESKTOP
   ================================================= */
@media (min-width: 768px) {

  /* Iconos base */
  .pg-svg-icon svg {
    height: 38px;
  }

  /* Caja 1 */
  .pg-platforms-box {
    padding: 20px;
  }

  .pg-platforms-box-inner {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .pg-platforms-box .pg-title {
    text-align: right;
    white-space: nowrap;
  }

  /* Caja 2 */
  .pg-game-summary-box {
    padding: 20px;
  }

  .pg-game-summary-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
  }

  .pg-game-cover img {
    max-width: 180px;
  }

  /* Iconos ficha final (ligeramente más contenidos) */
  .pg-game-summary-box .pg-svg-icon svg {
    height: 34px;
  }
}
