/* UPCOMING */

.upcoming-box {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: var(--card-padding);
  box-shadow: var(--shadow);
}

.upcoming-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.upcoming-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: white;
  padding: 12px 18px;
  border-radius: 18px;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.event-date strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
}

.event-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--card-padding);
  box-shadow: var(--shadow);
}

.event-content {
  line-height: 1.9;
  font-size: 1rem;
}

.event-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.event-sidebar .card {
  position: sticky;
  top: 100px;
}
