.page-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px 40px;
}

.event-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}

.event-card {
  display: flex;
  align-items: center;
  background: var(--primary-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-speed);
  text-align: left;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.event-image {
  width: 250px;
  height: 180px;
  object-fit: cover;
}

.event-info {
  padding: 20px;
}

.event-info h2 {
  margin: 0 0 10px 0;
  font-size: 1.3rem;
  text-align: left;
}

.event-info p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .event-card {
    flex-direction: column;
  }

  .event-image {
    width: 100%;
    height: 200px;
  }
}