:root {
  --page-bg: #f6f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --pink: #db2777;
  --amber: #f59e0b;
  --blue: #2563eb;
  --green: #16a34a;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(135deg, #f9fafb 0%, #eef2f7 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 9px 14px;
  border-radius: 999px;
  color: #475569;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
  background: #fee2e2;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #111827;
  border-radius: 20px;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.55) 46%, rgba(0, 0, 0, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 0 78px;
  color: #ffffff;
  max-width: min(1180px, calc(100% - 32px));
}

.hero-tags,
.tag-list,
.meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.hero-tags span {
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

.hero-tags span:first-child {
  background: var(--red);
}

.hero h1 {
  margin: 18px 0 14px;
  max-width: 760px;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
}

.hero-line {
  max-width: 760px;
  margin: 0 0 10px;
  font-size: clamp(18px, 2vw, 22px);
  color: #e5e7eb;
}

.hero-summary {
  max-width: 720px;
  margin: 0 0 28px;
  color: #cbd5e1;
  line-height: 1.8;
}

.hero-actions,
.section-heading,
.footer-inner,
.search-panel,
.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--pink));
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.28);
}

.primary-button:hover,
.movie-card:hover,
.category-tile:hover,
.category-panel:hover,
.ranking-card:hover {
  transform: translateY(-3px);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: 38px;
  line-height: 0;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.32);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 6;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dot.active {
  width: 34px;
  background: #ffffff;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-top {
  padding-top: 34px;
  padding-bottom: 62px;
}

.search-panel,
.filter-panel {
  width: min(1180px, calc(100% - 32px));
  margin: -38px auto 48px;
  position: relative;
  z-index: 8;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.search-panel h2,
.search-panel p,
.filter-panel p {
  margin: 0;
}

.search-panel h2 {
  font-size: 24px;
}

.search-panel p,
.section-heading p,
.page-hero-card p,
.category-panel-body em,
.footer-inner p {
  color: var(--muted);
  line-height: 1.7;
}

.search-panel label,
.filter-panel label {
  display: grid;
  gap: 8px;
  min-width: min(380px, 100%);
  color: #475569;
  font-size: 14px;
  font-weight: 700;
}

.movie-search-input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  outline: none;
  background: #f8fafc;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.movie-search-input:focus {
  border-color: #fca5a5;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.15);
}

.content-section {
  margin: 0 0 64px;
}

.content-section.white-card,
.content-section.warm-section,
.content-section.fresh-section,
.ranking-section {
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.white-card {
  background: #ffffff;
}

.warm-section {
  background: linear-gradient(135deg, #fff7ed 0%, #fef2f2 100%);
}

.fresh-section {
  background: linear-gradient(135deg, #ecfdf5 0%, #eff6ff 100%);
}

.ranking-section {
  background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 100%);
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
}

.section-more {
  color: var(--red);
  background: #fee2e2;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

.movie-grid-medium {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.movie-grid-small {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.movie-card {
  display: block;
  min-width: 0;
  transition: transform 220ms ease;
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #e5e7eb;
  box-shadow: var(--shadow-soft);
}

.movie-card-medium .poster-wrap {
  aspect-ratio: 16 / 9;
}

.movie-card-small .poster-wrap {
  aspect-ratio: 4 / 3;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.movie-card:hover img,
.side-rec:hover img,
.rank-row:hover img,
.ranking-card:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
  transition: opacity 250ms ease;
}

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

.play-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 250ms ease, transform 250ms ease;
}

.movie-card:hover .play-chip {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.year-badge,
.rank-badge,
.poster-meta {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.year-badge {
  right: 10px;
  top: 10px;
  padding: 5px 8px;
  background: rgba(220, 38, 38, 0.86);
}

.rank-badge {
  left: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--amber), #ef4444);
}

.poster-meta {
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  background: rgba(15, 23, 42, 0.65);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 250ms ease;
}

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

.card-body {
  display: block;
  padding: 11px 2px 0;
}

.card-body strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 46px;
  color: #111827;
  line-height: 1.42;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 180ms ease;
}

.movie-card:hover .card-body strong {
  color: var(--red);
}

.card-body span {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 8px;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 12px;
}

.category-grid,
.category-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-tile,
.category-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-tile:hover,
.category-panel:hover {
  box-shadow: var(--shadow);
}

.category-thumbs,
.category-panel-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.category-thumbs img,
.category-panel-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  background: #e5e7eb;
}

.category-panel-images {
  grid-template-columns: repeat(4, 1fr);
}

.category-tile strong,
.category-panel strong {
  font-size: 19px;
}

.category-tile span:last-child,
.category-panel em {
  color: var(--muted);
  line-height: 1.65;
  font-style: normal;
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 34px 84px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, background 180ms ease;
}

.rank-row span:first-child {
  display: inline-flex;
  justify-content: center;
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.rank-row img {
  width: 84px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 300ms ease;
}

.rank-row strong,
.rank-row em {
  display: block;
}

.rank-row em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.page-hero-card {
  margin-bottom: 30px;
  padding: 42px;
  border-radius: 28px;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 34%), linear-gradient(135deg, #dc2626, #db2777 58%, #7c3aed);
  box-shadow: var(--shadow);
}

.page-hero-card.compact-hero {
  padding: 34px;
}

.ranking-hero {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 34%), linear-gradient(135deg, #f97316, #dc2626 56%, #111827);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.page-hero-card h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.055em;
}

.page-hero-card p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #64748b;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--red);
}

.filter-panel {
  margin: 0 0 34px;
  width: 100%;
  align-items: flex-end;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #475569;
  background: #f1f5f9;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #ffffff;
  background: var(--red);
}

.empty-state {
  display: none;
  padding: 42px;
  text-align: center;
  color: var(--muted);
}

.empty-state.visible {
  display: block;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
}

.detail-main {
  min-width: 0;
}

.player-card,
.movie-info-card,
.sidebar-card {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.player-card {
  overflow: hidden;
  margin-bottom: 24px;
  background: #000000;
}

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

.player video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #111827;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
  cursor: pointer;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.player-overlay.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.player-start {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  font-size: 30px;
}

.player-status {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 4;
  color: #ffffff;
  font-weight: 700;
}

.movie-info-card {
  padding: 28px;
  margin-bottom: 34px;
}

.movie-info-card h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.meta-line span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.tag-list {
  margin: 18px 0;
}

.tag-list span:first-child {
  color: #991b1b;
  background: #fee2e2;
}

.one-line {
  margin: 0 0 24px;
  padding: 18px;
  color: #374151;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.article-block,
.review-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
}

.article-block h2,
.review-block h2,
.sidebar-card h2 {
  margin: 0 0 14px;
  font-size: 23px;
}

.article-block p,
.review-block p {
  margin: 0;
  color: #374151;
  line-height: 1.95;
}

.review-block {
  padding: 24px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.detail-sidebar {
  min-width: 0;
}

.sidebar-card {
  padding: 20px;
  margin-bottom: 20px;
  position: sticky;
  top: 92px;
}

.side-list {
  display: grid;
  gap: 14px;
}

.side-rec {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  align-items: center;
}

.side-rec img {
  width: 118px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  background: #e5e7eb;
  transition: transform 300ms ease;
}

.side-rec strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111827;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.side-rec em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.category-link-card {
  display: grid;
  gap: 7px;
  padding: 16px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--pink));
}

.category-link-card span {
  color: rgba(255, 255, 255, 0.82);
}

.ranking-page-list {
  display: grid;
  gap: 14px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 54px 170px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ranking-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--red));
  font-weight: 900;
}

.ranking-card img {
  width: 170px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  background: #e5e7eb;
  transition: transform 300ms ease;
}

.ranking-card strong,
.ranking-card em,
.ranking-card small {
  display: block;
}

.ranking-card strong {
  font-size: 20px;
}

.ranking-card em {
  margin: 6px 0;
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}

.ranking-card small {
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  margin-top: 30px;
  padding: 34px 0;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-inner p {
  max-width: 680px;
  margin: 9px 0 0;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: #e2e8f0;
}

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

.hidden-by-filter {
  display: none !important;
}

@media (max-width: 1024px) {
  .movie-grid-medium,
  .category-grid,
  .category-panel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .movie-grid-small {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .sidebar-card {
    position: static;
  }
}

@media (max-width: 780px) {
  .header-inner {
    height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link {
    border-radius: 12px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-bottom: 84px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-actions,
  .search-panel,
  .filter-panel,
  .section-heading,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .search-panel {
    margin-top: -28px;
  }

  .movie-grid-medium,
  .movie-grid-small,
  .category-grid,
  .category-panel-grid,
  .rank-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-section.white-card,
  .content-section.warm-section,
  .content-section.fresh-section,
  .ranking-section,
  .page-hero-card,
  .movie-info-card {
    padding: 20px;
  }

  .ranking-card {
    grid-template-columns: 42px 96px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .ranking-card img {
    width: 96px;
  }

  .ranking-card small {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-logo {
    font-size: 18px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 520px;
  }

  .movie-grid-medium,
  .movie-grid-small,
  .category-grid,
  .category-panel-grid,
  .rank-list {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 30px 72px 1fr;
  }

  .rank-row img {
    width: 72px;
  }

  .side-rec {
    grid-template-columns: 92px 1fr;
  }

  .side-rec img {
    width: 92px;
  }
}
