/*
Theme Name:  Hello Elementer-Child
Theme URL:   https://www.molaprise.com/dev
Description: Write here theme description.
Author:      Arun
Author URL:  https://www.molaprise.com/dev
Template:    hello-elementor
Version:     1.0.0
*/
.elementor-widget-theme-post-content .elementor-widget-container{
  color:black ;
}

/* Events grid - 3 items per row */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 30px 0;
}

/* Event Card */
.event-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Event image */
.event-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* Title, Date, Details */
.event-title {
  font-size: 1.2em;
  margin: 10px 0;
}
.event-title a {
  color:black;
}
.eventTitle{
    padding: 5px;
}
.eventform{
   margin-bottom:30px;
}


.em.em-item.em-item-single .em-item-image img{
   border-left:none;
}
.event-date {
  font-size: 0.95em;
  color: #444;
  margin-bottom: 8px;
}

.event-details {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 12px;
}

/* Tags container in top-left corner */
/* Tags container in top-left corner */
.event-tags-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 10;
  background:blue;
  border-radius:15px;
}

/* Tag pills */
.event-tag {
  display: inline-block;
  font-size: 0.75rem;        /* consistent size */
  font-weight: 700;          /* bold */
  text-transform: uppercase; /* ALL CAPS */
  padding: 5px 12px;         /* pill padding */
  border-radius: 999px;      /* makes perfect pill */
  line-height: 1;            /* keeps pill compact */
  white-space: nowrap;       /* no wrapping inside */
  letter-spacing: 0.5px;     /* adds clean spacing */
  color: #fff;               /* default text color */
}

/* Tag color variations */
.event-tag.tag-upcoming {
  background: #0A2A66; /* Dark Blue */
}

.event-tag.tag-past {
  background: #8A8A8A; /* Gray */
}

.event-tag.tag-on-demand {
  background: #4A90E2; /* Light Blue */
}

.vdisplay {
   display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;       /* full height of screen */
      margin: 0;
      background: #f4f4f4;
}
/* View More button */
.event-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #0073aa;
  color: #fff !important;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.85em;
  transition: background 0.2s ease;
}

.event-button:hover {
  background: #005f8d;
}






