/* Visual dedicado para o shortcode [game_card] */
.wp-game-card-shortcode {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  width: 100%;
  max-width: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  font-family: inherit;
  box-sizing: border-box;
}
.wp-game-card-shortcode .wp-game-card-header {
  padding: 16px 20px 10px 20px;
  background: var(--wpgc-header-bg, linear-gradient(135deg, #3a6186, #89253e));
  color: var(--wpgc-header-text, #fff);
  border-radius: 10px 10px 0 0;
}
.wp-game-card-shortcode .wp-game-card-title {
  margin: 0;
  font-size: 1.4em;
  line-height: 1.2;
  font-weight: 700;
}
.wp-game-card-shortcode .wp-game-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.wp-game-card-shortcode .wp-game-card-title a:hover {
  text-decoration: underline;
}
.wp-game-card-shortcode .wp-game-card-content {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 16px 20px 18px 20px;
  box-sizing: border-box;
  min-height: 140px;
  flex-wrap: wrap;
}
.wp-game-card-shortcode .wp-game-card-img-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 160px;
  min-width: 160px;
}
.wp-game-card-shortcode .wp-game-card-img-link img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  margin: 0;
  display: block;
}
.wp-game-card-shortcode .wp-game-card-info {
  flex: 1;
  min-width: 0;
}
.wp-game-card-shortcode .wp-game-description {
  font-size: 0.98em;
  margin-bottom: 10px;
}
.wp-game-card-shortcode .wp-game-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  font-size: 0.93em;
}
.wp-game-card-shortcode .wp-game-card-publisher,
.wp-game-card-shortcode .wp-game-card-developer,
.wp-game-card-shortcode .wp-game-card-release {
  margin-bottom: 2px;
}
.wp-game-card-shortcode .wp-game-our-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wp-game-card-shortcode .rating-label {
  font-weight: 600;
  font-size: 0.98em;
}
.wp-game-card-shortcode .rating-value {
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
  background-color: rgba(0,0,0,0.05);
  font-size: 1em;
}
@media (max-width: 700px) {
  .wp-game-card-shortcode {
    max-width: 100vw;
  }
}
@media (max-width: 500px) {
  .wp-game-card-shortcode .wp-game-card-content {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 10px 4vw 12px 4vw !important;
    min-height: unset !important;
  }
  .wp-game-card-shortcode .wp-game-card-img-link {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    justify-content: center !important;
  }
  .wp-game-card-shortcode .wp-game-card-img-link img {
    width: 100% !important;
    max-width: 220px !important;
    height: auto !important;
    margin: 0 auto 10px auto !important;
    display: block;
  }
  .wp-game-card-shortcode .wp-game-card-info {
    width: 100% !important;
  }
} 