body.album section.hero {
  height: 70vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
body.album section.hero .hero-background {
  width: 100%;
  height: 100%;
}
body.album section.hero .hero-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
body.album section.hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: absolute;
  z-index: 2;
  bottom: 0;
  padding-bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 16rem;
  background: linear-gradient(0deg, rgb(7, 7, 7), rgba(7, 7, 7, 0));
}
body.album section.hero .hero-content h1 {
  font-size: 4rem;
  color: var(--ea-orange);
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  opacity: 0;
}
body.album section.hero .hero-content h1 span {
  color: var(--ea-orange);
}
body.album section.hero .hero-content p {
  font-size: 1.5rem;
  color: var(--ea-white);
  text-align: center;
  opacity: 0;
}
body.album section.album-sections {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 8rem 12rem;
  opacity: 0;
}
body.album section.album-sections div.album-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
body.album section.album-sections div.album-section h2 {
  color: var(--ea-orange);
  font-size: 2rem;
}
body.album section.album-sections div.album-section p {
  color: var(--ea-gray);
}
body.album section.album-sections div.album-section div.album-section-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}
body.album section.album-sections div.album-section div.album-section-gallery img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.album section.album-gallery-preview {
  padding: 8rem 12rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2rem;
}
body.album section.album-gallery-preview div.album-gallery-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.album section.album-gallery-preview div.album-gallery-preview-header h2.album-gallery-preview-title {
  color: var(--ea-orange);
  font-size: 2rem;
}
body.album section.album-gallery-preview div.album-gallery-preview-header a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body.album section.album-gallery-preview div.album-gallery-preview-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 3fr));
  gap: 1rem;
  width: 100%;
}
body.album section.album-gallery-preview div.album-gallery-preview-container img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.album section.album-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0 12rem;
  margin-bottom: 8rem;
}
body.album section.album-features div.album-feature-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border: solid 1px var(--ea-orange);
  border-radius: 1rem;
  width: 100%;
  max-width: 400px;
  color: var(--ea-white);
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
}
body.album section.album-features div.album-feature-item div.album-feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
body.album section.album-features div.album-feature-item div.album-feature-header div.album-feature-icon {
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--ea-orange);
  border-radius: 0.5rem;
  background: var(--ea-orange);
}
body.album section.album-features div.album-feature-item div.album-feature-header div.album-feature-icon i {
  color: white;
  font-size: 1.5rem;
}
body.album section.album-features div.album-feature-item div.album-feature-header h3 {
  color: white;
  font-size: 1.25rem;
}
body.album section.album-features div.album-feature-item p {
  font-size: 1.25rem;
  margin: 0.5rem;
}

@media screen and (max-width: 768px) {
  body.album section.hero {
    height: 60vh;
  }
  body.album section.hero .hero-content {
    height: 12rem;
    padding-bottom: 1rem;
  }
  body.album section.hero .hero-content h1 {
    font-size: 2.5rem;
  }
  body.album section.hero .hero-content p {
    font-size: 1.25rem;
  }
  body.album section.album-sections {
    padding: 2rem;
  }
  body.album section.album-sections div.album-section h2 {
    font-size: 1.5rem;
  }
  body.album section.album-sections div.album-section p {
    font-size: 1rem;
  }
  body.album section.album-gallery-preview {
    padding: 2rem;
  }
  body.album section.album-gallery-preview div.album-gallery-preview-header h2.album-gallery-preview-title {
    font-size: 1.5rem;
  }
  body.album section.album-features {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
  }
  body.album section.album-features div.album-feature-item {
    width: 100%;
    max-width: none;
  }
}/*# sourceMappingURL=album.css.map */