:root {
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #f97316;
  --ink: #111827;
  --muted: #6b7280;
  --line: #fde68a;
  --soft: #fffbeb;
  --panel: #ffffff;
  --shadow: 0 18px 55px rgba(120, 53, 15, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 42%, #fff7ed 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96));
  border-bottom: 1px solid rgba(251, 191, 36, 0.42);
  box-shadow: 0 10px 32px rgba(146, 64, 14, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark,
.footer-logo span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.35);
  font-size: 15px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.16;
}

.brand-text strong {
  font-size: 21px;
  color: #1f2937;
  letter-spacing: 0.04em;
}

.brand-text em {
  margin-top: 3px;
  color: #6b7280;
  font-style: normal;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-link,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: #374151;
  font-weight: 700;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-current,
.nav-dropdown:hover > button {
  color: var(--amber-dark);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  width: 190px;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #4b5563;
}

.dropdown-panel a:hover {
  color: var(--amber-dark);
  background: #fffbeb;
}

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

.header-search input,
.mobile-panel input,
.big-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid #fcd34d;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #1f2937;
  outline: none;
  padding: 11px 100px 11px 16px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input:focus,
.mobile-panel input:focus,
.big-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.header-search button,
.mobile-panel form button,
.big-search button,
.filter-bar button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  color: #92400e;
  background: #fffbeb;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(251, 191, 36, 0.3);
  background: #fff;
  padding: 14px 16px 18px;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel form {
  position: relative;
  margin-bottom: 12px;
}

.mobile-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mobile-links a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #374151;
  background: #fffbeb;
}

.hero {
  position: relative;
  height: 590px;
  overflow: hidden;
  background: #111827;
}

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

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

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

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.56) 45%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(680px, calc(100% - 32px));
  margin-left: max(calc((100vw - 1180px) / 2), 16px);
  color: #fff;
}

.hero-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags a,
.tag-cloud span,
.card-badge,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(245, 158, 11, 0.96);
  font-weight: 700;
}

.hero-tags a {
  padding: 6px 12px;
  font-size: 14px;
}

.hero h1 {
  margin: 20px 0 14px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-one-line {
  margin: 0 0 10px;
  font-size: clamp(18px, 2vw, 24px);
  color: #f3f4f6;
}

.hero-summary {
  max-width: 620px;
  margin: 0 0 28px;
  color: #d1d5db;
  font-size: 16px;
}

.hero-actions,
.category-pills,
.quick-cats-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.ghost-btn,
.category-pills a,
.quick-cats a,
.section-more,
.category-panel-head a,
.side-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.35);
}

.ghost-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.quick-cats a:hover,
.category-pills a:hover,
.section-more:hover,
.category-panel-head a:hover,
.side-links a:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: 34px;
  line-height: 1;
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-cats {
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.66);
  border-bottom: 1px solid rgba(251, 191, 36, 0.22);
}

.quick-cats a,
.category-pills a {
  color: #92400e;
  background: #fff;
  border: 1px solid #fde68a;
  box-shadow: 0 8px 18px rgba(146, 64, 14, 0.06);
}

.content-section {
  padding: 66px 0;
}

.warm-section {
  background: linear-gradient(90deg, #fef3c7, #ffedd5);
}

.pale-section {
  background: linear-gradient(180deg, #f9fafb, #fff);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-title span,
.sub-hero span,
.category-panel-head span {
  color: var(--amber-dark);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.section-title h2,
.category-panel-head h2,
.article-block h2,
.side-card h2,
.rank-info h2,
.sub-hero h1,
.detail-head h1 {
  margin: 5px 0 0;
  color: #111827;
  line-height: 1.18;
}

.section-title h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.section-more,
.category-panel-head a,
.side-links a {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 300px);
  gap: 20px;
  overflow-x: auto;
  padding: 5px 0 20px;
  scrollbar-width: thin;
}

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

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.movie-card {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(146, 64, 14, 0.18);
}

.card-media {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
  background: #111827;
}

.movie-card-large .card-media {
  height: 330px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .card-media img {
  transform: scale(1.08);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.movie-card:hover .card-media::after {
  opacity: 1;
}

.card-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #fff;
  background: rgba(245, 158, 11, 0.96);
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  transition: all 0.22s ease;
}

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

.card-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 5px 10px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #b45309;
  backdrop-filter: blur(6px);
}

.card-year {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  font-size: 12px;
}

.card-body {
  padding: 17px;
}

.card-body h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body h3 a:hover {
  color: var(--amber-dark);
}

.card-body p {
  margin: 0 0 13px;
  color: #4b5563;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #6b7280;
  font-size: 12px;
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.movie-card-horizontal .card-media {
  height: 144px;
}

.category-stack {
  display: grid;
  gap: 34px;
}

.category-panel {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 36px rgba(146, 64, 14, 0.08);
}

.category-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.category-panel-head h2 {
  font-size: 30px;
}

.category-panel-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.sub-hero {
  padding: 88px 0 74px;
  background: radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.42), transparent 32%), linear-gradient(135deg, #fff7ed, #fffbeb 45%, #fff);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.sub-hero h1 {
  max-width: 840px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.sub-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #4b5563;
  font-size: 18px;
}

.big-search {
  position: relative;
  width: min(620px, 100%);
  margin-top: 28px;
}

.big-search input {
  min-height: 56px;
  padding-right: 122px;
  box-shadow: 0 16px 40px rgba(146, 64, 14, 0.12);
}

.filter-bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 180px 180px 110px;
  gap: 12px;
  margin-bottom: 26px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(146, 64, 14, 0.08);
}

.filter-bar input,
.filter-bar select {
  position: relative;
  padding: 11px 14px;
}

.filter-bar button {
  position: static;
  min-height: 46px;
}

.empty-state {
  display: none;
  padding: 36px;
  text-align: center;
  color: #92400e;
  border-radius: 22px;
  background: #fffbeb;
}

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

.rank-list {
  display: grid;
  gap: 16px;
}

.rank-card {
  display: grid;
  grid-template-columns: 74px 126px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.07);
}

.rank-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-size: 24px;
  font-weight: 900;
}

.rank-cover {
  height: 86px;
  border-radius: 15px;
  overflow: hidden;
  background: #111827;
}

.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-info h2 {
  font-size: 21px;
}

.rank-info h2 a:hover {
  color: var(--amber-dark);
}

.rank-info p {
  margin: 8px 0;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-info div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rank-info span {
  border-radius: 999px;
  padding: 4px 10px;
  color: #92400e;
  background: #fffbeb;
  font-size: 12px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.05);
  opacity: 0.48;
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58));
}

.detail-head {
  position: relative;
  padding: 44px 0 62px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #fbbf24;
}

.detail-title-row {
  max-width: 820px;
}

.detail-kicker {
  padding: 6px 12px;
  font-size: 13px;
}

.detail-head h1 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.05em;
}

.detail-head p {
  margin: 14px 0 0;
  color: #e5e7eb;
  font-size: 18px;
}

.detail-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  padding: 34px 0 72px;
}

.player-card,
.article-block,
.side-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
}

.player-card {
  overflow: hidden;
  background: #000;
}

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

.player video,
.player-poster,
.player-poster img {
  width: 100%;
  height: 100%;
}

.player video {
  display: block;
  object-fit: contain;
  background: #000;
}

.player-poster {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: #000;
}

.player-poster img {
  object-fit: cover;
  opacity: 0.72;
}

.player-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.64));
}

.player-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(245, 158, 11, 0.96);
  transform: translate(-50%, -50%);
  font-size: 28px;
  box-shadow: 0 12px 34px rgba(245, 158, 11, 0.38);
}

.player-button {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 3;
  transform: translateX(-50%);
  border: 0;
  border-radius: 999px;
  padding: 12px 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.36);
}

.player.is-active .player-poster,
.player.is-active .player-button {
  display: none;
}

.article-block {
  margin-top: 24px;
  padding: 28px;
}

.article-block h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.article-block p {
  margin: 0;
  color: #374151;
  font-size: 17px;
}

.detail-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.detail-cover {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.16);
}

.side-card {
  padding: 22px;
}

.side-card h2 {
  font-size: 21px;
  margin-bottom: 14px;
}

.side-card dl {
  margin: 0;
}

.side-card dl div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #f3f4f6;
}

.side-card dt {
  color: #6b7280;
}

.side-card dd {
  margin: 0;
  color: #111827;
  font-weight: 700;
}

.tag-cloud {
  margin-top: 18px;
}

.tag-cloud span {
  padding: 5px 10px;
  color: #92400e;
  background: #fffbeb;
  font-size: 12px;
}

.side-links {
  display: grid;
  gap: 10px;
}

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

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 34px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 22px;
}

.footer-brand p {
  max-width: 520px;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-content: start;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  text-align: center;
  color: #6b7280;
}

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

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    height: 520px;
  }

  .card-grid.three,
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-side {
    grid-template-columns: minmax(180px, 280px) 1fr;
  }

  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

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

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text em {
    display: none;
  }

  .hero {
    height: 560px;
  }

  .hero-copy {
    margin: 0 16px;
  }

  .hero-summary {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-arrow {
    display: none;
  }

  .content-section {
    padding: 46px 0;
  }

  .section-title,
  .category-panel-head {
    align-items: start;
    flex-direction: column;
  }

  .card-grid.three,
  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal,
  .rank-card {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal .card-media,
  .rank-cover {
    height: 210px;
  }

  .rank-number {
    width: 44px;
    height: 44px;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

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

  .article-block {
    padding: 22px;
  }

  .player-poster span {
    width: 66px;
    height: 66px;
  }
}
