/* ======================================
   Events Section
   ====================================== */

.events {
  border-radius: var(--radius-lg);
  padding-block: var(--sec-pad);
}

.events__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.events__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}

@media (max-width: 1023px) {
  .events__grid {
    grid-template-columns: 1fr;
  }
}

.events__content {
  padding: clamp(24px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.events__section-title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-2);
  color: var(--black);
}

.events__title {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  font-weight: var(--w-h2);
  margin-bottom: var(--space-3);
}

.events__title .accent,
.events__title span {
  color: var(--primary-red);
}

.events__desc {
  margin-bottom: var(--space-4);
  color: #555;
  line-height: 1.6;
}

.events__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 40px);
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-3);
}

.events__meta-item {
  display: flex;
  flex-direction: column;
}

.events__meta-heading {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 4px;
}

.events__meta-text {
  font-weight: 600;
  color: var(--black);
}

.events__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

@media (max-width: 1023px) {
  .events__image img {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
}
