.venue-section {
  padding: 132px 0;
  background: var(--rsf-white);
}

.venue-shell {
  width: min(1274px, calc(100% - 48px));
}

.venue-audience {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 89px;
}

.venue-audience h3 {
  max-width: 1274px;
  margin: 0;
  color: var(--rsf-dark);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.venue-audience h3 strong {
  background: var(--rsf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.venue-cards {
  display: grid;
  grid-template-columns: repeat(3, 410px);
  gap: 22px;
}

.venue-cards article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 410px;
  min-height: 451px;
  padding: 60px 50px;
  border-radius: 30px;
  background: rgba(86, 112, 135, 0.1);
}

.venue-card__icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #567087;
}

.venue-card__icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.venue-cards article:nth-child(3) .venue-card__icon img {
  width: 28px;
  height: 28px;
}

.venue-cards h4 {
  margin: 0 0 8px;
  width: 286px;
  background: var(--rsf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.venue-cards p {
  margin: 0;
  width: 286px;
  color: var(--rsf-muted);
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 1340px) {
  .venue-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .venue-cards article {
    width: auto;
  }

  .venue-cards h4,
  .venue-cards p {
    width: auto;
  }
}

@media (max-width: 900px) {
  .venue-audience {
    gap: 35px;
  }

  .venue-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .venue-section {
    padding: 76px 0 77px;
  }

  .venue-shell {
    width: min(338px, calc(100% - 32px));
  }

  .venue-audience h3 {
    width: 328px;
    font-size: 20px;
  }

  .venue-cards article {
    width: 338px;
    min-height: 354px;
    justify-content: center;
    gap: 15px;
    padding: 44px 30px;
  }

  .venue-card__icon {
    margin-bottom: 0;
  }

  .venue-cards h4 {
    width: 248px;
    margin-bottom: 8px;
    font-size: 20px;
  }

  .venue-cards p {
    width: 281px;
    font-size: 15px;
  }
}
