/* Modern horizontal split-card styles for events */
.event-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(20,30,60,0.08);
  overflow: hidden;
  margin: 1rem 0;
  min-height: 180px;
}

.event-image {
  width: 50%;
  min-width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.event-image .meeting-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #f5f7fa;
  color: #8a97b5;
  font-size: 14px;
}

.event-content {
  width: 50%;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-title {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #12344a;
  font-weight: 600;
}

.event-meta {
  display: flex;
  gap: 12px;
  color: #516582;
  font-size: 14px;
  margin-bottom: 8px;
}

.event-location, .event-desc {
  color: #516582;
  font-size: 14px;
  margin: 6px 0;
}

.attend-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #48C7EC;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(72,199,236,0.18);
  transition: background 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.attend-btn:hover,
.attend-btn:focus {
  background: #48C7EC;
  box-shadow: 0 8px 20px rgba(72,199,236,0.22);
  transform: translateY(-1px);
  color: #ffffff;
}

/* Premium content styles (shared with event-details) */
.premium-content {
  width: 50%;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-meta-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #394b5a;
  font-size: 14px;
}

.meta-item i {
  color: #48C7EC;
  font-size: 16px;
  width: 26px;
  text-align: center;
}

.register-now {
  display: inline-block;
  background: #48C7EC;
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  width: 100%;
  box-shadow: 0 6px 18px rgba(72,199,236,0.16);
  text-decoration: none;
}

.premium-summary-heading {
  margin: 12px 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #25343f;
}

.premium-summary-paragraph {
  margin: 0 0 12px;
  color: #465760;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive: stack image on mobile */
@media (max-width: 767px) {
  .event-card {
    flex-direction: column;
  }
  .event-image, .event-content {
    width: 100%;
    min-width: 100%;
  }
  .event-image {
    width: 100%;
    height: auto;
  }
  .event-image img {
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .event-content {
    padding: 16px;
  }
}

/* Center and limit width of the contact section container */
#contact-section .container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 480px) {
  #contact-section .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Clickable card cursor */
.card-clickable { cursor: pointer; }
