/* Tickets page — converted from src/pages/TicketsPage.jsx styled-components */

/* TicketsPageRoot */
.tickets-root {
  width: 100%;
  min-height: 100vh;
  background: #f2f2f2;
}

/* TicketsHero */
.tickets-hero {
  position: relative;
  min-height: 560px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 40px 56px;
}

/* TicketsHeroOverlay */
.tickets-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 15%, rgba(0, 0, 0, 0.62) 100%);
}

/* TicketsHeroTitle */
.tickets-hero-title {
  position: relative;
  margin: 0;
  color: #ffffff;
  font-family: 'Grumpy W05 Black36', serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  z-index: 1;
}

/* TicketsAdmissionSection */
.tickets-admission-section {
  background: #ffffff;
  padding: 34px 24px 48px;
}

/* TicketsAdmissionInner */
.tickets-admission-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* TicketsAdmissionHead */
.tickets-admission-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

/* TicketsAdmissionTitle */
.tickets-admission-title {
  margin: 0;
  color: #171717;
  font-family: 'Grumpy W05 Black36', serif;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1;
  font-weight: 400;
}

/* TicketsAdmissionCalendarLink */
.tickets-admission-calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1d2533;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

/* TicketsCardsGrid */
.tickets-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 980px) {
  .tickets-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* TicketsCard */
.tickets-card {
  background: #f5f5f5;
}

/* TicketsCardImage */
.tickets-card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

/* TicketsCardBody */
.tickets-card-body {
  padding: 14px 16px 18px;
}

/* TicketsCardTitle */
.tickets-card-title {
  margin: 0 0 10px;
  color: #1d2533;
  font-family: 'Roboto', sans-serif;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 700;
}

/* TicketsCardText */
.tickets-card-text {
  margin: 0;
  color: #1d2533;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

/* TicketsCardLink */
.tickets-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #171717;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
}
