 /* HERO */
      .event-hero {
        height: 450px;

        /* Imagen por defecto */
        background-image: url("/assets/img/greek-church-cliff-santorini.jpg");

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        position: relative;
      }

      .event-hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
      }

      .event-hero h1 {
        z-index: 2;
        position: relative;
      }

      /* MAP */
      .map-placeholder {
        height: 300px;
        width: 100%;
        background: #f3f3f3;
        border-radius: 8px;
      }

      /* Cards cleaner look */
      .event-content .card {
        border-radius: 12px;
      }
      .map-container iframe {
        width: 100%;
        height: 300px;
        border: 0;
        border-radius: 8px;
      }
      .event-poster {
        width: 100%;
        object-fit: cover;
        border-radius: 2px;
        cursor: pointer;
        transition: transform 0.2s ease;
      }

      .event-poster:hover {
        transform: scale(1.02);
      }