/**
 * Theme Name: MGM Perú
 * Author: Solution Perú
 * Author URI: https://solutionperu.com/
 * Description: MGM Theme by Solution Perú
 * Version: 1.0.0
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: mgm-peru
 * Template: astra
 */

/* 🎨 Botón de formularios WPForms */
div.wpforms-container-full .wpforms-form input[type="submit"],
div.wpforms-container-full .wpforms-form button[type="submit"],
div.wpforms-container-full .wpforms-form .wpforms-page-button {
  background-color: var(--e-global-color-accent, #0077c8);
  border: 1px solid #ddd;
  color: #fff;
  font-size: 1em;
  padding: 10px 15px;
  box-shadow: 0px 12px 16px -8px rgba(27, 95, 193, 0.38);
  border-radius: 53px;
  transition: all 0.3s ease;
  cursor: pointer;
}

div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
div.wpforms-container-full .wpforms-form .wpforms-page-button:hover {
  background-color: #000;
  color: #FFD700;
  transform: scale(1.05);
  box-shadow: 0px 12px 20px -6px rgba(255, 215, 0, 0.6);
}

/* ===============================
   📌 LISTADO DE PUBLICACIONES
   =============================== */
.mgm-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

/* Tarjeta */
.mgm-post-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  color: #333;
}

.mgm-post-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}

/* Imagen */
.mgm-post-thumb img,
.mgm-post-image img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

/* Título */
.mgm-post-title a {
  color: #0077c8;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.mgm-post-title a:hover {
  color: #FFD700;
}

/* Texto */
.mgm-post-excerpt {
  font-size: 0.95rem;
  margin-top: 10px;
  color: #555;
  line-height: 1.5;
}

