.events-section {
  background: var(--neutral-light);
  width: calc(100% - 4rem);
  margin: 2rem;
  padding: 3rem 0;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.events-container {
  position: relative;
  max-width: 75rem;
  width: 100%;
  min-height: 650px;
  margin: 0 auto;
  padding: 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-end;
}

.events-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.events-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65),
    rgba(48, 92, 222, 0.5)
  );
  z-index: 1;
}

.events-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: var(--fw-extra-bold);
  color: white;
  margin: 0;
  text-align: left;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.events-description {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: var(--fw-medium);
  color: white;
  line-height: 1.7;
  margin: 0;
  text-align: left;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.events-description strong {
  font-weight: var(--fw-bold);
  color: #ffd700;
}

.events-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary-1);
  color: white;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin: 0;
  width: fit-content;
}

.events-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  background: var(--primary-3);
}

@media (max-width: 900px) {
  .events-title {
    font-size: 3rem;
  }

  .events-description {
    font-size: clamp(1rem, 5vw, 1.8rem);
  }

  .events-btn {
    padding: 0.875rem 2rem;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .events-section {
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 2rem 0;
    min-height: 50vh;
  }

  .events-container {
    min-height: 400px;
    padding: 2.5rem;
  }

  .events-content {
    gap: 1.25rem;
    max-width: 100%;
  }

  .events-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .events-description {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  .events-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .events-section {
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 1rem 0;
    min-height: 45vh;
  }

  .events-container {
    min-height: 450px;
    padding: 2rem;
  }

  .events-content {
    gap: 1rem;
  }

  .events-title {
    font-size: 1.2rem;
  }

  .events-description {
    font-size: 1rem;
    line-height: 1.4;
  }

  .events-btn {
    padding: 0.8rem 1.75rem;
    font-size: 1rem;
  }
}
