/* EVENT LIST CONTAINER */
.events-list {
  max-width: 1100px;
  margin: auto;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* EVENT ROW CARD */
.event-row {
  width: 100%; /* ← THIS is what makes the card stretch */

  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
  padding: 26px 30px;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}



.event-row:hover {
  border-color: #c1121f;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* LEFT SIDE */
.event-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* TITLE + LINKS (RED → BLUE) */
.event-title {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}

.event-title a,
.event-title a:visited {
  color: #c1121f;
  text-decoration: none;
}

.event-title a:hover {
  color: #007bff;
}

/* META */
.event-meta {
  font-size: 14px;
  color: #777;
  font-weight: 500;
}

/* SUMMARY */
.event-summary {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* READ MORE LINK */
.event-read {
  font-size: 14px;
  font-weight: 600;
  color: #c1121f;
  text-decoration: none;
  margin-top: 4px;
}

.event-read:hover {
  color: #007bff;
  text-decoration: underline;
}

/* GLOBAL LINK OVERRIDES */
.events-list a,
.events-list a:visited {
  color: #c1121f !important;
}

.events-list a:hover {
  color: #007bff !important;
}

/* IMAGE */
.event-right img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  border: 1px solid #ddd;
  transition: transform 0.2s ease;
}

.event-row:hover .event-right img {
  transform: scale(1.02);
}

/* MOBILE */
@media (max-width: 800px) {
  .events-list {
    padding: 20px;
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-right img {
    width: 100%;
    height: 240px;
  }
}
