.events-we-host {
  padding: 80px 20px;
  background-color: #fff;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.events-header {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  text-align: center;
  color: #4B4D53;
  margin: 0 0 20px;
}

.events-intro {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.2;
	text-align: center;
	color: #4B4D53;
	max-width: 902px;
	margin: 0 auto 40px;
}

.events-grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 50px;
  justify-content: center;
}

.event-item {
  max-width: 454px;
  text-align: center;
}

.event-image-container {
  position: relative;
  max-width: 454px;
  aspect-ratio: 454 / 308;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto 20px;
}

.event-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #4B4D53;
  margin-bottom: 0px;
}

.event-description {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
	color: #4B4D53;
	margin: 10px 0 0;
	max-width: 380px;
  padding: 0 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .events-grid {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .event-image-container {
    width: 100%;
  }
  .event-title{
    margin: 0;
  }
  .event-item {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .event-description {
    font-size: 20px;
    line-height: 32px;
  }
}
