body.pr-page {
  background: #fff;
  color: var(--text-black);
}

.pr-blog-hero {
  position: relative;
  min-height: 520px;
  padding: var(--header-height) var(--side-padding) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.38), rgba(8, 10, 12, 0.56)),
    url('https://cdn.mcbots.org/page-assets/pr-video/pr-video-hero-generated.webp') center / cover;
  border-bottom: 1px solid rgba(29, 29, 31, 0.1);
}

.pr-blog-hero-inner {
  position: relative;
  width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.pr-blog-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 48px;
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: 0;
  word-break: keep-all;
}

.pr-blog-hero p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.pr-shell {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 var(--side-padding) 64px;
}

.pr-section-bar {
  display: flex;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 64px 0 40px;
  align-items: center;
  justify-content: space-between;
}

.pr-section-bar h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 650;
}

.video-magazine-grid {
  display: grid;
  width: min(1440px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(29, 29, 31, 0.1);
  border-left: 1px solid rgba(29, 29, 31, 0.1);
}

.video-mag-card {
  display: grid;
  min-height: 560px;
  padding: 28px 28px 34px;
  align-content: start;
  color: inherit;
  text-decoration: none;
  border-right: 1px solid rgba(29, 29, 31, 0.1);
  border-bottom: 1px solid rgba(29, 29, 31, 0.1);
  background: #fff;
}

.video-mag-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 28px;
  overflow: hidden;
  background: #f5f5f7;
}

.video-mag-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.video-mag-card:hover img {
  transform: scale(1.04);
}

.video-play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.video-play-badge::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--main-color);
}

.video-mag-info {
  display: grid;
  gap: 18px;
}

.video-mag-title {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.13;
  font-weight: 520;
  letter-spacing: 0;
  word-break: keep-all;
}

.video-mag-info time {
  margin: 0;
  color: #67727e;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.video-mag-read {
  display: inline-flex;
  margin-top: 14px;
  align-items: center;
  gap: 10px;
  color: #1d1d1f;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 650;
}

.video-mag-read span {
  position: relative;
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid #1d1d1f;
  border-radius: 50%;
  color: transparent;
  background: #1d1d1f;
  font-size: 0;
  line-height: 1;
}

.video-mag-read span::before,
.video-mag-read span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.video-mag-read span::after {
  width: 2px;
  height: 12px;
}

.video-status {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
  color: #6e6e73;
  border-top: 1px solid rgba(29, 29, 31, 0.1);
  border-bottom: 1px solid rgba(29, 29, 31, 0.1);
}

.video-status strong {
  display: block;
  margin-bottom: 10px;
  color: #1d1d1f;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 650;
}

.video-status p {
  margin: 0;
  color: #67727e;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .pr-blog-hero {
    min-height: 420px;
  }

  .video-magazine-grid {
    grid-template-columns: 1fr;
  }

  .video-mag-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .pr-blog-hero {
    min-height: 360px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pr-blog-hero h1 {
    font-size: 40px;
  }

  .pr-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pr-section-bar {
    padding: 44px 0 36px;
  }

  .video-mag-card {
    padding: 22px 18px 28px;
  }
}
