.movies {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  background: url("../assets/back.png") center/cover no-repeat fixed;
}
.movies__overlay {
  min-height: inherit;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
}
.movies__content {
  width: min(1200px, 92%);
  padding: 8rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.movies__catch {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}
.movies__title {
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #222;
}
.movies__description {
  max-width: 640px;
  margin-bottom: 5rem;
  font-size: 1.05rem;
  line-height: 1.9;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
}
.movies__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.movie-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}
.movie-card__thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.movie-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.movie-card__date {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.45);
}
.movie-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}
.movie-card__description {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.72);
}
.movie-card__button {
  align-self: flex-start;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .movies__content {
    padding: 6rem 0;
  }
  .movies__description {
    margin-bottom: 3rem;
  }
  .movies__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .movie-card__body {
    padding: 1.5rem;
  }
  .movie-card__title {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=movies.css.map */