:root {
  --site-blue: #2563eb;
  --site-cyan: #06b6d4;
  --site-orange: #f97316;
  --site-red: #ef4444;
  --site-green: #16a34a;
  --site-text: #111827;
  --site-muted: #6b7280;
  --site-border: #e5e7eb;
  --site-bg: #f9fafb;
  --site-card: #ffffff;
  --site-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  --site-shadow-lg: 0 22px 55px rgba(15, 23, 42, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--site-bg);
  color: var(--site-text);
}

.site-shell {
  min-height: 100vh;
  background: var(--site-bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.site-container {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--site-blue);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--site-blue), var(--site-cyan));
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  border-radius: 0.55rem;
  padding: 0.55rem 0.8rem;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--site-blue);
  background: #eff6ff;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search input,
.filter-input,
.search-box input,
.search-box select {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: #111827;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 15rem;
  padding-left: 2.35rem;
}

.header-search input:focus,
.filter-input:focus,
.search-box input:focus,
.search-box select:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.search-icon {
  position: absolute;
  left: 0.85rem;
  color: #9ca3af;
  pointer-events: none;
}

.mobile-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  padding: 0.65rem;
  color: #374151;
}

.mobile-menu-button:hover {
  background: #f3f4f6;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--site-border);
  padding: 1rem 0;
}

.mobile-nav.is-open {
  display: grid;
  gap: 0.7rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(115deg, #2563eb 0%, #0891b2 50%, #06b6d4 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.08));
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 3rem;
  min-height: 34rem;
  padding: 5rem 0;
}

.hero-copy {
  max-width: 48rem;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.16);
  color: #eef7ff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-title {
  margin-top: 1rem;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 42rem;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn,
.btn-ghost,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.8rem 1.45rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn {
  color: #ffffff;
  background: var(--site-blue);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.24);
}

.btn:hover,
.btn-light:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-light {
  color: var(--site-blue);
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.16);
}

.btn-light:hover {
  background: #f3f4f6;
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-search {
  position: relative;
  width: min(100%, 34rem);
  margin-top: 2rem;
}

.hero-search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 1rem 1.2rem 1rem 3rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  outline: none;
  backdrop-filter: blur(12px);
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.hero-search .search-icon {
  top: 50%;
  left: 1.15rem;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.76);
}

.hero-panel {
  position: relative;
  min-height: 27rem;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--site-shadow-lg);
  opacity: 0;
  transform: translateX(2rem) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.82));
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  margin-top: -9rem;
  padding: 1.5rem;
}

.hero-slide-content h2 {
  margin-bottom: 0.45rem;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-slide-content p {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-slide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.hero-dots {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 4;
  display: flex;
  gap: 0.45rem;
}

.hero-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-dot.is-active {
  width: 1.7rem;
  background: #ffffff;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #ffffff;
}

.section-hot {
  color: #ffffff;
  background: linear-gradient(115deg, #f97316, #ef4444);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #111827;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-hot .section-title {
  color: #ffffff;
}

.section-lead {
  margin-top: 0.45rem;
  color: var(--site-muted);
  line-height: 1.75;
}

.section-hot .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-cards.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.88);
  border-radius: 0.9rem;
  color: inherit;
  background: var(--site-card);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-0.45rem);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.14);
}

.poster-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

.poster-wrap.wide {
  aspect-ratio: 16 / 10;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.2s ease;
}

.movie-card:hover img,
.list-card:hover img,
.related-card:hover img {
  transform: scale(1.06);
}

.poster-badge,
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.92);
}

.poster-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
}

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  color: #ffffff;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.78));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.card-body {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.7rem;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 3.2rem;
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.72;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.detail-meta,
.result-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  color: #6b7280;
  font-size: 0.83rem;
}

.rating {
  color: #f59e0b;
  font-weight: 850;
}

.hot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.hot-card {
  display: flex;
  gap: 1rem;
  border-radius: 1rem;
  padding: 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hot-card:hover {
  transform: translateY(-0.25rem);
  background: rgba(255, 255, 255, 0.2);
}

.hot-card img {
  width: 6rem;
  height: 6rem;
  flex: none;
  border-radius: 0.75rem;
  object-fit: cover;
}

.hot-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0.4rem;
  font-weight: 850;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hot-card p {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  display: block;
  border-radius: 1rem;
  padding: 1.35rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--site-blue), var(--site-cyan));
  box-shadow: var(--site-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:nth-child(3n + 2) {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.category-card:nth-child(3n + 3) {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.category-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: var(--site-shadow-lg);
}

.category-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.category-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.dual-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.list-stack {
  display: grid;
  gap: 1rem;
}

.list-card,
.related-card {
  display: flex;
  gap: 1rem;
  border-radius: 0.9rem;
  padding: 1rem;
  color: inherit;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-card:hover,
.related-card:hover {
  transform: translateY(-0.2rem);
  box-shadow: var(--site-shadow);
}

.list-card img,
.related-card img {
  width: 7rem;
  height: 4.6rem;
  flex: none;
  border-radius: 0.55rem;
  object-fit: cover;
}

.list-card h3,
.related-card h4 {
  display: -webkit-box;
  overflow: hidden;
  color: #111827;
  font-weight: 850;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.list-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 0.35rem;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-hero {
  color: #ffffff;
  background: linear-gradient(115deg, #2563eb, #06b6d4);
  padding: 3rem 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-title {
  margin-bottom: 0.65rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.page-description {
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.75;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--site-border);
  border-radius: 1rem;
  padding: 1rem;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.filter-input {
  width: min(100%, 26rem);
  border-radius: 0.8rem;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2.5rem;
}

.page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  border: 1px solid var(--site-border);
  border-radius: 0.7rem;
  padding: 0.58rem 0.75rem;
  color: #374151;
  background: #ffffff;
  font-weight: 750;
}

.page-number:hover,
.page-number.is-current {
  border-color: var(--site-blue);
  color: #ffffff;
  background: var(--site-blue);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 2rem;
  padding: 2rem 0 4rem;
}

.detail-main,
.detail-side,
.info-panel {
  overflow: hidden;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: var(--site-shadow);
}

.detail-content {
  padding: 1.5rem;
}

.detail-title {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.video-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-player video,
.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-player video {
  background: #000000;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.72));
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.video-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.play-button {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.95);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}

.play-button span {
  display: block;
  margin-left: 0.25rem;
  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1.55rem solid #ffffff;
}

.video-status {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  text-align: center;
}

.detail-section {
  border-top: 1px solid var(--site-border);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.detail-section h2,
.info-panel h2,
.detail-side h3 {
  margin-bottom: 0.85rem;
  color: #111827;
  font-size: 1.25rem;
  font-weight: 900;
}

.detail-section p {
  color: #374151;
  line-height: 1.9;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag {
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: 0.83rem;
  font-weight: 760;
}

.detail-side {
  padding: 1.2rem;
  align-self: start;
  position: sticky;
  top: 5.5rem;
}

.related-list {
  display: grid;
  gap: 0.9rem;
}

.info-panel {
  padding: 1.5rem;
}

.search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 14rem 14rem;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.search-box input,
.search-box select {
  border-radius: 0.8rem;
}

.result-list {
  display: grid;
  gap: 1rem;
}

.result-card {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid var(--site-border);
  border-radius: 1rem;
  padding: 1rem;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.result-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 0.75rem;
  object-fit: cover;
}

.result-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
}

.result-card p {
  margin-top: 0.5rem;
  color: #4b5563;
  line-height: 1.75;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.footer-title {
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-text,
.footer-links a {
  color: #9ca3af;
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a:hover {
  color: #60a5fa;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 1.2rem 0 2rem;
  color: #6b7280;
  font-size: 0.86rem;
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  display: none;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  color: #ffffff;
  background: var(--site-blue);
  box-shadow: var(--site-shadow);
}

.back-to-top.is-visible {
  display: inline-flex;
}

.empty-state {
  border: 1px dashed #cbd5e1;
  border-radius: 1rem;
  padding: 2rem;
  color: #64748b;
  background: #ffffff;
  text-align: center;
}

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

  .hot-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-layout {
    gap: 2rem;
    min-height: auto;
    padding: 3.4rem 0;
  }

  .hero-panel {
    min-height: 24rem;
  }

  .grid-cards,
  .grid-cards.compact,
  .hot-grid,
  .category-grid,
  .dual-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-container {
    width: min(100% - 1rem, 1280px);
  }

  .logo-link span:last-child {
    display: none;
  }

  .hero-title {
    font-size: 2.55rem;
  }

  .grid-cards,
  .grid-cards.compact,
  .hot-grid,
  .category-grid,
  .dual-layout {
    grid-template-columns: 1fr;
  }

  .hot-card,
  .list-card,
  .related-card,
  .result-card {
    grid-template-columns: 1fr;
  }

  .result-card {
    display: block;
  }

  .result-card img {
    width: 100%;
    max-height: 22rem;
  }
}
