/* Two-column event details */
.two-col-event {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.event-image-link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.event-image-link:hover .event-image {
  transform: scale(1.08);
}

.event-image-link:hover {
  box-shadow: 0 4px 16px rgba(107, 142, 35, 0.3);
}

.event-image-col {
  flex: 0 0 200px;
  max-width: 200px;
}

.event-image {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(107, 142, 35, 0.15);
  display: block;
  border: 2px solid #6b8e23;
}

.event-text-col {
  flex: 1 1 0;
  min-width: 0;
}

.event-text-col h4 {
  color: #2d3a1f;
  margin-bottom: 8px;
  border-bottom: 3px solid #6b8e23;
  padding-bottom: 6px;
}

.event-text-col p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.event-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #6b8e23 0%, #5a8a0f 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(107, 142, 35, 0.25);
}

.event-cta-button:hover {
  background: linear-gradient(135deg, #5a8a0f 0%, #4a7208 100%);
  box-shadow: 0 6px 16px rgba(107, 142, 35, 0.35);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .two-col-event {
    flex-direction: column;
    gap: 10px;
  }
  .event-image-col {
    max-width: 100%;
    width: 100%;
  }
  .event-image {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .two-col-event {
    flex-direction: column;
    gap: 8px;
  }
  .event-image-col {
    max-width: 100%;
    width: 100%;
  }
  .event-image {
    max-width: 100%;
  }
  .event-cta-button {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }
}
