     .eventsPicture-title {
      position: absolute;
      bottom: 30px;
      left: 40px;
      color: #FEDD3C;
      text-align: center;
      text-shadow: 1px 1px 3.8px #808080;
      font-family: Inter, sans-serif;
      font-size: 96px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      margin: 0;
      z-index: 2;
      }
      .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        background-color: rgba(24, 24, 24, 0.58);
      }
      .eventsPicture {
        position: relative;
        width: 100%;
        height: 400px;
        margin-bottom: 20px;
        background-image: url('eventsHeader.jpeg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        overflow: hidden;
      }
.flexContainer{
  display: grid;
  grid-template-columns: 1fr 2fr;
  row-gap: 50px;
}
.groupEvent{
border-radius: 24px;
background: #F6F6F6;
box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
padding: 20px;
display: flex;
flex-direction: column;
gap: 12px;
margin-left: 2opx;
}

.dateTimeImgGroup{
  border-radius: 18px;
border: 0.5px solid #ACACAC;
}

.dateTimeImgGroup {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px; /* space between icons and text */
  padding: 8px 12px;
  border-radius: 18px;
  border: 0.5px solid #ACACAC;
  background: #F6F6F6;
  margin-bottom: 10px;
}

.inline {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

#inline{
  width: 40px;
  height: 40px;
}

.location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.price{
  color: #e63946;
    padding: 8px 12px;
  border-radius: 18px;
  border: 0.5px solid #ACACAC;
  background: #F6F6F6;

}

.eventpic{
width: 450px;
height: 450px;
flex-shrink: 0;
aspect-ratio: 378/253;
border-radius: 24px;
background: url(<path-to-image>) lightgray -72px -0.062px / 119.048% 100.049% no-repeat;
box-shadow: 6px 9px 18px 0 rgba(0, 0, 0, 0.50);
}

/* Countdown section */
.countdown-section {
  text-align: center;
  position: relative;
  z-index: 3;
  margin-top: -5px;
  margin-bottom: 30px;
}

.countdown-title {
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #000;
}

.timer-container,
#timer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.timer-box {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

/* Original color scheme */
.timer-box:nth-child(1) {
  border-top: 5px solid #e63946;
}

/* red */
.timer-box:nth-child(2) {
  border-top: 5px solid #3a86ff;
}

/* blue */
.timer-box:nth-child(3) {
  border-top: 5px solid #2ea44f;
}

/* green */
.timer-box:nth-child(4) {
  border-top: 5px solid #f3a71f;
}

/* yellow */

.numbers {
  display: block;
  font-size: 2.2em;
  font-weight: 900;
  color: #111;
}

.small-note {
  margin-top: 10px;
  color: #333;
  font-size: 0.9em;
}
.event-main {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* stretch the price container to full height */
  gap: 20px;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.event-price {
  display: flex;
  align-items: center; /* vertically center the price */
  justify-content: center;
  padding-left: 20px; /* space from the vertical line */
  border-left: 2px solid #ACACAC; /* vertical line */
  flex-shrink: 0;
  min-width: 80px; /* optional, makes price box consistent width */
}

.price {
  color: #e63946;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  margin: 0;
}

/* ======== MOBILE RESPONSIVE ADJUSTMENTS ======== */
@media (max-width: 768px) {

  .eventsPicture-title {
    font-size: 48px;
    left: 20px;
    bottom: 20px;
    text-align: left;
  }

  .eventsPicture {
    height: 250px;
  }

  .flexContainer {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .eventpic {
    width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 16px;
  }

  .groupEvent {
    margin-left: 0;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }

  .event-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .event-price {
    border-left: none;
    border-top: 2px solid #ACACAC;
    padding-left: 0;
    padding-top: 10px;
    width: 100%;
    justify-content: flex-start;
  }

  .price {
    font-size: 1rem;
    padding: 6px 10px;
  }

  .dateTimeImgGroup {
    flex-wrap: wrap;
    font-size: 0.9rem;
  }

  .timer-box {
    min-width: 90px;
    padding: 10px 12px;
  }

  .numbers {
    font-size: 1.5em;
  }

  .countdown-title {
    font-size: 1.1em;
  }

  .small-note {
    font-size: 0.8em;
  }
}

