@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@font-face {
  font-family: "Avantgarde";
  src: url("src/fonts/AVGARDD/AVGARDN_2.TTF") format("truetype");
}

@font-face {
  font-family: "Avantgarde Demi";
  src: url("src/fonts/AVGARDD/AVGARDD_2.TTF") format("truetype");
}

@font-face {
  font-family: "Adobe Garamound Italic";
  src: url("src/fonts/AdobeGaramond/AGaramondPro-Italic.otf") format("truetype");
}

@font-face {
  font-family: "Adobe Garamound";
  src: url("src/fonts/AdobeGaramond/AGaramondPro-Regular.otf")
    format("truetype");
}

:root {
  --font-avantgarde: "Avantgarde", sans-serif;
  --font-avantgarde-demi: "Avantgarde Demi", sans-serif;
  --font-garamond: "Adobe Garamound", serif;
  --font-garamond-italic: "Adobe Garamound Italic", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: auto;
  pointer-events: auto;
}

html {
  overflow: hidden;
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  position: fixed;
  overscroll-behavior: none;
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeSpeed;
}

body {
  font-family: "Arial", sans-serif;
  overflow: hidden;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  overscroll-behavior: none;
}

/* Container */
.scroll-container {
  position: fixed;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  max-width: 100vw;
  top: 0;
  left: 0;
  overflow: hidden;
}

/* Header */
.header {
  position: absolute;
  top: 20px;
  right: 17px;
  z-index: 100;
}

@media (max-width: 768px) {
  .header {
    top: 15px;
    right: 15px;
  }
}

.header__menu-btn {
  cursor: pointer;
  width: 45px;
  height: 44px;
  transition: fill 0.4s ease;
}

@media (max-width: 768px) {
  .header__menu-btn {
    width: 35px;
    height: 34px;
  }

  .header__menu-btn svg {
    width: 100%;
    height: 100%;
  }
}

/* Navigation */
.nav {
  height: 100vh;
  width: 100%;
  max-width: 100vw;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000000;
  overflow: hidden;
  opacity: 0;
}

.nav__container {
  display: flex;
  flex-direction: row;
  position: relative;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
}

.nav__container:active {
  cursor: grabbing;
}

.nav__container::-webkit-scrollbar {
  display: none;
}

.nav__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mobile_nav_container {
  display: none;
  flex-direction: column;
  gap: 24px;
  position: relative;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  background-image: url("./src/images/vouge-mediakit-mobile-nav-bg.png");
  padding: 24px 24px 64px 24px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}

.mobile_nav__header {
  display: flex;
}

.mob--nav__section {
  border-bottom: 1px solid;
  color: white;
}

.mobile-nav__text {
  display: flex;
  flex-direction: row;
  gap: 26px;
  padding-bottom: 16px;
  align-items: center;
}

.mobile-nav__text p:first-child {
  font-family: "Adobe Garamound Italic", "Courier New", Courier, monospace;
  font-size: 40px;
  font-weight: 400;
}

.mobile-nav__text p:last-child {
  font-family: "Avantgarde", "Courier New", Courier, monospace;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

@media (max-width: 1024px) {
  .nav__container {
    visibility: hidden;
  }

  .mobile_nav_container {
    display: flex;
  }
}

.nav__close-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: fixed;
  pointer-events: auto;
  top: 20px;
  right: 17px;
  z-index: 100000;
}

@media (max-width: 768px) {
  .nav__close-btn {
    width: 60px;
    height: 60px;
    top: 15px;
    right: 15px;
  }

  .nav__close-btn svg {
    width: 24px;
    height: 24px;
  }
}

.nav__close-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav__close-btn:hover::before {
  opacity: 1;
}

.nav__close-btn:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.nav__close-btn:active {
  transform: scale(0.95);
}

.nav__close-btn--hidden {
  visibility: hidden;
}

.nav__section {
  min-width: 315px;
  width: 315px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .nav__section {
    min-width: 280px;
    width: 280px;
  }
}

@media (max-width: 480px) {
  .nav__section {
    min-width: 100vw;
    width: 100vw;
  }
}

.nav__text {
  text-align: center;
  color: #fff;
  height: fit-content;
  cursor: pointer;
  padding: 20px;
}

.nav__text p:first-child {
  font-family: "Adobe Garamound Italic", "Courier New", Courier, monospace;
  font-size: 100px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .nav__text p:first-child {
    font-size: 70px;
  }
}

@media (max-width: 480px) {
  .nav__text p:first-child {
    font-size: 60px;
  }
}

.nav__text p:last-child {
  padding-top: 16px;
  font-family: "Avantgarde", "Courier New", Courier, monospace;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  padding-left: 50px;
  padding-right: 50px;
}

@media (max-width: 768px) {
  .nav__text p:last-child {
    font-size: 18px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 480px) {
  .nav__text p:last-child {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.nav__section:nth-child(2) {
  background-image: url("./src/images/NAV_1.webp");
}
.nav__section:nth-child(3) {
  background-image: url("./src/images/NAV_2.webp");
}
.nav__section:nth-child(4) {
  background-image: url("./src/images/NAV_3.webp");
}
.nav__section:nth-child(5) {
  background-image: url("./src/images/NAV_4.webp");
}
.nav__section:nth-child(6) {
  background-image: url("./src/images/NAV_5.webp");
}
.nav__section:nth-child(7) {
  background-image: url("./src/images/NAV_1.webp");
}
.nav__section:nth-child(8) {
  background-image: url("./src/images/NAV_2.webp");
}
.nav__section:nth-child(9) {
  background-image: url("./src/images/NAV_3.webp");
}
.nav__section:nth-child(10) {
  background-image: url("./src/images/NAV_4.webp");
}
.nav__section:nth-child(11) {
  background-image: url("./src/images/NAV_5.webp");
}

/* Custom Cursor */
.nav__cursor {
  position: fixed;
  width: 109px;
  height: 109px;
  background: white;
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .nav__cursor {
    display: none;
  }
}

.nav:hover .nav__cursor {
  opacity: 0.7;
}

.nav__cursor-text {
  color: #000;
  font-weight: bold;
}

/* Sections */
.section {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  max-width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform-origin: center top;
  overflow: hidden;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000px;
  -webkit-transform: translate3d(0, 0, 0);
  perspective: 1000px;
  contain: layout style paint;
  isolation: isolate;
}

.section__content {
  text-align: end;
  color: white;
  z-index: 2;
  position: relative;
  padding: 20px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: auto;
}

/* Cover Page css */

.cover__container {
  height: 100vh;
  display: flex;
  position: relative;
  z-index: 2;
}

.cover__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  height: 100%;
  padding-bottom: 36px;
  padding-left: 60px;
}

.vogue-logo {
  width: 640px;
  height: auto;
}

@media (max-width: 768px) {
  .cover__content {
    padding-left: 24px;
    padding-bottom: 24px;
  }

  .vogue-logo {
    max-width: 360px;
  }

  .section__description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .vogue-logo {
    max-width: 150px;
  }

  .section__description {
    font-size: 13px;
  }
}

.section__title {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .section__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .section__title {
    font-size: 2rem;
  }
}

@media (max-width: 375px) {
  .section__title {
    font-size: 1.75rem;
  }
}

.cover-section__description {
  font-size: 1.5rem;
  color: white;
  padding-top: 8px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family:
    "Avantgarde",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

@media (max-width: 768px) {
  .cover-section__description {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .cover-section__description {
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
  .cover-section__description {
    font-size: 0.9rem;
  }
}

.section__description {
  font-size: 1.5rem;
  opacity: 0.9;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .section__description {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .section__description {
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
  .section__description {
    font-size: 0.9rem;
  }
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: auto;
  pointer-events: none;
}

.section--1 {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  z-index: 21;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style paint;
  content-visibility: auto;
}

.section--2 {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  height: 100vh;
  z-index: 20;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style paint;
  content-visibility: auto;
}

.section--3 {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  z-index: 19;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style paint;
  content-visibility: auto;
}

.section--33 {
  background: url("./src/images/about-hongkong-vogue/vouge-mediakit-about-awards-bg.webp");
  z-index: 18;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style paint;
  content-visibility: auto;
}

.section--4 {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  z-index: 17;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style paint;
  content-visibility: auto;
}

.section--44 {
  background: url("./src/images/print-content/editorial-content/vogue-mediakit-editorial-content-bg.svg");
  z-index: 16;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style paint;
  content-visibility: auto;
}

.section--5 {
  background: url("./src/images/digital-content/vogue-mediakit-digital-content-bg.webp");
  height: 100vh;
  z-index: 15;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style paint;
  content-visibility: auto;
}

.section--55 {
  background: url("./src/images/digital-content/about-vogue/vogue-mediakit-digital-content-about-bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 14;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style paint;
  content-visibility: auto;
}

.section--555 {
  background: url("./src/images/digital-content/about-vogue/vogue-mediakit-digital-content-about-bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 13;
}

.section--5555 {
  background: url("./src/images/digital-content/about-vogue/vogue-mediakit-digital-content-about-bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 12;
}

.section--6 {
  background: url("./src/images/advertising/vogue-mediakit-advertising-bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 11;
}

.section--66 {
  background: url("./src/images/advertising/vogue-mediakit-advertising-bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 10;
}

.section--7 {
  background: url("./src/images/vogue-living/vogue-mediakit-living-bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 9;
}

.section--77 {
  background: url("./src/images/vogue-living/vogue-mediakit-living-bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 8;
}

.section--8 {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  z-index: 7;
}

.section--88 {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  z-index: 6;
}

.section--888 {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  z-index: 5;
}

.section--9 {
  background: url("./src/images/digital-advertising/vogue-mediakit-digital-advertising-bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 4;
}

.section--99 {
  background: url("./src/images/digital-advertising/vogue-mediakit-digital-advertising-bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 3;
}

.section--999 {
  background: url("./src/images/digital-advertising/vogue-mediakit-digital-advertising-bg.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 2;
}

.section--10 {
  background: url("./src/images/contact-us/vogue-mediakit-contact-us-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Navigation Controls */
.nav-controls {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  padding: 110px 21px 29px;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.12) 80px,
    transparent 180px
  );
  pointer-events: none;
}

@media (max-width: 768px) {
  .nav-controls {
    padding: 90px 15px 20px;
    background: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.12) 60px,
      transparent 120px
    );
  }
}

@media (max-width: 480px) {
  .nav-controls {
    padding: 80px 10px 15px;
  }
}

.nav-controls__chevron {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  pointer-events: auto;
  flex-shrink: 0;
}

.nav-controls__chevron path {
  fill: white;
  transition: fill 0.4s ease;
}

@media (max-width: 768px) {
  .nav-controls__chevron {
    width: 35px;
    height: 35px;
  }

  .nav-controls__chevron svg {
    width: 18px;
    height: 18px;
  }
}

.nav-controls__chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-controls__chevron:hover::before {
  opacity: 1;
}

.nav-controls__chevron:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.nav-controls__chevron:active {
  transform: scale(0.95);
}

.nav-controls__chevron--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.nav-controls__chevron--hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.nav-controls__dots {
  display: flex;
  flex-direction: column;
  gap: 37px;
  transition: transform 0.5s ease;
  padding: 48px 214px 32px 20px;
  margin: -42px -200px -20px -20px;
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .nav-controls__dots {
    padding: 48px 160px 32px 15px;
    margin: -42px -150px -20px -15px;
    visibility: hidden;
  }
}

@media (max-width: 768px) {
  .nav-controls__dots {
    gap: 24px;
    padding: 32px 120px 24px 10px;
    margin: -32px -110px -15px -10px;
  }
}

.nav-controls__dots:hover {
  transform: translateX(-180px);
}

@media (max-width: 1024px) {
  .nav-controls__dots:hover {
    transform: translateX(-140px);
  }
}

@media (max-width: 768px) {
  .nav-controls__dots:hover {
    transform: translateX(-100px);
  }
}

.nav-controls__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

@media (max-width: 768px) {
  .nav-controls__dot {
    width: 10px;
    height: 10px;
  }
}

.nav-controls__dot::before {
  content: "";
  position: absolute;
  top: -15px;
  bottom: -15px;
  left: -20px;
  right: -200px;
  cursor: pointer;
}

.nav-controls__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.nav-controls__dot:hover .nav-controls__dot-line {
  width: 100%;
  background: white;
}

.nav-controls__dot:hover .nav-controls__dot-text {
  opacity: 1;
}

.nav-controls__dot--active {
  background: white;
}

.nav-controls__dot-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  pointer-events: none;
  width: 180px;
}

@media (max-width: 1024px) {
  .nav-controls__dot-label {
    width: 140px;
  }
}

@media (max-width: 768px) {
  .nav-controls__dot-label {
    width: 100px;
    left: 15px;
  }
}

.nav-controls__dot-line {
  width: 0;
  height: 1px;
  background: #424b5a;
  transition:
    width 0.4s ease,
    background 0.4s ease;
  flex-shrink: 0;
}

.nav-controls__dot-text {
  color: #424b5a;
  font-family: "Avantgarde", "Courier New", Courier, monospace;
  padding-right: 15px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.nav-controls__dot:hover .nav-controls__dot-text {
  color: white;
}

.nav-controls__dot--active .nav-controls__dot-line {
  background: white;
}

.nav-controls__dot--active .nav-controls__dot-text {
  color: white;
}

@media (max-width: 768px) {
  .nav-controls__dot-text {
    font-size: 10px;
    padding-right: 10px;
  }
}

.nav-controls__dots:hover .nav-controls__dot-text {
  opacity: 1;
}

/* Decorative elements */
.section__decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.section__decoration--1 {
  width: 300px;
  height: 300px;
  background: white;
  top: 10%;
  left: 10%;
}

@media (max-width: 768px) {
  .section__decoration--1 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .section__decoration--1 {
    width: 150px;
    height: 150px;
  }
}

.section__decoration--2 {
  width: 200px;
  height: 200px;
  background: white;
  bottom: 15%;
  right: 15%;
}

@media (max-width: 768px) {
  .section__decoration--2 {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .section__decoration--2 {
    width: 100px;
    height: 100px;
  }
}

/* ================================= */

/* about conde-nast css */

/* ==================================== */

.conde--nast-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  background-color: white;
  position: relative;
}

.conde-nast-top-logo {
  position: absolute;
  top: 23px;
  left: 60px;
}

.conde--nast-image-section {
  background-color: #2a2654;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("./src/images/vouge-mediakit-conde-nast-right-image.webp");
  background-position: top;
  background-size: cover;
}

.conde--nast-text-section {
  padding: 81px 70px 81px 89px;
  background-color: #ffffff;
  overflow-y: scroll;
  max-height: 100vh; /* Add this */
  height: 100%;
}

.conde--nast-text-section::-webkit-scrollbar {
  display: none;
}

.conde--nast-text-section h1 {
  font-size: 52px;
  font-weight: 400;
  font-family:
    "Avantgarde Demi",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.conde--nast-text-section .tagline {
  font-size: 24px;
  margin-top: 46px;
  font-weight: 500;
  font-family: "Adobe Garamound";
  font-weight: 400;
}

.conde--nast-text-section .description {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #777777;
  margin-bottom: 46px;
  margin-top: 12px;
  font-family: "Avantgarde";
  max-width: 650px;
  letter-spacing: 0.5px;
}

.magazines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.magazine-cover {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #ddd;
  overflow: hidden;
}

.magazine-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-section {
  margin-top: 46px;
}

.highlight-title {
  font-size: 24px;
  font-weight: 500;
  font-family: "Adobe Garamound";
  font-weight: 400;
  margin-bottom: 16px;
}

.highlight-description {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #777777;
  font-family: "Avantgarde";
  max-width: 650px;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .conde--nast-text-section {
    padding: 50px 60px;
  }

  .conde--nast-text-section h1 {
    font-size: 40px;
  }
}

@media (max-width: 968px) {
  .conde--nast-content-wrapper {
    grid-template-columns: 1fr;
  }

  .conde--nast-image-section {
    padding: 40px 20px;
    min-height: 300px;
  }

  .conde--nast-text-section {
    padding: 40px 30px;
  }

  .conde--nast-text-section h1 {
    font-size: 36px;
  }

  .magazines-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 640px) {
  .conde--nast-text-section {
    padding: 30px 20px;
  }

  .conde--nast-text-section h1 {
    font-size: 28px;
  }

  .conde--nast-text-section .tagline {
    font-size: 16px;
  }

  .magazines-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .description,
  .highlight-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .magazines-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-inline: auto;
  }
}

.header--dark .header__menu-btn path {
  fill: black;
}

.nav-controls--dark .nav-controls__chevron {
  border-color: rgba(0, 0, 0, 0.4);
}

.nav-controls--dark .nav-controls__chevron path {
  fill: black;
}

.nav-controls--dark .nav-controls__chevron:hover {
  border-color: rgba(0, 0, 0, 0.8);
}

.nav-controls--dark .nav-controls__dot {
  border-color: black;
}

.nav-controls--dark .nav-controls__dot--active {
  background: black;
}

.nav-controls--dark .nav-controls__dot:hover {
  background: rgba(0, 0, 0, 0.8);
}

.nav-controls--dark .nav-controls__dot-line {
  background: black;
}

.nav-controls--dark .nav-controls__dot-text {
  color: black;
}

.nav-controls--dark .nav-controls__dot-line {
  background: #424b5a;
}

.nav-controls--dark .nav-controls__dot-text {
  color: #424b5a;
}

.nav-controls--dark .nav-controls__dot:hover .nav-controls__dot-line {
  background: black;
}

.nav-controls--dark .nav-controls__dot:hover .nav-controls__dot-text {
  color: black;
}

.nav-controls--dark .nav-controls__dot--active .nav-controls__dot-line {
  background: black;
}

.nav-controls--dark .nav-controls__dot--active .nav-controls__dot-text {
  color: black;
}

.nav-controls--dark {
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.12) 80px,
    transparent 180px
  );
}

/* ========================= */

/* about honkong vogue page */

/* ============================ */

.vogue-about-page__container {
  min-height: 100vh;
  background-image: url("./src/images/vouge-mediakit-conde-about-us-bg.webp");
  background-size: cover;
  background-position: bottom;
}

.vogue-about-page__container h1 {
  padding-top: 25px;
  padding-bottom: 30px;
  padding-left: 60px;
  color: white;
  font-family: "Avantgarde Demi";
  letter-spacing: 0.5px;
  font-size: 52px;
}

.vogue-about-page__header {
  text-align: center;
  margin-bottom: 64px;
}

.vogue-about-page__header-title {
  font-size: 3rem;
  font-weight: 400;
  color: #262626;
}

.vogue-about-page__scroll-wrapper {
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
}

.vogue-about-page__scroll-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
  z-index: 10;
  pointer-events: none;
}

.vogue-about-page__scroll-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.2), transparent);
  z-index: 10;
  pointer-events: none;
}

.vogue-about-page__scroll-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.vogue-about-page__magazine-card {
  position: relative;
  width: 194px;
  height: 257px;
  flex-shrink: 0;
  margin: 0 12px;
  overflow: hidden;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.vogue-about-page__logo {
  padding-top: 23px;
  padding-left: 60px;
}

.vogue-about-page__card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vogue-about-page__card-bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vogue-about-page__card-content {
  text-align: center;
  color: white;
}

.vogue-about-page__vogue-title {
  font-size: 3.5rem;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 2px;
}

.vogue-about-page__card-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 8px;
}

@media (max-width: 1200px) {
  .vogue-about-page__container h1 {
    font-size: 44px;
    padding-left: 40px;
  }

  .vogue-about-page__logo {
    padding-left: 40px;
  }

  .vogue-about-page__magazine-card {
    width: 210px;
    height: 230px;
  }

  .vogue-about-page__vogue-title {
    font-size: 3rem;
  }
}

/* ---------- Tablets ---------- */
@media (max-width: 992px) {
  .vogue-about-page__container {
    background-position: center;
  }

  .vogue-about-page__container h1 {
    font-size: 36px;
    padding-left: 24px;
  }

  .vogue-about-page__logo {
    padding-left: 24px;
  }

  .vogue-about-page__header {
    margin-bottom: 40px;
  }

  .vogue-about-page__magazine-card {
    width: 190px;
    height: 210px;
  }

  .vogue-about-page__vogue-title {
    font-size: 2.5rem;
  }

  .vogue-about-page__card-subtitle {
    font-size: 1.2rem;
    letter-spacing: 6px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .vogue-about-page__container {
    padding-bottom: 40px;
  }

  .vogue-about-page__container h1 {
    font-size: 28px;
    padding-left: 16px;
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .vogue-about-page__logo {
    padding-left: 16px;
    padding-top: 16px;
  }

  .vogue-about-page__scroll-wrapper::before {
    width: 60px;
  }

  .vogue-about-page__scroll-row {
    gap: 8px;
  }

  .vogue-about-page__magazine-card {
    width: 160px;
    height: 180px;
    margin: 0 8px;
  }

  .vogue-about-page__vogue-title {
    font-size: 2rem;
  }

  .vogue-about-page__card-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}

/* ---------- Small phones ---------- */
@media (max-width: 420px) {
  .vogue-about-page__container h1 {
    font-size: 28px;
    padding-left: 16px;
    padding-top: 16px;
    padding-bottom: 30px;
  }

  .vogue-about-page__magazine-card {
    width: 120px;
    height: 200px;
  }

  .vogue-about-page__vogue-title {
    font-size: 4rem;
    padding-bottom: 24px;
  }

  .vogue-about-page__card-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }
}

/* ============================ */

/* Awards Page */

/* =============================== */

.vogue-awards-page__container {
  padding: 29px 109px 0px 60px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.vogue-awards-page__container h1 {
  font-family: "Avantgarde Demi";
  padding-top: 52px;
  font-size: 52px;
  color: white;
  padding-bottom: 52px;
}

.awards-scroll-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - 200px);
}

.vogue-awards-page__content {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
  overflow-x: auto;
  cursor: grab;
  user-select: none;
  scroll-behavior: smooth;
  height: 65vh;
  padding-bottom: 20px;
}

.vogue-awards-page__content::-webkit-scrollbar {
  display: none;
}

.vogue-awards-page__content {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.vogue-awards-page__content.active {
  cursor: grabbing;
}

.awards__part {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.awards__top {
  display: flex;
  justify-content: start;
  gap: 12px;
  color: white;
  font-family: "Avantgarde Demi";
  font-weight: 700;
}

.awards__bottom {
  display: flex;
  justify-items: flex-start;
  padding-left: 8px;
  gap: 20px;
  overflow: hidden;
  position: relative;
  height: 100%;
  max-height: calc(100vh - 200px);
}

.awards__bottom::-webkit-scrollbar {
  display: none;
}

.awards-verticle__lines {
  width: 1px;
  height: 100%;
  background-color: white;
  flex-shrink: 0;
}

.awards-right__part {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.awards-content p {
  padding-top: 12px;
  color: white;
  max-width: 119px;
  font-size: 12px;
  font-family: "Avantgarde Demi";
  font-weight: 700;
  line-height: 1rem;
}

.awards__title {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  max-width: 139px !important;
}

.awards__description {
  font-family: "Avantgarde" !important;
  font-weight: 400 !important;
  max-width: 139px !important;
  padding-top: 2px !important;
  letter-spacing: 1.2px;
}

.awards__cursor {
  position: fixed;
  width: 109px;
  height: 109px;
  background: white;
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.vogue-awards-page__content:hover .awards__cursor {
  opacity: 0.7;
}

.awards__cursor-text {
  color: #000;
  font-weight: bold;
  font-size: 14px;
}

/* Custom Scrollbar for Awards */
.awards__scrollbar-container {
  width: 100%;
  margin-top: 10px;
}

.awards__scrollbar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.awards__scrollbar-thumb {
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  left: 0;
}

.awards__scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.8);
}

.awards__scrollbar-thumb.active {
  background: rgba(255, 255, 255, 1);
}

/* ========== Tablet Screens (768px - 1024px) ========== */
@media (max-width: 1024px) {
  .vogue-awards-page__container {
    padding: 20px 60px 0px 40px;
  }

  /* Hide cursor on mobile */
  .awards__cursor {
    display: none;
  }

  /* Hide custom scrollbar on mobile */
  .awards__scrollbar-container {
    display: none;
  }

  /* Show native scrollbar on mobile */
  .vogue-awards-page__content::-webkit-scrollbar {
    display: block;
    height: 6px;
  }

  .vogue-awards-page__logo img {
    width: 100px;
    height: auto;
  }

  .vogue-awards-page__container h1 {
    padding-top: 40px;
    font-size: 42px;
    padding-bottom: 40px;
  }

  .vogue-awards-page__content {
    gap: 20px;
  }

  .awards__part {
    gap: 10px;
  }

  .awards__top {
    gap: 10px;
    font-size: 14px;
  }

  .awards__top img {
    width: 14px;
    height: 14px;
  }

  .awards__bottom {
    gap: 15px;
    padding-left: 6px;
    max-height: calc(100vh - 180px);
  }

  .awards-right__part {
    gap: 14px;
  }

  .awards-content p {
    padding-top: 10px;
    max-width: 110px;
    font-size: 11px;
    line-height: 0.95rem;
  }

  .awards__title {
    max-width: 120px !important;
    letter-spacing: 1px;
  }

  .awards__description {
    max-width: 120px !important;
    letter-spacing: 1px;
  }
}

/* ========== Small Laptops (768px - 992px) ========== */
@media (max-width: 992px) {
  .vogue-awards-page__container {
    padding: 16px 40px 0px 30px;
  }

  .vogue-awards-page__logo img {
    width: 90px;
    height: auto;
  }

  .vogue-awards-page__container h1 {
    padding-top: 32px;
    font-size: 36px;
    padding-bottom: 32px;
  }

  .vogue-awards-page__content {
    gap: 16px;
  }

  .awards__bottom {
    max-height: calc(100vh - 160px);
  }
}

/* ========== Mobile Devices (max-width: 768px) ========== */
@media (max-width: 768px) {
  .vogue-awards-page__container {
    padding: 16px 24px 0px 24px;
  }

  .vogue-awards-page__logo img {
    width: 80px;
    height: auto;
  }

  .vogue-awards-page__container h1 {
    padding-top: 24px;
    font-size: 28px;
    padding-bottom: 24px;
  }

  .vogue-awards-page__content {
    gap: 16px;
    padding-bottom: 16px;
  }

  .awards__part {
    gap: 8px;
    min-width: 140px;
  }

  .awards__top {
    gap: 8px;
    font-size: 12px;
  }

  .awards__top img {
    width: 12px;
    height: 12px;
  }

  .awards__bottom {
    gap: 12px;
    padding-left: 4px;
    max-height: calc(100vh - 140px);
  }

  .awards-right__part {
    gap: 12px;
  }

  .awards-content p {
    padding-top: 8px;
    max-width: 100px;
    font-size: 10px;
    line-height: 0.9rem;
  }

  .awards__title {
    max-width: 110px !important;
    letter-spacing: 0.8px;
  }

  .awards__description {
    max-width: 110px !important;
    letter-spacing: 0.8px;
  }
}

/* ========== Small Mobile (max-width: 480px) ========== */
@media (max-width: 480px) {
  .vogue-awards-page__container {
    padding: 12px 16px 0px 16px;
  }

  .vogue-awards-page__logo img {
    width: 70px;
    height: auto;
  }

  .vogue-awards-page__container h1 {
    padding-top: 20px;
    font-size: 24px;
    padding-bottom: 20px;
  }

  .vogue-awards-page__content {
    gap: 12px;
  }

  .awards__part {
    min-width: 120px;
  }

  .awards__top {
    font-size: 11px;
  }

  .awards__top img {
    width: 11px;
    height: 11px;
  }

  .awards__bottom {
    gap: 10px;
    max-height: calc(100vh - 120px);
  }

  .awards-right__part {
    gap: 10px;
  }

  .awards-content p {
    padding-top: 6px;
    max-width: 90px;
    font-size: 9px;
    line-height: 0.85rem;
  }

  .awards__title {
    max-width: 100px !important;
    letter-spacing: 0.6px;
  }

  .awards__description {
    max-width: 100px !important;
    letter-spacing: 0.6px;
  }
}

/* ================================== */

/* Print Media Editorial Content */

/* ==================================== */

.print-editorial-content__container {
  padding: 29px 60px 0px 60px;
  width: 100%;
  overflow: hidden;
}

.print-editorial-content__content_container {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  padding-top: 20px;
  gap: 20px;
  scroll-behavior: smooth;
}

.print-editorial-content__content_container::-webkit-scrollbar {
  display: none;
}

.print-editorial-content__content_container.active {
  cursor: grabbing;
}

.print-editorial-content__card {
  position: relative;
  height: 550px;
  width: 400px;
  flex-shrink: 0;
  user-select: none;
}

.side__brand_text {
  position: absolute;
  z-index: 1001;
  top: 0;
  color: white;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  top: 16px;
  left: -20px;
  font-family: "Adobe Garamound Italic", serif;
  font-size: 100px;
}

.below__brand_description {
  position: absolute;
  z-index: 1002;
  color: white;
  bottom: 0;
  font-family: "Avantgarde";
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5rem;
  padding: 20px;
}

.below__brand_description::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px; /* Adjust height as needed */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: -1;
}

.print-editorial-content__card img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1000;
  user-select: none;
  pointer-events: none;
}

/* Print Media Custom Cursor */
.print-edit__cursor {
  position: fixed;
  width: 109px;
  height: 109px;
  background: white;
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.print-editorial-content__content_container:hover .print-edit__cursor {
  opacity: 0.7;
}

.print-edit__cursor-text {
  color: #000;
  font-weight: bold;
}

.cta-button {
  display: flex;
  color: white;
  margin-top: 24px;
  justify-content: flex-end;
}

.print-media__cta_button {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 60px;
  cursor: pointer;

  .cta-text {
    font-family: "Avantgarde Demi";
    font-weight: 700;
    font-size: 24px;
  }
}

.cta-horizontal__line {
  width: 40px;
  height: 1px;
  background-color: white;
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .print-editorial-content__container {
    padding: 20px 20px 0px 20px;
  }

  .print-editorial-content__content_container {
    gap: 16px;
    padding-top: 57px;
  }

  .print-editorial-content__card {
    height: 400px;
    width: 280px;
  }

  .side__brand_text {
    font-size: 60px;
    left: -12px;
    top: 10px;
  }

  .below__brand_description {
    font-size: 13px;
    padding: 14px;
    line-height: 1.4rem;
  }

  .below__brand_description::before {
    height: 140px;
  }

  .print-edit__cursor {
    width: 70px;
    height: 70px;
  }

  .cta-button {
    margin-top: 20px;
  }

  .print-media__cta_button {
    padding-right: 20px;
    gap: 12px;
  }

  .print-media__cta_button .cta-text {
    font-size: 18px;
  }

  .cta-horizontal__line {
    width: 28px;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .print-editorial-content__container {
    padding: 16px 16px 0px 16px;
  }

  .print-editorial-content__card {
    height: 350px;
    width: 250px;
  }

  .side__brand_text {
    font-size: 50px;
    left: -10px;
    top: 8px;
  }

  .below__brand_description {
    font-size: 12px;
    padding: 12px;
    line-height: 1.3rem;
  }

  .below__brand_description::before {
    height: 120px;
  }

  .print-edit__cursor {
    width: 60px;
    height: 60px;
  }

  .print-media__cta_button {
    padding-right: 16px;
    gap: 10px;
  }

  .print-media__cta_button .cta-text {
    font-size: 16px;
  }

  .cta-horizontal__line {
    width: 24px;
  }
}

/* ====================== */
/* Shared Media Content CSS (Print & Digital) */
/* ========================= */

.vogue-media__container {
  padding: 29px 60px 0px 60px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.vogue-media__container h1 {
  font-family: "Avantgarde Demi";
  padding-top: 52px;
  font-size: 52px;
  color: white;
  padding-bottom: 0px;
}

/* Stats container for both print and digital */
.vogue-media__stats_container {
  color: white;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-right: 60px;
  align-items: flex-end;
}

.vogue-media__stats_container h2 {
  font-family: "Adobe Garamound Italic";
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding-top: 20px;
}

/* Print-specific stats adjustment */
.vogue-print-media__stats_container h2 {
  padding-top: 0;
}

/* Digital-specific stats adjustment */
.vogue-digital-media__stats_container h2 {
  padding-top: 30px;
}

.vogue-media__stats {
  display: flex;
  gap: 100px;
}

.media__stats_title {
  font-family: "Adobe Garamound Italic";
  font-size: 62px;
}

.media__stats_subtitle {
  font-family: "Avantgarde";
  font-weight: 400;
  margin-top: -6px;
  font-size: 16px;
}

/* Horizontal scrolling content */
.vogue-media__content {
  padding-top: 34px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.vogue-media__content::-webkit-scrollbar {
  display: none;
}

.vogue-media__content {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.vogue-media__content.active {
  cursor: grabbing;
}

.vogue-media-page_card {
  color: white;
  flex-shrink: 0;
}

.vogue-media-page_card img {
  height: 315px;
  width: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.vogue-media-page_card_description {
  padding-top: 16px;
}

.vogue-media-page_card_description p:first-child {
  font-size: 18px;
  font-family: "Avantgarde Demi";
  font-weight: 700;
  letter-spacing: 0.5px;
}

.vogue-media-page_card_description p:last-child {
  font-size: 16px;
  font-family: "Avantgarde";
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.vogue-media-page_card {
  pointer-events: none;
  user-select: none;
}

/* Shared Custom Cursor */
.media__cursor {
  position: fixed;
  width: 109px;
  height: 109px;
  background: white;
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* Shared Custom Cursor */
.digital_media__cursor {
  position: fixed;
  width: 109px;
  height: 109px;
  background: white;
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.print_media__cursor {
  position: fixed;
  width: 109px;
  height: 109px;
  background: white;
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.vogue-media__content:hover .media__cursor {
  opacity: 0.7;
}

.vogue-media__content:hover .digital_media__cursor {
  opacity: 0.7;
}

.vogue-media__content:hover .print_media__cursor {
  opacity: 0.7;
}

.media__cursor-text {
  color: #000;
  font-weight: bold;
}

/* Custom Horizontal Scrollbar (Digital only) */
.media__scrollbar-container {
  width: 100%;
}

.media__scrollbar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.media__scrollbar-thumb {
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  left: 0;
}

.media__scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.8);
}

.media__scrollbar-thumb.active {
  background: rgba(255, 255, 255, 1);
}

/* ========== Tablet (max-width: 1024px) ========== */
@media (max-width: 1024px) {
  .vogue-media__container {
    padding: 24px 40px 0px 40px;
  }

  .vogue-media__container h1 {
    padding-top: 40px;
    font-size: 44px;
  }

  .vogue-media__stats_container {
    padding-right: 40px;
  }

  .vogue-media__stats_container h2 {
    font-size: 32px;
  }

  .vogue-media__stats {
    gap: 60px;
  }

  .media__stats_title {
    font-size: 52px;
  }

  .media__stats_subtitle {
    font-size: 14px;
  }

  .vogue-media__content {
    padding-top: 24px;
    gap: 20px;
  }

  .vogue-media-page_card img {
    height: 280px;
  }

  .vogue-media-page_card_description p:first-child {
    font-size: 16px;
  }

  .vogue-media-page_card_description p:last-child {
    font-size: 14px;
  }

  .media__cursor {
    width: 90px;
    height: 90px;
  }
}

/* ========== Mobile (max-width: 768px) - Grid Layout ========== */
@media (max-width: 768px) {
  .vogue-media__container {
    padding: 16px 24px 0px 24px;
  }

  .vogue-media__container h1 {
    padding-top: 24px;
    padding-bottom: 16px;
    font-size: 32px;
  }

  .vogue-media__stats_container {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
    margin-bottom: 16px;
  }

  .vogue-media__stats_container h2 {
    font-size: 30px;
    padding-bottom: 16px;
  }

  .vogue-media__stats {
    gap: 40px;
  }

  .media__stats_title {
    font-size: 42px;
  }

  .media__stats_subtitle {
    font-size: 10px;
  }

  /* Hide custom scrollbar on mobile */
  .media__scrollbar-container {
    display: none;
  }

  /* Grid layout for mobile - 2 columns */
  .vogue-media__content {
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    cursor: default;
    max-height: calc(100vh - 240px);
    padding-right: 10px;
    padding-bottom: 20px;
  }

  /* Custom scrollbar for mobile */
  .vogue-media__content::-webkit-scrollbar {
    display: block;
    width: 6px;
  }

  .vogue-media__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }

  .vogue-media__content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .vogue-media__content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
  }

  .vogue-media__content::-webkit-scrollbar-thumb:active {
    background: rgba(255, 255, 255, 0.8);
  }

  /* Firefox scrollbar styling */
  .vogue-media__content {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.4) rgba(255, 255, 255, 0.05);
  }

  .vogue-media-page_card {
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .vogue-media-page_card img {
    height: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
  }

  .vogue-media-page_card_description {
    padding-top: 8px;
    width: 100%;
  }

  .vogue-media-page_card_description p:first-child {
    font-size: 13px;
  }

  .vogue-media-page_card_description p:last-child {
    font-size: 11px;
    margin-top: 2px;
  }

  /* Hide cursor on mobile */
  .media__cursor {
    display: none;
  }
}

/* ========== Small Mobile (max-width: 480px) ========== */
@media (max-width: 480px) {
  .vogue-media__container {
    padding: 23px 16px 0px 16px;
  }

  .vogue-media__container h1 {
    padding-top: 24px;
    padding-bottom: 16px;
    font-size: 32px;
  }

  .vogue-media__stats_container h2 {
    font-size: 30px;
    padding-bottom: 16px;
  }

  .vogue-media__stats {
    gap: 40px;
  }

  .media__stats_title {
    font-size: 42px;
  }

  .media__stats_subtitle {
    font-size: 10px;
  }

  .vogue-media__content {
    padding-top: 16px;
    gap: 12px;
    max-height: calc(100vh - 220px);
  }

  .vogue-media-page_card_description p:first-child {
    font-size: 12px;
  }

  .vogue-media-page_card_description p:last-child {
    font-size: 10px;
  }
}

/* ============================ */
/* Digital Media About Page */
/* ============================ */

.digital-media-about__container {
  padding-top: 27px;
  padding-left: 60px;
  padding-right: 60px;
}

.digital-media-about__content_container {
  display: flex;
  color: white;
  padding-top: 30px;
  justify-content: space-between;
  padding-right: 200px;
}

.content-left__side h1 {
  font-family: "Avantgarde Demi";
  font-size: 52px;
  font-weight: 700;
  padding-bottom: 32px;
}

.left__stats {
  display: flex;
  gap: 77px;
  padding-bottom: 32px;
}

.stats__1 p:first-child {
  font-family: "Avantgarde Demi";
  font-weight: 700;
  font-size: 42px;
}

.stats__2 p:first-child {
  font-family: "Avantgarde Demi";
  font-weight: 700;
  font-size: 42px;
}

.left__image img {
  height: 434px;
  width: auto;
  margin-left: -53px;
}

.content-right__side {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gender__description h2 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
}

.gender__percentage {
  display: flex;
  width: 100%;
  gap: 200px;
}

.men__percentage p:first-of-type {
  font-family: "Avantgarde Demi";
  font-weight: 700;
  font-size: 30px;
  padding-top: 10px;
}

.men__percentage p:last-child {
  font-family: "Avantgarde";
  font-weight: 400;
  font-size: 16px;
}

.women__percentage p:first-of-type {
  font-family: "Avantgarde Demi";
  font-weight: 700;
  font-size: 30px;
  padding-top: 10px;
}

.women__percentage p:last-child {
  font-family: "Avantgarde";
  font-weight: 400;
  font-size: 16px;
}

.age__description .title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
}

.age__description .chart {
  display: flex;
  align-items: flex-end;
  height: 220px;
  gap: 24px;
  margin-bottom: 25px;
}

.age__description .bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 115px;
}

.age__description .bar-container {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.age__description .bar {
  width: 100%;
  background: rgba(142, 115, 45, 1);
  border-radius: 2px 2px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.age__description .label {
  font-family: "Avantgarde Demi";
  font-weight: 400;
  font-size: 14px;
  padding-top: 6px;
}

.age__description .axis-line {
  width: 100%;
  height: 2px;
  background: #555;
  margin-top: 8px;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .digital-media-about__container {
    padding-top: 27px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .digital-media-about__content_container {
    flex-direction: column;
    padding-right: 0;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 100px);
  }

  .content-left__side h1 {
    font-size: 42px;
    padding-bottom: 28px;
    text-align: center;
  }

  .left__stats {
    gap: 16px;
    padding-bottom: 32px;
    justify-content: space-around;
  }

  .left__image {
    display: flex;
    justify-content: center;
  }

  .stats__1 p:first-child,
  .stats__2 p:first-child {
    font-size: 32px;
  }

  .stats__1 p:nth-child(2),
  .stats__2 p:nth-child(2) {
    font-size: 14px;
  }

  .left__image img {
    height: 300px;
    margin-left: 30px;
  }

  .content-right__side {
    padding-top: 16px;
    gap: 24px;
  }

  .gender__description h2 {
    font-size: 30px;
    margin-bottom: 12px;
    text-align: center;
  }

  .gender__percentage {
    gap: 125px;
    justify-content: center;
  }

  .men__percentage,
  .women__percentage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .men__percentage img,
  .women__percentage img {
    width: auto;
    height: 160px;
  }

  .men__percentage p:first-of-type,
  .women__percentage p:first-of-type {
    font-size: 18px;
    padding-top: 0;
  }

  .men__percentage p:last-child,
  .women__percentage p:last-child {
    font-size: 12px;
  }

  .age__description .title {
    font-size: 30px;
    margin-bottom: 12px;
    text-align: center;
  }

  .age__description .chart {
    height: 140px;
    gap: 38px;
    justify-content: center;
    margin-top: 80px;
  }

  .age__description .bar-wrapper {
    width: 75px;
  }

  .age__description .bar-container {
    height: 120px;
  }

  .age__description .bar {
    font-size: 12px;
  }

  .age__description .label {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .digital-media-about__container {
    padding-top: 27px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .content-left__side h1 {
    font-size: 42px;
    padding-bottom: 28px;
  }

  .left__stats {
    gap: 16px;
    padding-bottom: 32px;
    justify-content: space-between;
  }

  .stats__1 p:first-child,
  .stats__2 p:first-child {
    font-size: 20px;
  }

  .stats__1 p:nth-child(2),
  .stats__2 p:nth-child(2) {
    font-size: 14px;
  }

  .left__image img {
    height: 230px;
    margin-left: -10px;
  }

  .content-right__side {
    padding-top: 16px;
    gap: 24px;
  }

  .gender__description h2 {
    font-size: 30px;
    margin-bottom: 12px;
    text-align: center;
  }

  .gender__percentage {
    gap: 60px;
    justify-content: center;
  }

  .men__percentage,
  .women__percentage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .men__percentage img,
  .women__percentage img {
    width: auto;
    height: 127px;
  }

  .men__percentage p:first-of-type,
  .women__percentage p:first-of-type {
    font-size: 18px;
    padding-top: 0;
  }

  .men__percentage p:last-child,
  .women__percentage p:last-child {
    font-size: 12px;
  }

  .age__description .title {
    font-size: 30px;
    margin-bottom: 12px;
    text-align: center;
  }

  .age__description .chart {
    height: 140px;
    gap: 12px;
    justify-content: center;
  }

  .age__description .bar-wrapper {
    width: 60px;
  }

  .age__description .bar-container {
    height: 120px;
  }

  .age__description .bar {
    font-size: 12px;
  }

  .age__description .label {
    font-size: 11px;
  }
}

/* ==================== */
/* Digital Content About Social page  */
/* =========================== */

.digital-content-socials__container {
  padding-left: 60px;
  padding-right: 60px;
  height: calc(100vh - 10px);
}

.digital-content-socials__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-top: 24px;
  height: 90vh;
  gap: 50px;
}

.socials-left__side {
  grid-column: span 2 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.socials-middle__side {
  grid-column: span 1 / span 1;
}

.facebook_stats {
  color: white;
  display: flex;
  gap: 21px;
  align-items: center;
}

.facebook_stats p {
  font-family: "Adobe Garamound";
  font-size: 24px;
  letter-spacing: 0.5px;
}

.yoy_stats {
  font-family: "Avantgarde Demi";
  font-size: 26px;
  letter-spacing: 0.5px;
  color: white;
}

.section--555 .vogue-digital-media-page__logo {
  padding-top: 27px;
}

.left-side__stats {
  display: flex;
  justify-content: space-between;
  color: white;
  gap: 8px;
}

.left-side__stats .stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.left-side__stats .stats img {
  width: 33px;
  height: auto;
}

.left-side__stats .stats:nth-child(2) img {
  width: 21px;
  height: auto;
}

.left-side__stats .stats p:nth-child(2) {
  font-family: "Avantgarde Demi";
  font-size: 40px;
  font-weight: 700;
  padding-top: 20px;
}

.left-side__stats .stats p:nth-child(3) {
  font-family: "Avantgarde";
  font-size: 16px;
  font-weight: 400;
}

.engagement__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: white;
}

.engagement__stats p:first-child {
  font-size: 18px;
  font-family: "Avantgarde Demi";
  font-weight: 700;
}

.engagement__stats p:nth-child(2) {
  font-size: 18px;
  font-family: "Avantgarde Demi";
  font-weight: 700;
}

.engagement__stats p:nth-child(2) span {
  font-family: "Adobe Garamound Italic";
  letter-spacing: 0.5px;
}

.engagement__stats p:last-child {
  font-size: 16px;
  font-family: "Avantgarde";
  font-weight: 400;
  letter-spacing: 0.5px;
}

.youtube__stats {
  color: white;
  display: flex;
  gap: 21px;
  align-items: center;
}

.youtube__stats p {
  font-family: "Adobe Garamound";
  font-size: 24px;
  letter-spacing: 0.5px;
}

.yt_yoy_stats {
  font-family: "Avantgarde Demi";
  font-size: 24px;
  letter-spacing: 0.5px;
  color: white;
  padding-top: 8px;
}

.socials-middle__side p {
  font-family: "Avantgarde Demi";
  color: white;
  font-size: 52px;
  margin-bottom: 42px;
  text-align: center;
}

.socials-middle__side .phone__mockup {
  height: auto;
  width: 100%;
}

.socials-middle__side img {
  width: 100%;
  height: 100%;
}

.socials-right__side {
  grid-column: span 2 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 20px;
}

.instagram_stats {
  color: white;
  display: flex;
  gap: 21px;
  align-items: center;
}

.instagram_stats p {
  font-family: "Adobe Garamound";
  font-size: 24px;
  letter-spacing: 0.5px;
}

.right-side__ranking {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  color: white;

  .ranking__description {
    font-family: "Avantgarde Demi";
    font-size: 20px;
  }
}

.ranking__badge {
  width: 100px;
  height: 100px;
  border-radius: 1000000px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  flex-shrink: 0;
  font-size: 52px;
  font-family: "Adobe Garamound Italic";
}

.right_side__yoy p:first-child {
  font-size: 18px;
  font-family: "Avantgarde Demi";
  color: white;
}

.right_side__yoy p:last-child {
  font-size: 16px;
  font-family: "Avantgarde";
  color: white;
  padding-top: 8px;
}

@media (max-width: 1024px) {
  .digital-content-socials__container {
    padding-left: 20px;
    padding-right: 20px;
    height: calc(100vh - 20px);
  }

  .digital-content-socials__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding-top: 24px;
    height: calc(100vh - 80px);
    gap: 50px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .socials-left__side {
    grid-column: span 1 / span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .socials-middle__side {
    display: none;
  }

  .socials-right__side {
    grid-column: span 1 / span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
  }

  .facebook_stats a img {
    width: 90px;
    height: auto;
  }

  .facebook_stats p {
    font-size: 22px;
  }

  .yoy_stats {
    font-size: 30px;
    padding-top: 36px;
  }

  .left-side__stats {
    padding-top: 48px;
  }

  .left-side__stats .stats p:nth-child(2) {
    font-size: 48px;
  }

  .left-side__stats .stats p:nth-child(3) {
    font-size: 18px;
  }

  .engagement__stats {
    padding-top: 32px;
  }

  .engagement__stats p:first-child {
    font-size: 22px;
  }

  .engagement__stats p:nth-child(2) {
    font-size: 22px;
  }

  .engagement__stats p:last-child {
    font-size: 20px;
  }

  .yt__bottom {
    padding-top: 32px;
  }

  .youtube__stats p {
    font-size: 22px;
  }

  .socials-right__side {
    margin-left: 0px;
  }

  .instagram_stats a img {
    width: 90px;
    height: auto;
  }

  .instagram_stats p {
    font-size: 22px;
  }

  .right-side__ranking {
    padding-top: 80px;

    .ranking__description {
      font-size: 20px;
      line-height: 30px;
    }
  }

  .ranking__badge {
    height: 120px;
    width: 120px;
  }

  .right_side__yoy {
    padding-top: 36px;
  }
}

@media (max-width: 768px) {
  .digital-content-socials__container {
    padding-left: 20px;
    padding-right: 20px;
    height: calc(100vh - 20px);
  }

  .digital-content-socials__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding-top: 24px;
    height: calc(100vh - 80px);
    gap: 50px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .socials-left__side {
    grid-column: span 1 / span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .socials-middle__side {
    display: none;
  }

  .socials-right__side {
    grid-column: span 1 / span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
  }

  .facebook_stats a img {
    width: 75px;
    height: auto;
  }

  .facebook_stats p {
    font-size: 20px;
  }

  .yoy_stats {
    font-size: 26px;
    padding-top: 28px;
  }

  .left-side__stats {
    padding-top: 40px;
  }

  .left-side__stats .stats p:nth-child(2) {
    font-size: 40px;
  }

  .left-side__stats .stats p:nth-child(3) {
    font-size: 16px;
  }

  .engagement__stats {
    padding-top: 48px;
  }

  .engagement__stats p:first-child {
    font-size: 20px;
  }

  .engagement__stats p:nth-child(2) {
    font-size: 20px;
  }

  .engagement__stats p:last-child {
    font-size: 18px;
  }

  .yt__bottom {
    padding-top: 48px;
  }

  .youtube__stats p {
    font-size: 20px;
  }

  .socials-right__side {
    margin-left: 0px;
  }

  .instagram_stats a img {
    width: 75px;
    height: auto;
  }

  .instagram_stats p {
    font-size: 20px;
  }

  .right-side__ranking {
    padding-top: 70px;

    .ranking__description {
      font-size: 18px;
      line-height: 28px;
    }
  }

  .ranking__badge {
    height: 100px;
    width: 100px;
  }

  .right_side__yoy {
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .digital-content-socials__container {
    padding-left: 20px;
    padding-right: 20px;
    height: calc(100vh - 20px);
  }

  .digital-content-socials__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding-top: 24px;
    height: calc(100vh - 80px);
    gap: 50px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .socials-left__side {
    grid-column: span 1 / span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .socials-middle__side {
    display: none;
  }

  .socials-right__side {
    grid-column: span 1 / span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
  }

  .facebook_stats a img {
    width: 60px;
    height: auto;
  }

  .facebook_stats p {
    font-size: 18px;
  }

  .yoy_stats {
    font-size: 22px;
    padding-top: 20px;
  }

  .left-side__stats {
    padding-top: 32px;
  }

  .left-side__stats .stats p:nth-child(2) {
    font-size: 32px;
  }

  .left-side__stats .stats p:nth-child(3) {
    font-size: 14px;
  }

  .engagement__stats {
    padding-top: 32px;
  }

  .engagement__stats p:first-child {
    font-size: 18px;
  }

  .engagement__stats p:nth-child(2) {
    font-size: 18px;
  }

  .engagement__stats p:last-child {
    font-size: 16px;
  }

  .yt__bottom {
    padding-top: 32px;
  }

  .youtube__stats p {
    font-size: 18px;
  }

  .socials-right__side {
    margin-left: 0px;
  }

  .instagram_stats a img {
    width: 60px;
    height: auto;
  }

  .instagram_stats p {
    font-size: 18px;
  }

  .right-side__ranking {
    padding-top: 60px;

    .ranking__description {
      font-size: 16px;
      line-height: 26px;
    }
  }

  .ranking__badge {
    height: 80px;
    width: 80px;
  }

  .right_side__yoy {
    padding-top: 20px;
  }
}

/* ====================== */
/* Digital Content Highlights and Events CSS */
/* ========================= */

.digital-content-highlights__container {
  padding: 0px 60px 0px 60px;
  width: 100%;
  height: 100vh;
  height: 100vh;
  overflow: hidden;
}

.digital-content-highlights-page__logo {
  padding-top: 23px;
  padding-left: 0px;
}

.digital-content-highlights__container h1 {
  font-family: "Avantgarde Demi";
  padding-top: 40px;
  font-size: 52px;
  color: white;
  padding-bottom: 0px;
}

.digital-content-highlights__container h2 {
  font-family: "Adobe Garamound Italic";
  color: white;
  padding-top: 8px;
  font-size: 40px;
  font-weight: 400;
}

.digital-content-highlights__stats_container {
  color: white;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-right: 60px;
  align-items: flex-end;
}

.digital-content-highlights__stats_container h2 {
  font-family: "Adobe Garamound Italic";
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding-top: 30px;
}

/* Horizontal scrolling for desktop/tablet */
.digital-content-highlights__content {
  padding-top: 34px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.digital-content-highlights__content::-webkit-scrollbar {
  display: none;
}

.digital-content-highlights__content {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.digital-content-highlights__content.active {
  cursor: grabbing;
}

.digital-content-highlights-page_card {
  color: white;
  flex-shrink: 0;
}

.digital-content-highlights-page_card img {
  height: 470px;
  width: 345px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.section--66 .digital-content-highlights-page_card img {
  height: 425px;
  width: 345px;
}

.digital-content-highlights-page_card_description {
  padding-top: 16px;
}

.digital-content-highlights-page_card_description p:first-child {
  font-size: 18px;
  font-family: "Avantgarde Demi";
  font-weight: 700;
  letter-spacing: 0.5px;
}

.digital-content-highlights-page_card {
  pointer-events: none;
  user-select: none;
}

/* Digital Content Highlights Custom Cursor */
.digital-content-highlights__cursor {
  position: fixed;
  width: 109px;
  height: 109px;
  background: white;
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.digital-content-highlights__content:hover .digital-content-highlights__cursor {
  opacity: 0.7;
}

.digital-content-highlights__cursor-text {
  color: #000;
  font-weight: bold;
}

/* Custom Horizontal Scrollbar */
.digital-content-highlights__scrollbar-container {
  width: 100%;
}

.digital-content-highlights__scrollbar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.digital-content-highlights__scrollbar-thumb {
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  left: 0;
}

.digital-content-highlights__scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.8);
}

.digital-content-highlights__scrollbar-thumb.active {
  background: rgba(255, 255, 255, 1);
}

/* ========== Tablet (max-width: 1024px) ========== */
@media (max-width: 1024px) {
  .digital-content-highlights__container {
    padding: 24px 40px 0px 40px;
  }

  .digital-content-highlights__container h1 {
    padding-top: 40px;
    font-size: 44px;
  }

  .digital-content-highlights__stats_container {
    padding-right: 40px;
  }

  .digital-content-highlights__stats_container h2 {
    font-size: 32px;
  }

  .digital-content-highlights__content {
    padding-top: 24px;
    gap: 20px;
  }

  .digital-content-highlights-page_card img {
    height: 415px;
  }

  .digital-content-highlights-page_card_description p:first-child {
    font-size: 16px;
  }

  .digital-content-highlights__cursor {
    width: 90px;
    height: 90px;
  }
}

/* ========== Mobile (max-width: 768px) - Grid Layout ========== */
@media (max-width: 768px) {
  .digital-content-highlights__container {
    padding: 16px 24px 0px 24px;
  }

  .digital-content-highlights__container h1 {
    padding-top: 24px;
    padding-bottom: 16px;
    font-size: 32px;
  }

  .digital-content-highlights__stats_container {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
    margin-bottom: 16px;
  }

  .digital-content-highlights__stats_container h2 {
    font-size: 30px;
    padding-bottom: 16px;
  }

  /* Hide custom scrollbar on mobile */
  .digital-content-highlights__scrollbar-container {
    display: none;
  }

  /* Grid layout for mobile - 2 columns */
  .digital-content-highlights__content {
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    cursor: default;
    max-height: calc(100vh - 240px);
    padding-right: 10px;
    padding-bottom: 20px;
  }

  /* Show scrollbar on mobile */
  .digital-content-highlights__content::-webkit-scrollbar {
    display: block;
    width: 4px;
  }

  .digital-content-highlights__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }

  .digital-content-highlights__content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
  }

  .digital-content-highlights__content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  .digital-content-highlights-page_card {
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .digital-content-highlights-page_card img {
    height: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
  }

  .section--66 .digital-content-highlights-page_card img {
    height: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
  }

  .digital-content-highlights-page_card_description {
    padding-top: 8px;
    width: 100%;
  }

  .digital-content-highlights-page_card_description p:first-child {
    font-size: 13px;
  }

  /* Custom scrollbar for mobile */
  .digital-content-highlights__content::-webkit-scrollbar {
    display: block;
    width: 6px;
  }

  .digital-content-highlights__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }

  .digital-content-highlights__content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .digital-content-highlights__content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
  }

  .digital-content-highlights__content::-webkit-scrollbar-thumb:active {
    background: rgba(255, 255, 255, 0.8);
  }

  /* Firefox scrollbar styling */
  .digital-content-highlights__content {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.4) rgba(255, 255, 255, 0.05);
  }

  /* Hide cursor on mobile */
  .digital-content-highlights__cursor {
    display: none;
  }
}

/* ========== Small Mobile (max-width: 480px) ========== */
@media (max-width: 480px) {
  .digital-content-highlights__container {
    padding: 12px 16px 0px 16px;
  }

  .digital-content-highlights__container h1 {
    padding-top: 24px;
    padding-bottom: 16px;
    font-size: 32px;
  }

  .digital-content-highlights__stats_container h2 {
    font-size: 30px;
    padding-bottom: 16px;
  }

  .digital-content-highlights__content {
    padding-top: 16px;
    gap: 12px;
    max-height: calc(100vh - 220px);
  }

  .digital-content-highlights-page_card_description p:first-child {
    font-size: 12px;
  }
}

/* =================== */
/* Adversting section css */
/* ====================== */

.advertising-section__container {
  padding-top: 23px;
  padding-left: 60px;
  padding-right: 60px;

  .main__title h1 {
    font-family: "Avantgarde Demi";
    font-weight: 700;
    font-size: 52px;
    letter-spacing: 0.5px;
    padding-top: 40px;
    color: white;
  }

  .main__title h2 {
    font-family: "Adobe Garamound Italic";
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 0.5px;
    padding-top: 32px;
    color: white;
  }
}

.advertising-content__container {
  position: relative;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  cursor: grab;
  user-select: none;
}

.advertising-page__card img {
  height: 380px;
  width: 650px;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.advertising-page__card p {
  font-family: "Avantgarde Demi";
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding-top: 18px;
  color: white;
}

.advertising-content__container::-webkit-scrollbar {
  display: none;
}

.advertising_media__cursor {
  position: fixed;
  width: 109px;
  height: 109px;
  background: white;
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.advertising-content__container:hover .advertising_media__cursor {
  opacity: 0.7;
}

/* Custom Horizontal Scrollbar (Digital only) */
.advertising__scrollbar-container {
  width: 100%;
  padding-top: 20px;
}

.advertising__scrollbar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.advertising__scrollbar-thumb {
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  left: 0;
}

.advertising__scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.8);
}

.advertising__scrollbar-thumb.active {
  background: rgba(255, 255, 255, 1);
}

/* TABLET (<= 1024px) */
@media (max-width: 1024px) {
  .advertising-section__container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .advertising-content__container {
    gap: 16px;
  }

  .advertising-page__card img {
    width: 520px;
    height: 300px;
  }

  .advertising-page__card p {
    font-size: 20px;
  }
}

/* MOBILE (<= 768px) */
@media (max-width: 768px) {
  .advertising-section__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Switch to vertical scroll */
  .advertising-content__container {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    gap: 24px;
    cursor: default;
    height: calc(100vh - 200px);
  }

  /* One card per view */
  .advertising-page__card {
    width: 100%;
  }

  .advertising-page__card img {
    width: 100%;
    height: auto;
    max-height: 260px;
  }

  .advertising-page__card p {
    font-size: 18px;
    padding-top: 12px;
  }

  /* Hide custom cursor on mobile */
  .advertising_media__cursor {
    display: none;
  }

  /* Hide custom scrollbar */
  .advertising__scrollbar-container {
    display: none;
  }

  /* Custom scrollbar for mobile */
  .advertising-content__container::-webkit-scrollbar {
    display: block;
    width: 6px;
  }

  .advertising-content__container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }

  .advertising-content__container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .advertising-content__container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
  }

  .advertising-content__container::-webkit-scrollbar-thumb:active {
    background: rgba(255, 255, 255, 0.8);
  }

  /* Firefox scrollbar styling */
  .advertising-content__container {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.4) rgba(255, 255, 255, 0.05);
  }

  /* Hide cursor on mobile */
  .digital-content-highlights__cursor {
    display: none;
  }
}

/* SMALL MOBILE (<= 480px) */
@media (max-width: 480px) {
  .advertising-section__container .main__title h1 {
    font-size: 32px;
    padding-top: 24px;
  }

  .advertising-section__container .main__title h2 {
    font-size: 24px;
    padding-top: 16px;
  }

  .advertising-page__card p {
    font-size: 16px;
  }
}

/* Video Popup Styles */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-popup.active {
  display: flex;
  opacity: 1;
}

.video-popup__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-popup__content {
  position: relative;
  width: 40%;
  aspect-ratio: 1/1;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.video-popup__close {
  position: absolute;
  right: 80px;
  top: 16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.video-popup__close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.video-popup__close svg {
  width: 24px;
  height: 24px;
}

.video-popup__video {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Add to existing advertising card styles */
.advertising-page__card {
  cursor: pointer;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.advertising-page__card:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .video-popup__content {
    width: 85%;
  }

  .video-popup__close {
    top: -50px;
    width: 50px;
    height: 50px;
  }

  .video-popup__close svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .video-popup__content {
    width: 95%;
    max-width: none;
  }

  .video-popup__close {
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
  }

  .video-popup__close svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .video-popup__close {
    top: -45px;
    width: 40px;
    height: 40px;
  }

  .video-popup__close svg {
    width: 16px;
    height: 16px;
  }
}

/* ================================ */

/* Vogue living Editorial Page Css  */

/* ===================================== */

.living-editorial-page__container {
  padding-top: 27px;
  padding-left: 60px;
  padding-right: 60px;
}

.living-editorial-content__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.875rem;
  row-gap: 1.5rem;
  padding-top: 20px;
}

.living__cards {
  display: flex;
  gap: 1.875rem;

  .cards-images {
    position: relative;

    .main_image {
      position: relative;
      height: 300px;
      width: auto;
    }

    .side_image {
      position: absolute;
      left: 200px;
      top: 60px;
    }
  }

  .card_descriptions {
    display: flex;
    color: white;
    flex-direction: column;
    justify-content: space-between;
  }

  .card_descriptions p:first-child {
    color: white;
    font-family: var(--font-garamond);
    font-weight: 400;
    font-size: 32px;
  }

  .card_descriptions p:nth-child(2) {
    color: white;
    font-family: var(--font-avantgarde);
    font-weight: 400;
    font-size: 14px;
    max-width: 292px;
    line-height: 1.5rem;
  }
}

/* Tablet styles (768px and below) */
@media (max-width: 1024px) {
  .living-editorial-page__container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .living-editorial-content__container {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    justify-items: center;
    gap: 2rem;
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100vh - 60px);
  }

  .living__cards {
    flex-direction: flex;
    gap: 1.5rem;

    .cards-images {
      .main_image {
        height: 300px;
        width: 250px;
      }

      .side_image {
        left: 150px;
        top: 50px;
      }
    }

    .card_descriptions p:first-child {
      font-size: 28px;
    }
  }
}

/* Tablet styles (768px and below) */
@media (max-width: 768px) {
  .living-editorial-page__container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .living-editorial-content__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100vh - 60px);
  }

  .living__cards {
    flex-direction: flex;
    gap: 1.5rem;

    .cards-images {
      .main_image {
        height: 300px;
        width: 250px;
      }

      .side_image {
        left: 150px;
        top: 50px;
      }
    }

    .card_descriptions p:first-child {
      font-size: 28px;
    }
  }
}

/* Mobile styles (480px and below) */
@media (max-width: 480px) {
  .living-editorial-page__container {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }

  .living-editorial-content__container {
    gap: 1.5rem;
    padding-top: 15px;
  }

  .living__cards {
    gap: 1rem;

    .cards-images {
      .main_image {
        height: 300px;
        width: 200px;
        object-fit: cover;
      }

      .side_image {
        left: 100px;
        top: 80px;
        max-width: 200px;
      }
    }

    .card_descriptions p:first-child {
      font-size: 24px;
    }

    .card_descriptions p:nth-child(2) {
      font-size: 12px;
      max-width: 100%;
      line-height: 1rem;
    }
  }
}

/* =========================== */
/* Print Ads Css */
/* =============================== */

.print-ads__container {
  display: grid;
  grid-template-columns: 1fr 2fr; /* Image takes 1/3, table takes 2/3 */
  gap: 0;
  min-height: 100vh;
  background: #fff;
}

.left-image__container {
  grid-column: 1;
  position: relative;
  overflow: hidden;
}

.left-image__container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.print-ads-page__logo {
  position: absolute;
  height: 30px;
  width: auto;
  left: 60px;
  top: 27px;
}

.print-ads__table__container {
  padding-left: 88px;
  padding-top: 11px;
  padding-right: 110px;
}

.print-ads__table__container h1 {
  font-family: var(--font-avantgarde-demi);
  font-size: 52px;
  letter-spacing: 0.5px;
}

.print-ads__table__container h2 {
  font-family: var(--font-garamond-italic);
  font-size: 24px;
  font-weight: 400;
  margin-top: 12px;
}

/* table css  */

.editorial-calendar-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  overflow-y: auto;
  padding-top: 11px;
}

.editorial-calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.table-header-row {
  background-color: #f8f8f8;
}

.table-header-cell {
  padding: 16px 20px;
  font-family: var(--font-avantgarde-demi);
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-body-row {
  border-bottom: 1px solid #e8e8e8;
  transition: background-color 0.2s ease;
}

.table-body-row:hover {
  background-color: #fafafa;
}

.table-body-row:last-child {
  border-bottom: none;
}

.table-data-cell {
  padding: 14px 20px;
  font-size: 14px;
  color: #777777;
  font-family: var(--font-avantgarde);
}

/* Smaller laptop Screens */

@media (max-width: 1200px) {
  .left-image__container {
    display: none;
  }

  .print-ads__container {
    grid-template-columns: 1fr;
  }

  .editorial-calendar-wrapper {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
}

/* Tablets */

@media (max-width: 768px) {
  .editorial-calendar-wrapper {
    height: calc(100vh - 20px);
    overflow-y: auto;
  }

  .print-ads__table__container {
    padding-left: 60px;
    padding-top: 11px;
    padding-right: 60px;
  }
}

/* Mobile Phones */

@media (max-width: 480px) {
  .editorial-calendar-wrapper {
    height: calc(100vh - 50px);
    overflow-y: auto;
    overflow-x: auto;
  }

  .print-ads__table__container {
    padding-left: 20px;
    padding-top: 11px;
    padding-right: 20px;
  }
}

/* =========================== */
/* Print Ads Css page 2  */
/* =============================== */

.rate-card__container {
  display: flex;
  gap: 0px;
  flex-direction: row;
  height: 100vh;
}

.left-side-table__container {
  padding-left: 60px;
  padding-top: 27px;
  width: 54%;
}

.right-side-specification__container {
  width: 46%;
  background-color: #f8f8f8;
}

.section--888 .left-side-table__container h1:first-of-type {
  font-family: var(--font-avantgarde-demi);
  font-weight: 400;
  font-size: 48px;
  margin-top: 21px;
  padding-right: 44px;
}

.left-side-table__container h1 {
  font-family: var(--font-garamond);
  font-weight: 400;
  font-size: 32px;
  margin-top: 21px;
}

/* pricing table container */

.pricing-tables-container {
  max-width: 900px;
  margin: 0 auto;
  padding-right: 44px;
}

.pricing-table-wrapper {
  background: #ffffff;
  margin-bottom: 26px;
  overflow: hidden;
}

.pricing-table-wrapper.second-table {
  background: #ffffff;
  margin-bottom: 0px;
  overflow: hidden;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table-header-row {
  background-color: #000000;
}

.pricing-table-header-cell {
  padding: 14px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  text-transform: capitalize;
  font-family: var(--font-avantgarde-demi);
  letter-spacing: 0.5px;
}

.pricing-table-body-row {
  border-bottom: 1px solid #f0f0f0;
}

.pricing-table-body-row:hover {
  background-color: #fafafa;
}

.pricing-table-data-cell {
  padding: 14px 24px;
  font-size: 14px;
  color: #777777;
  font-family: var(--font-avantgarde);
  font-weight: 400;
}

.second-table .pricing-table-data-cell {
  padding: 16px 63px 16px 24px;
  font-size: 14px;
  color: #777777;
}

.rate-card__container .policy {
  font-size: 14px;
  padding-left: 15px;
  padding-top: 12px;
  line-height: 1.2rem;
  font-family: var(--font-avantgarde);
  color: #777777;
  font-weight: 400;
}

/* Specification css  */

.specifications-container {
  padding-top: 90px;
  padding-left: 40px;
  padding-right: 60px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.specifications-title {
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  font-family: var(--font-garamond);
  font-weight: 400;
}

.section-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000000;
  padding-bottom: 12px;
  font-family: var(--font-avantgarde-demi);
}

.section-content {
  color: #777777;
  font-size: 14px;
  line-height: 1.8;
  font-family: var(--font-avantgarde);
}

.specification-paragraph {
  color: #777777;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.specification-paragraph:last-child {
  margin-bottom: 0;
}

/* Small Screen Laptops */

@media (max-width: 1200px) {
  .left-side-table__container {
    padding-left: 40px;
    padding-top: 27px;
    width: 54%;
  }

  .specifications-container {
    padding-top: 90px;
    padding-left: 30px;
    padding-right: 60px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .section--888 .left-side-table__container h1:first-of-type {
    font-family: var(--font-avantgarde-demi);
    font-weight: 400;
    font-size: 40px;
    margin-top: 21px;
    padding-right: 44px;
  }

  .pricing-table-header-cell {
    padding: 7px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    text-transform: capitalize;
    font-family: var(--font-avantgarde-demi);
    letter-spacing: 0.5px;
  }

  .pricing-table-data-cell {
    padding: 14px 24px;
    font-size: 14px;
    color: #777777;
    font-family: var(--font-avantgarde);
    font-weight: 400;
  }

  .second-table .pricing-table-data-cell {
    padding: 16px 20px 16px 20px;
    font-size: 14px;
    color: #777777;
  }
}

/* Tablets */

@media (max-width: 768px) {
  .rate-card__container {
    display: flex;
    gap: 0px;
    flex-direction: column;
    overflow-y: auto;
    height: calc(100vh - 50px);
  }

  .section--888 .left-side-table__container h1:first-of-type {
    font-family: var(--font-avantgarde-demi);
    font-weight: 400;
    font-size: 32px;
    margin-top: 21px;
    padding-right: 44px;
  }

  .left-side-table__container {
    padding-left: 20px;
    padding-top: 27px;
    width: 100%;
  }

  .right-side-specification__container {
    width: 100%;
  }

  .specifications-container {
    padding-top: 90px;
    padding-left: 30px;
    padding-right: 60px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .pricing-table-header-cell {
    padding: 7px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    text-transform: capitalize;
    font-family: var(--font-avantgarde-demi);
    letter-spacing: 0.5px;
  }

  .pricing-table-data-cell {
    padding: 14px 24px;
    font-size: 14px;
    color: #777777;
    font-family: var(--font-avantgarde);
    font-weight: 400;
  }

  .second-table .pricing-table-data-cell {
    padding: 16px 20px 16px 20px;
    font-size: 14px;
    color: #777777;
  }
}

/* ===================== */
/* Digital Ads Section Css */
/* ============= */

.digital-ads__container {
  padding: 27px 60px 0px 60px;

  h1 {
    padding-top: 32px;
    color: white;
    font-size: 52px;
    font-family: var(--font-avantgarde-demi);
    font-weight: 700;

    span {
      font-family: var(--font-garamond-italic);
      font-weight: 400;
    }
  }
}

.digital-ads-card__container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-top: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  height: 73vh;
  cursor: grab;
}

.digital-ads-card__container::-webkit-scrollbar {
  display: none;
}

.digital-ads__card {
  width: auto;
  height: 450px;
  user-select: none;
  cursor: pointer;
  background-color: white;
  object-fit: contain;

  /* Optimize card rendering */
  will-change: transform;
}

.digital-ads__card img {
  width: auto;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;

  /* Image optimizations */
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0); /* GPU acceleration */
  backface-visibility: hidden; /* Prevent flickering */
}

.digital-ads__card p {
  font-weight: 500;
  margin: 0;
  color: white;
  font-family: var(--font-avantgarde-demi);
  font-weight: 700;
  padding-top: 8px;
  font-size: 16px;
}

.section--9 .media__cursor,
.section--99 .media__cursor {
  position: fixed;
  width: 109px;
  height: 109px;
  background: black;
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.section--9 .media__cursor-text,
.section--99 .media__cursor-text {
  color: #fff;
  font-weight: bold;
}

.digital-ads-card__container:hover .media__cursor {
  opacity: 0.7;
}

/* Smaller Laptops */

@media (max-width: 1200px) {
  .digital-ads__container {
    padding: 27px 40px 0px 40px;

    h1 {
      padding-top: 32px;
      color: white;
      font-size: 52px;
      font-family: var(--font-avantgarde-demi);
      font-weight: 700;

      span {
        font-family: var(--font-garamond-italic);
        font-weight: 400;
      }
    }
  }

  .digital-ads__card {
    width: auto;
    height: 400px;
    user-select: none;
    cursor: pointer;
    /* Optimize card rendering */
    will-change: transform;
  }
}

/* Tablet Screens */

@media (max-width: 768px) {
  .digital-ads__container {
    padding: 27px 20px 0px 20px;

    h1 {
      padding-top: 20px;
      color: white;
      font-size: 32px;
      font-family: var(--font-avantgarde-demi);
      font-weight: 700;
      span {
        font-family: var(--font-garamond-italic);
        font-weight: 400;
      }
    }
  }

  .digital-ads-card__container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    cursor: grab;
    height: calc(100vh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .digital-ads__card {
    width: 100%;
    height: 100%;
    user-select: none;
    cursor: pointer;

    /* Optimize card rendering */
    will-change: transform;
  }

  .digital-ads__card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
  }
}

/* Popup Backdrop - now absolute instead of fixed */
.popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(0px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition:
    opacity 0.4s ease,
    backdrop-filter 0.4s ease;
}

.popup-backdrop.active {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

.popup-backdrop.closing {
  animation: fadeOut 0.3s ease forwards;
}

/* Popup Card */
.popup-card {
  position: relative;
  background: white;
  border-radius: 12px;
  width: 80%;
  height: 80vh;
  overflow-y: hidden;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.7) translateY(30px);
  opacity: 0;
  display: none;
  justify-content: center;
}

.popup-card.active {
  display: flex;
  animation: popupSlideIn 0.4s forwards;
}

.popup-card.closing {
  animation: popupSlideOut 0.3s ease forwards;
}

.popup-left-side {
  width: 40%;
}

.popup-right-side {
  width: 60%;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #333;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
  line-height: 1;
}

.popup-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
  color: #000;
}

.popup-close:active {
  transform: rotate(90deg) scale(0.9);
}

/* Popup Content */
.popup-content {
  text-align: center;
  display: flex;
  flex-direction: row;
  max-width: 90vw;
}

.popup-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.popup-card.active .popup-content img {
  animation: contentFadeIn 0.5s ease 0.2s forwards;
}

.popup-content p {
  color: #666;
  line-height: 1.6;
  transform: translateY(20px);
}

/* Make cards clickable */
.digital-ads__card {
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.digital-ads__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.digital-ads__card:active {
  transform: translateY(-4px);
}

.popup-specifications-container {
  margin: 0 auto;
  background-color: white;
  overflow: hidden;
  padding: 0;
}

.specifications-header {
  background-color: #000;
  color: white;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  margin-top: 20px;
  font-family: var(--font-avantgarde-demi);
  letter-spacing: 0.5px;
}

.specifications-table {
  width: 100%;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s ease;
}

.popup-right-side h2 {
  text-align: start;
  font-size: 32px;
  font-family: var(--font-garamond);
  font-weight: 400;
}

.popup-right-side h1 {
  text-align: start;
  padding-top: 8px;
  font-family: var(--font-avantgarde-demi);
  font-size: 40px;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:hover {
  background-color: #fafafa;
}

.spec-label {
  color: #727272;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-avantgarde);
  font-weight: 400;
}

.spec-value {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-avantgarde);
  font-weight: 400;
}

@media (max-width: 768px) {
  /* Popup Content */
  .popup-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100vh - 100px);
    gap: 40px;
  }

  .popup-card {
    width: 95%;
    padding: 10px;
  }

  .popup-left-side {
    width: 100%;
    height: 500px;
  }

  .popup-right-side {
    width: 100%;
  }
  .specifications-header {
    padding: 16px 20px;
    font-size: 18px;
  }

  .spec-row {
    padding: 16px 20px;
    gap: 8px;
  }

  .spec-value {
    text-align: left;
    color: #333;
    font-weight: 500;
  }
}

/* Keyframe Animations */

/* Backdrop Fade In */
@keyframes fadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

/* Backdrop Fade Out */
@keyframes fadeOut {
  from {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
  to {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
}

/* Popup Slide In with Bounce */
@keyframes popupSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Popup Slide Out */
@keyframes popupSlideOut {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
}

/* Optional: Smooth scrollbar for popup */
.popup-card::-webkit-scrollbar {
  width: 8px;
}

.popup-card::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.popup-card::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.popup-card::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ====================== */
/* Banners rate css  */
/* ====================== */

.banners-rate__container {
  height: 100vh;
  background-color: white;
}

.banners-rate-content__container {
  height: 100%;
}

.banners-rate-content__container {
  display: flex;
  flex-direction: row;
}

.section--999 .left-side-table__container {
  padding-top: 27px;
  padding-left: 60px;
  padding-right: 20px;
  width: 59%;
  background-color: #fff;
}

.section--999 .specifications-container {
  padding-left: 39px;
  padding-right: 113px;
  padding-top: 100px;
}

.section--999 .specifications-container h4 {
  font-family: var(--font-garamond);
  font-weight: 400;
  font-size: 32px;
}

.section--999 .pricing-table-wrapper {
  padding-top: 8px;
}

@media (max-width: 1200px) {
  .banners-rate-content__container {
    display: flex;
    flex-direction: column;
  }

  .section--999 .specifications-container {
    padding-top: 27px;
    padding-left: 30px;
    padding-right: 60px;
    width: 100%;
  }

  .section--999 .left-side-table__container {
    padding-top: 27px;
    padding-left: 30px;
    padding-right: 60px;
    width: 100%;
  }

  .section--999 .specifications-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .banners-rate-content__container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 50px);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .section--999 .left-side-table__container {
    padding-top: 27px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .section--999 .specifications-container {
    padding-top: 27px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .section--999 .specifications-container {
    width: 100%;
  }
}

.section--999 .specifications-container {
  background-color: #f8f8f8;
}

.section--999 .pricing-tables-container h4 {
  font-family: var(--font-garamond);
  font-weight: 400;
  font-size: 32px;
  padding-top: 22px;
}

.section--999 .specifications-container {
  justify-content: flex-start;
}

.section--999 .pricing-tables-container {
  .table-wrap {
    width: 100%;
    margin: 20px auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    table {
      width: 100%;
      min-width: 600px;
      border-collapse: collapse;
      font-size: 14px;
      color: #333;
    }

    th,
    td {
      padding: 10px 29px;
      border-bottom: 1px solid #e6e6e6;
      text-align: left;
      vertical-align: middle;
    }

    th {
      font-family: var(--font-avantgarde);
      font-weight: 400;
      font-size: 16px;
    }

    td {
      font-family: var(--font-avantgarde);
      font-weight: 400;
      font-size: 14px;
    }

    /* Top black header */
    .main-header th {
      background: #000;
      color: #fff;
      font-weight: 600;
      text-align: center;
      border-bottom: none;
    }

    th.center.sov {
      background-color: #727272;
    }

    th.center.second-sov {
      background-color: #727272;
      color: white;
    }

    .sub-header {
      margin-top: 10px;
    }

    /* Grey sub header */
    .sub-header th {
      background: #f2f2f2;
      font-weight: 600;
      color: #000;
    }

    /* Section divider */
    .table-section {
      background: #000;
      color: #fff;
      font-weight: 600;
      text-align: center;
    }

    .center {
      text-align: center;
    }

    .right {
      text-align: right;
    }

    .muted {
      color: #777;
    }

    /* Tablet breakpoint */
    @media (max-width: 1024px) {
      margin: 15px auto;

      table {
        min-width: 550px;
        font-size: 13px;
      }

      th,
      td {
        padding: 8px 20px;
      }

      th {
        font-size: 15px;
      }

      td {
        font-size: 13px;
      }
    }

    /* Mobile breakpoint */
    @media (max-width: 768px) {
      margin: 12px auto;

      table {
        min-width: 500px;
        font-size: 12px;
      }

      th,
      td {
        padding: 6px 12px;
      }

      th {
        font-size: 13px;
      }

      td {
        font-size: 12px;
      }
    }

    /* Small mobile breakpoint */
    @media (max-width: 480px) {
      margin: 10px auto;

      table {
        min-width: 450px;
        font-size: 11px;
      }

      th,
      td {
        padding: 5px 8px;
      }

      th {
        font-size: 12px;
      }

      td {
        font-size: 11px;
      }
    }
  }
}

/* =============================== */

/* Contact Us Css  */

/* ============================ */

.contact-us-ads__logo {
  padding-top: 27px;
  padding-left: 60px;
}

.contact-us__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding-top: 15%;
}

.contact-us__container p {
  font-family: var(--font-avantgarde-demi);
  font-size: 42px;
  font-weight: 700;
  color: white;
}

.contact-info {
  position: absolute;
  color: white;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.contact-info p:first-of-type {
  font-family: var(--font-garamond-italic);
  font-weight: 400;
  font-size: 40px;
}

.contact-info p:last-of-type {
  font-family: var(--font-avantgarde-demi);
  font-weight: 700;
  font-size: 64px;
}

@media (max-width: 1200px) {
  .contact-us__container {
    padding-top: 22%;
  }

  .contact-info p:first-of-type {
    font-size: 40px;
  }

  .contact-info p:last-of-type {
    font-size: 64px;
  }
}

@media (max-width: 768px) {
  .contact-us__container {
    padding-top: 40%;
  }

  .contact-us__container p {
    font-size: 38px;
  }

  .contact-info p:first-of-type {
    font-size: 24px;
  }

  .contact-info p:last-of-type {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .contact-us__container {
    padding-top: 50%;
  }

  .contact-us__container p {
    font-size: 38px;
  }

  .contact-info p:first-of-type {
    font-size: 24px;
  }

  .contact-info p:last-of-type {
    font-size: 24px;
  }
}
