/* Blog details hero section (ported from Next.js) */
.blog-details-hero-section .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(100%, 70vw, 1306px);
  gap: clamp(28px, 3vw + 8px, 64px);
  max-width: 1306px;
  margin: 0 auto;
}

.blog-details-hero-section .heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
  font-family: 'P22 Mackinac Pro';
  font-weight: 500;
  max-width: 750px;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -0.04em;
  line-height: clamp(95%, -0.5vw + 100%, 100%);
}

@media (max-width: 1024px) {
  .blog-details-hero-section .heading {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .blog-details-hero-section .heading {
    max-width: 100%;
  }
}

.blog-details-hero-section .subheading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-details-hero-section .dateTime {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-family: 'Avenir Next';
  color: #6d717b;
}

.blog-details-hero-section .date {
  color: #666;
}

.blog-details-hero-section .separator {
  color: #f37f54;
  font-weight: bold;
}

.blog-details-hero-section .time {
  color: #666;
}

.blog-details-hero-section .videoContainer {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

.blog-details-hero-section .videoWrapper {
  position: relative;
  width: 100%;
  max-width: 1880px;
  aspect-ratio: 16 / 9;
  border-radius: 64px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .blog-details-hero-section .videoContainer {
    margin-top: 48px;
  }

  .blog-details-hero-section .videoWrapper {
    border-radius: 32px;
  }
}

@media (max-width: 480px) {
  .blog-details-hero-section .videoContainer {
    margin-top: 32px;
  }

  .blog-details-hero-section .videoWrapper {
    border-radius: 24px;
  }
}

.blog-details-hero-section .videoImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.blog-details-hero-section .categoriesContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 1024px) {
  .blog-details-hero-section .categoriesContainer {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .blog-details-hero-section .categoriesContainer {
    margin-top: 16px;
    gap: 8px;
  }
}
