@import url('https://fonts.googleapis.com/css2?family=Average&display=swap');


header {
  background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  padding: 40px 40px 40px 40px;
  max-width: 100%;
}

header > * {
  display: block;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

body {
  font-family: Average;
  font-size: 1rem;
  line-height: 1.5;
  color: #00000;
  background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  background-size: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
}

h1 {
  font-size: 3.5rem;
  color: #00000;
}

h2 {
  font-size: 2.5rem;
  margin-top: 1rem;
}

h3 {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

p {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.b {
    font-weight: bold;
}

.logo {
  max-width: 100px;
  border-radius: 50%;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.06),
    0 8px 24px rgba(0,0,0,0.10),
    0 24px 56px rgba(0,0,0,0.08);
}


.active {
  text-decoration: underline;
  text-decoration-color: black;
}


img {
  max-width: 100%;
  height: auto;
}


/* media query. This is a css selector for when screen width is below 720px
these styles will be applied. An approach to responsive design
by letting you conditionally apply styles at certain widths. */
@media (max-width: 720px) {
  /* these styles will be applied to both the section and header*/


  section,
  header {
    padding: 20px;
  }

  header > * {
  padding-left: 20px;
  padding-right: 20px;
}


  body {
    padding-top: 0;
    font-size: 16px;
  }
}

/* This is a css selector for when screen width is above 2000px*/
@media (min-width: 2000px) {
  body {
    font-size: 22px;
  }

  section {
    padding: 60px;
  }
}

@media (min-width: 1000px) {
  body {
    font-size: 18px;
  }
}


/* =====================
   Edition Grid
   ===================== */
 
.editions-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px 64px;
}
 
.editions-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5f6c7a;
  margin-bottom: 28px;
  padding: 0;
}
 
.editions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
}
 
.edition-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  gap: 14px;
  transition: transform 0.2s ease;
}
 
.edition-card:hover {
  transform: translateY(-4px);
}
 
.edition-card:hover .edition-thumb-wrap {
  box-shadow: 0 12px 32px rgba(102, 126, 180, 0.28);
}
 
.edition-thumb-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(102, 126, 180, 0.15);
  transition: box-shadow 0.2s ease;
  border-radius: 2px;
}
 
.edition-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.edition-thumb-placeholder {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #a6c0fe 0%, #f68084 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  opacity: 0.85;
}
 
.edition-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 2px;
}
 
.edition-season {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a2027;
}
 
.edition-title {
  font-size: 1rem;
  line-height: 1.4;
  color: #13131c;
}
 
@media (max-width: 1000px) {
  .editions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
 
@media (max-width: 720px) {
  .editions-section {
    padding: 32px 20px 48px;
  }
 
  .editions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }