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

.event-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  animation: fade 1s;
}

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

.event-card:hover {
  transform: translateY(-3px);
  /* 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;
}

.furry-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
}

.divider-paws {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #aaa;
}

.divider-paws .fa-paw {
  font-size: 14px;
}

.divider-paws .fa-paw.fa-lg {
  font-size: 20px;
  color: #888;
}


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

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

@keyframes fade {
  from {
    opacity: 0%;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}