
.pelit-shortcode {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
  }
  .pelit-shortcode :root {
    --color-accent: #27ae60; /* Green accent color, feel free to change it */
  }
  .pelit-shortcode .peli {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Optional, to push content apart */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  /* Add this class to wrap the main content of each card */
  .peli-content {
    flex-grow: 1;
  }
  
  .pelit-shortcode .peli:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  .pelit-shortcode .peli h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .pelit-shortcode .peli img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
  }
  
  .pelit-shortcode .peli a {
    text-decoration: none;
    color: #000;
  }
  
  .pelit-shortcode .peli a:hover {
    color: #0073aa;
  }
  /* No change needed for the button, but for clarity: */
  .pelaa-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    background-color: #96b234;
    color: #fff !important;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  .pelaa-button:hover {
    background-color: #b6ac9d; /* Slightly darker on hover */
  }
  