.auto-style-1 { background: #1d3684 }
.auto-style-2 { color: #fff }
.auto-style-3 { padding: 0 20px }

/* Extracted <style> blocks */
.mainEvent {
            max-width: 1200px;
            margin: 10px auto;
            padding: 0 10px;
          }

          .eventsContainer {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            padding: 20px;
            margin: 20px auto;
          }

          .event {
            box-shadow: 0 3px 10px rgba(100, 100, 100, 0.6);
            border-radius: 10px;
            text-align: center;
            width: 350px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid #ccc;
          }

          .eventImg {
            height: 250px;
            padding: 10px;
            border-bottom: 1px solid #ccc;
          }

          .eventImg img {
            width: 100%;
            height: 100%;
            object-fit: contain;
          }

          .eventText {
            margin: auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
            gap: 10px;
            padding: 15px;
            width: 100%;
          }

          .eventText h3 {
            margin: 0;
            padding: 0;
            text-align: center;
          }

          .eventText a {
            color: #1d3684;
            font-weight: bold;
            font-size: 17px;
          }