:root {
  --beehive-accent: #ffc928;
  --beehive-line: rgba(17, 17, 17, 0.14);
  --beehive-surface: #f5f3ec;
  --beehive-surface-strong: #ece8dc;
  --beehive-text-muted: #555;
}

body {
  text-rendering: optimizeLegibility;
}

.empty-space--35 {
  height: 35px;
}

.header-area,
.header-area-2 {
  z-index: 100;
}

.header-area-2__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
}

.header-area-2__inner > *:nth-child(1) {
  margin-inline-end: 0;
  justify-self: start;
}

.header-area-2 .header__nav {
  position: static;
  transform: none;
}

.header-area-2 .header__navicon {
  justify-self: end;
}

.header-area-2 .main-menu > ul {
  align-items: center;
  gap: 2px;
}

.header-area-2 .main-menu li a {
  padding: 29px clamp(8px, 0.75vw, 14px);
  white-space: nowrap;
}

.main-menu > ul > li > a {
  position: relative;
}

.main-menu > ul > li.is-active > a::before {
  position: absolute;
  bottom: 19px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--beehive-accent);
  content: "";
  transform: translateX(-50%);
}

.header-area .main-menu > ul > li.is-active > a::before {
  bottom: 16px;
}

.site-menu-toggle {
  border: 0;
  padding: 0;
  background: transparent;
}

.header-area .site-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-area-2 .site-menu-toggle.bar-icon {
  width: 45px;
  height: 45px;
}

.site-page-hero {
  padding: clamp(140px, 10vw, 175px) 0 clamp(72px, 7vw, 110px);
  border-bottom: 1px solid var(--beehive-line);
}

.site-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(210px, 285px) minmax(0, 1fr);
  gap: 48px clamp(42px, 6vw, 100px);
}

.site-page-hero__eyebrow {
  padding-top: 12px;
  border-right: 1px solid var(--beehive-line);
}

.site-page-hero__eyebrow .section-subtitle {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  min-height: 30px;
  padding: 7px 14px 7px 25px;
  border: 1px solid rgba(17, 17, 17, 0.55);
  font-size: 14px;
  line-height: 1;
}

.site-page-hero__title {
  max-width: 1120px;
  margin: 0;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(62px, 6.2vw, 96px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.site-page-hero__description {
  max-width: 680px;
  margin: clamp(38px, 4vw, 64px) 0 0 auto;
  color: var(--primary);
  font-family: var(--font_bdogrotesk);
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.advertisers-hero {
  padding: clamp(132px, 9vw, 164px) 0 clamp(64px, 5vw, 86px);
  overflow: hidden;
  background: #111;
  color: #fff;
}

.advertisers-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(50px, 6vw, 110px);
  align-items: stretch;
}

.advertisers-hero__content {
  display: flex;
  padding: 8px 0 10px;
  flex-direction: column;
  align-items: flex-start;
}

.advertisers-hero .section-subtitle {
  width: auto;
  height: auto;
  min-height: 30px;
  padding: 7px 14px 7px 25px;
  border-color: rgba(255, 255, 255, 0.58);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1;
}

.advertisers-hero .section-subtitle::before {
  background: var(--beehive-accent);
}

.advertisers-hero__title {
  max-width: 720px;
  margin: auto 0 0;
  color: #fff;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(52px, 4.7vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.advertisers-hero__description {
  max-width: 610px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.46;
  letter-spacing: -0.02em;
}

.advertisers-hero__button {
  margin-top: 34px;
  background: var(--beehive-accent);
  color: #111;
}

.advertisers-hero__media {
  position: relative;
  min-height: clamp(480px, 38vw, 620px);
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}

.advertisers-hero__media::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.72));
  content: "";
}

.advertisers-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.advertisers-hero__media figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  padding-top: 16px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.advertisers-hero__media figcaption strong {
  color: #fff;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(40px, 3.8vw, 58px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.advertisers-hero__media figcaption span {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.25;
  text-align: right;
}

.media-owners-hero {
  padding: clamp(132px, 9vw, 164px) 0 0;
  border-bottom: 1px solid var(--beehive-line);
  background: #fff;
}

.media-owners-hero__heading {
  display: grid;
  grid-template-columns: minmax(210px, 285px) minmax(0, 1fr);
  gap: 48px clamp(42px, 6vw, 100px);
}

.media-owners-hero__eyebrow {
  padding-top: 8px;
  border-right: 1px solid var(--beehive-line);
}

.media-owners-hero__eyebrow .section-subtitle {
  display: inline-flex;
  width: auto;
  height: auto;
  min-height: 30px;
  padding: 7px 14px 7px 25px;
  border-color: rgba(17, 17, 17, 0.55);
  font-size: 14px;
  line-height: 1;
}

.media-owners-hero__title {
  max-width: 1050px;
  margin: 0;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(54px, 5.2vw, 80px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.media-owners-hero__title span,
.media-owners-hero__title em {
  display: block;
}

.media-owners-hero__title em {
  font-family: var(--font_ppeditor);
  font-weight: 200;
}

.media-owners-hero__description {
  max-width: 660px;
  margin: clamp(28px, 3vw, 44px) 0 clamp(46px, 5vw, 70px) auto;
  color: var(--beehive-text-muted);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.media-owners-hero__proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(48px, 5vw, 74px);
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  background: var(--beehive-accent);
}

.media-owners-hero__proof {
  display: flex;
  min-height: 118px;
  padding: 24px clamp(22px, 2.5vw, 40px);
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.media-owners-hero__proof:not(:last-child) {
  border-right: 1px solid rgba(17, 17, 17, 0.2);
}

.media-owners-hero__proof span {
  font-size: 13px;
  line-height: 1;
}

.media-owners-hero__proof strong {
  max-width: 250px;
  margin-top: auto;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-align: right;
  text-wrap: balance;
}

.site-service-list .service-2-box .content .title {
  margin-bottom: 28px;
  font-size: clamp(40px, 3.8vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.site-service-list .service-2-box .content .designation,
.site-service-list .service-2-box .content .service-2-list li {
  max-width: 640px;
  font-size: 19px;
  line-height: 1.5;
}

.site-service-list .service-2-box .thumb {
  overflow: hidden;
  border-radius: 12px;
}

.site-service-list .service-2-box .thumb img {
  transition: transform 0.7s ease;
}

.site-service-list .service-2-box:hover .thumb img {
  transform: scale(1.025);
}

.media-owners-page .service-area-6 {
  padding: clamp(80px, 8vw, 130px) 0;
  background: var(--beehive-surface);
}

.media-owners-page .services-6-wrapper-box {
  display: block;
  margin: 0;
}

.media-owners-page .services-6-wrapper {
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px clamp(32px, 4vw, 70px);
}

.media-owners-page .service-box-6 {
  grid-template-columns: 1fr;
  gap: 24px;
  min-width: 0;
}

.media-owners-page .service-box-6 .title {
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.media-owners-page .service-box-6 .content {
  gap: 28px;
}

.media-owners-page .service-box-6 .designation {
  max-width: 640px;
  color: #555;
  font-size: 18px;
  line-height: 1.5;
}

.media-owners-page .service-box-6 .thumb {
  margin-top: 0;
}

.media-owners-page .service-box-6 .thumb img {
  height: clamp(250px, 27vw, 390px);
  object-fit: cover;
}

.site-section-heading {
  padding: clamp(70px, 7vw, 110px) 0 clamp(42px, 4vw, 64px);
  background: var(--beehive-surface-strong);
}

.site-section-heading__inner {
  display: grid;
  grid-template-columns: minmax(210px, 285px) minmax(0, 1fr);
  gap: 48px clamp(42px, 6vw, 100px);
  align-items: start;
}

.site-section-heading__index {
  padding-top: 12px;
  border-top: 1px solid rgba(17, 17, 17, 0.45);
  font-family: var(--font_bdogrotesk);
  font-size: 14px;
}

.site-section-heading__title {
  max-width: 980px;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.media-owners-page .process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: clamp(54px, 6vw, 90px);
}

.media-owners-page .process-grid .service-2-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
  min-width: 0;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--beehive-line);
  border-radius: 12px;
}

.media-owners-page .process-grid .service-2-box:not(:last-child) {
  padding-bottom: 24px;
}

.media-owners-page .process-grid .service-2-box .thumb {
  width: 100%;
  height: clamp(190px, 18vw, 270px);
  overflow: hidden;
  border-radius: 10px;
}

.media-owners-page .process-grid .service-2-box .thumb img {
  border-radius: 0;
}

.media-owners-page .process-grid .service-2-box .content .title {
  margin-bottom: 16px;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.media-owners-page .process-grid .service-2-box .content .designation {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.5;
}

.tech-partners-page .tech-partners-hero {
  padding-top: clamp(135px, 10vw, 170px);
}

.tech-partners-page .tech-partners-hero .section-title-6 {
  max-width: 1000px;
  font-size: clamp(62px, 6.2vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.tech-partners-page .tech-partners-models .tech-partners-models__header .section-title-6 {
  font-size: clamp(50px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.tech-partners-page .tech-partners-models__card .title,
.tech-partners-page .service-5__item span {
  text-wrap: balance;
}

.tech-partners-page .tech-partners-models__card {
  border-radius: 12px;
}

.about-hero-title {
  max-width: 980px;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(50px, 4.7vw, 72px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.about-hero-title .about-hero-title__lead {
  display: block;
  font-family: var(--font_bdogrotesk);
}

.about-hero-title .about-hero-title__accent {
  display: block;
  width: max-content;
  margin-left: 11%;
  font-family: var(--font_ppeditor);
  font-style: italic;
  font-weight: 200;
}

.about-hero-title .about-hero-title__lead--after {
  margin-left: 36%;
}

.about-page .award-area-2 .section-title,
.about-page .marquee-text-area .section-title {
  text-wrap: balance;
}

.contact-page-view .contact-title .page-title-area-inner {
  grid-template-columns: minmax(480px, 1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 7vw, 120px);
}

.contact-page-view .contact-title .contact-page-title {
  max-width: 800px;
  font-size: clamp(52px, 4.8vw, 74px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.contact-page-view .contact-title .contact-page-title span,
.contact-page-view .contact-title .contact-page-title em {
  display: block;
}

.contact-page-view .contact-title .contact-page-title span {
  font-family: var(--font_bdogrotesk);
  font-style: normal;
}

.contact-page-view .contact-title .contact-page-title em {
  width: max-content;
  margin-left: 20%;
  font-family: var(--font_ppeditor);
  font-weight: 200;
}

.contact-page-view .contact-title .page-title-area-inner p {
  max-width: 650px;
  font-size: 19px;
  line-height: 1.5;
}

.contact-page-view .contact-formfield {
  border-radius: 10px;
}

.footer-widget-box.content .title {
  max-width: 760px;
  text-wrap: balance;
}

.footer-widget-box .footer-nav-list a {
  text-wrap: balance;
}

.hero-area .section-title,
.about-area-2 .section-title,
.cta-area-team-page .section-title {
  text-wrap: balance;
}

.services-wrapper-1--three .service-box-1 .title {
  text-wrap: balance;
}

/* Home: replace the template's pinned phone animation with a clear value grid. */
.hero-area .hero-area-inner {
  height: min(100svh, 900px);
  min-height: 700px;
}

.hero-area .section-content .section-title {
  max-width: 760px;
  font-size: clamp(58px, 6.4vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-area .section-content .text {
  max-width: 430px;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.home-values {
  border-block: 1px solid var(--beehive-line);
  background: var(--beehive-surface-strong);
}

.home-values__header .section-title-wrapper {
  display: grid;
  grid-template-columns: minmax(210px, 285px) minmax(0, 1fr);
  gap: 48px clamp(42px, 6vw, 100px);
  align-items: start;
}

.home-values__header .subtitle-wrapper {
  padding-top: 12px;
  border-top: 1px solid rgba(17, 17, 17, 0.45);
}

.home-values__header .section-subtitle {
  display: block;
  width: auto;
  height: auto;
  border: 0;
  font-size: 14px;
}

.home-values__header .section-title {
  max-width: 850px;
  font-size: clamp(52px, 5vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.home-values .services-wrapper-box {
  margin-top: 0;
}

.home-values .services-wrapper-1.services-wrapper-1--three {
  max-width: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-values .service-box-1 {
  display: flex;
  min-height: 430px;
  padding: 34px;
  flex-direction: column;
  border-radius: 12px;
}

.home-values .service-box-1.item-3 {
  background: var(--beehive-accent);
}

.home-values .service-box-1.item-4 {
  background: #2f6b4f;
}

.home-values .service-box-1.item-3 .title,
.home-values .service-box-1.item-3 .text {
  color: #111;
}

.home-values .service-box-1 .content {
  margin-top: auto;
  padding-top: 80px;
}

.home-values .service-box-1 .title {
  font-size: clamp(27px, 2.4vw, 36px);
  line-height: 1.04;
}

.home-values .service-box-1 .text {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.48;
}

.about-area-2 .section-title {
  max-width: 850px;
  margin-left: 0;
  font-size: clamp(52px, 5vw, 78px);
  text-indent: 0;
}

.about-area-2 .about-area-2-inner {
  padding-bottom: clamp(80px, 7vw, 120px);
}

.about-area-2 .thumb {
  aspect-ratio: 1;
  border-radius: 12px;
}

.about-area-2 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.home-stats {
  padding-bottom: clamp(80px, 8vw, 130px);
  border-top: 1px solid var(--beehive-line);
  background: var(--beehive-surface);
}

.choose-us__header .section-title {
  font-size: clamp(48px, 4.8vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

/* Inner pages: use distinct section surfaces and predictable image ratios. */
.advertisers-page .site-service-list {
  background: var(--beehive-surface);
}

.advertisers-page .site-service-list .service-2-box {
  padding-block: clamp(42px, 4vw, 64px);
  border-color: rgba(17, 17, 17, 0.18);
}

.advertisers-page .site-service-list .service-2-box:not(:last-child) {
  padding-bottom: clamp(42px, 4vw, 64px);
}

.advertisers-page .site-service-list .service-2-box:nth-child(even) .thumb {
  order: 2;
}

.site-service-list .service-2-box .thumb {
  aspect-ratio: 4 / 3;
}

.site-service-list .service-2-box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advertisers-page .site-service-list .service-2-box:nth-child(3n + 1) .thumb img {
  object-position: 22% center;
}

.advertisers-page .site-service-list .service-2-box:nth-child(3n + 2) .thumb img {
  object-position: center;
}

.advertisers-page .site-service-list .service-2-box:nth-child(3n) .thumb img {
  object-position: 76% center;
}

.media-owners-page .service-box-6 {
  padding-top: 28px;
  border-top: 1px solid var(--beehive-line);
}

.media-owners-page .service-box-6 .thumb,
.tech-partners-page .tech-partners-models__card .thumb {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.media-owners-page .service-box-6 .thumb {
  border-radius: 10px;
}

.tech-partners-page .tech-partners-models__card .thumb {
  border-radius: 12px;
}

.media-owners-page .service-box-6 .thumb img,
.tech-partners-page .tech-partners-models__card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-owners-page .service-box-6:nth-child(3n + 1) .thumb img,
.tech-partners-page .tech-partners-models__card:nth-child(3n + 1) .thumb img {
  object-position: 18% center;
}

.media-owners-page .service-box-6:nth-child(3n + 2) .thumb img,
.tech-partners-page .tech-partners-models__card:nth-child(3n + 2) .thumb img {
  object-position: center;
}

.media-owners-page .service-box-6:nth-child(3n) .thumb img,
.tech-partners-page .tech-partners-models__card:nth-child(3n) .thumb img {
  object-position: 82% center;
}

.media-owners-page .process-grid .service-2-box .thumb img {
  object-fit: cover;
}

.media-owners-page .process-grid .service-2-box:nth-child(1) .thumb img {
  object-position: 68% center;
}

.media-owners-page .process-grid .service-2-box:nth-child(2) .thumb img {
  object-position: 22% center;
}

.media-owners-page .process-grid .service-2-box:nth-child(3) .thumb img {
  object-position: 70% center;
}

.tech-partners-page .tech-partners-hero__thumb {
  overflow: hidden;
  height: clamp(440px, 50vw, 720px);
}

.tech-partners-page .tech-partners-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-partners-page .tech-partners-models {
  padding-bottom: clamp(80px, 8vw, 130px);
  background: var(--beehive-surface);
}

.tech-partners-page .tech-partners-models__card .service-list li {
  color: var(--beehive-text-muted);
}

.tech-partners-page .service-5 {
  background: var(--beehive-surface-strong);
}

.tech-partners-page .service-5 .section-2-title-wrapper {
  grid-template-columns: minmax(210px, 285px) minmax(0, 1fr);
  gap: 48px clamp(42px, 6vw, 100px);
}

.tech-partners-page .service-5 .section-2-title {
  max-width: 960px;
  margin-bottom: 55px;
  font-size: clamp(52px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.tech-partners-page .service-5__content {
  margin-left: 0;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 130px);
}

.tech-partners-page .service-5__info .price h5 {
  color: #5c5c5c;
}

/* About: turn the long marquee into a readable editorial statement. */
.about-page .about-us__media {
  overflow: hidden;
  height: clamp(420px, 41vw, 620px);
}

.about-page .about-us__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .who-we-are .who-we-are__content {
  max-width: 820px;
}

.about-page .who-we-are {
  padding-bottom: clamp(80px, 7vw, 120px);
}

.about-page .who-we-are .who-we-are__content .designation {
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.about-page .choose-us {
  padding-bottom: clamp(80px, 8vw, 130px);
  background: var(--beehive-surface);
}

.about-page .marquee-text-area {
  padding: clamp(76px, 7vw, 110px) 0;
  background: var(--beehive-accent);
}

.about-page .marquee-text-area .moving-text {
  width: min(calc(100% - 48px), 1650px);
  margin-inline: auto;
}

.about-page .marquee-text-area .section-title {
  max-width: 1260px;
  margin-inline: auto;
  color: #111;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-align: center;
  white-space: normal;
}

.about-page .award-area-2 .section-title {
  font-size: clamp(48px, 4.8vw, 72px);
  line-height: 1.05;
}

/* Contact: separate the hero, form, and office bands. */
.contact-page-view .contact-title {
  border-bottom: 1px solid var(--beehive-line);
}

.contact-page-view .contact-page {
  padding: clamp(70px, 7vw, 110px) 0;
  background: var(--beehive-surface);
}

.contact-page-view .contact-page-inner {
  margin-top: 0;
}

.contact-page-view .contact-formfield,
.contact-page-view .socail-media__item .icon {
  background: #fff;
}

.contact-us__offices {
  overflow: hidden;
}

.contact-us__offices-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.contact-us__offices::before {
  z-index: 1;
}

.contact-us__offices .title,
.contact-us__offices a {
  z-index: 2;
}

/* Keep repeated conversion prompts subordinate to page content. */
.cta-area-team-page .section-title {
  font-size: clamp(38px, 3.6vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.cta-area-team-page .section-content .text {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 18px;
  line-height: 1.5;
}

.footer-area .footer-widget-wrapper-box .content .title {
  max-width: 520px;
  font-size: clamp(38px, 3.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.footer-area .footer-widget-wrapper-box {
  padding: clamp(54px, 5vw, 76px) 0;
}

.footer-area .footer-widget-wrapper {
  grid-template-columns: minmax(360px, 1.35fr) repeat(3, minmax(120px, auto));
  gap: 38px clamp(48px, 7vw, 110px);
}

.footer-area .footer-widget-box.content {
  padding-right: clamp(20px, 3vw, 48px);
}

.footer-area .footer-widget-box.content .rr-btn-underline {
  display: inline-flex;
  margin-top: 26px;
}

.footer-area .copyright-area-inner {
  padding: 24px 0;
}

.footer-area .copyright-text .text {
  font-size: 16px;
}

.footer-area--compact .footer-widget-wrapper-box .content .title {
  max-width: 410px;
  font-size: clamp(34px, 2.8vw, 44px);
}

.footer-area .footer-widget-box:not(.content) .title {
  color: #5f5f5f;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-area .footer-nav-list li {
  font-size: 18px;
  line-height: 1.55;
}

@media only screen and (max-width: 1399px) {
  .header-area-2__inner {
    gap: 16px;
  }

  .header-area-2 .main-menu li a {
    padding-inline: 8px;
    font-size: 14px;
  }

  .header-inner .header__navicon .rr-btn {
    padding-inline: 18px;
  }
}

@media only screen and (max-width: 1199px) {
  .header-area-2__inner {
    display: flex;
  }

  .header-area-2__inner > *:nth-child(1) {
    margin-inline-end: auto;
  }

  .site-page-hero__inner,
  .site-section-heading__inner {
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  }

  .advertisers-hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    gap: 44px;
  }

  .media-owners-hero__heading {
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  }

  .footer-area .footer-widget-wrapper {
    grid-template-columns: minmax(300px, 1.2fr) repeat(3, minmax(110px, auto));
    gap: 36px 42px;
  }

  .media-owners-page .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-partners-page .tech-partners-models .tech-partners-models__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-values .service-box-1 {
    min-height: 380px;
  }
}

@media only screen and (max-width: 991px) {
  .site-page-hero {
    padding-top: 125px;
  }

  .site-page-hero__inner,
  .site-section-heading__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .advertisers-hero__inner {
    grid-template-columns: 1fr;
  }

  .advertisers-hero__title {
    margin-top: 72px;
  }

  .advertisers-hero__media {
    min-height: 440px;
  }

  .media-owners-hero__heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .media-owners-hero__eyebrow {
    padding-top: 0;
    border-right: 0;
  }

  .media-owners-hero__description {
    margin-left: 0;
  }

  .footer-area .footer-widget-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 42px 30px;
  }

  .footer-area .footer-widget-box.content {
    grid-column: 1 / -1;
  }

  .site-page-hero__eyebrow {
    padding-top: 0;
    border-right: 0;
  }

  .site-page-hero__description {
    margin-left: 0;
  }

  .media-owners-page .services-6-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-page-view .contact-title .page-title-area-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-values__header .section-title-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-values .services-wrapper-1.services-wrapper-1--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advertisers-page .site-service-list .service-2-box:nth-child(even) .thumb {
    order: initial;
  }

  .site-service-list .service-2-box .thumb {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .tech-partners-page .service-5 .section-2-title-wrapper,
  .tech-partners-page .service-5__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-page .about-us__media {
    height: 520px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-area .hero-area-inner {
    height: auto;
    min-height: 660px;
    padding-top: 135px;
    padding-bottom: 56px;
  }

  .hero-area .section-content .section-title {
    font-size: clamp(46px, 13vw, 58px);
  }

  .home-values .services-wrapper-1.services-wrapper-1--three {
    grid-template-columns: 1fr;
  }

  .home-values .service-box-1 {
    min-height: 330px;
    padding: 28px;
  }

  .home-values .service-box-1 .content {
    padding-top: 50px;
  }

  .site-page-hero {
    padding: 110px 0 72px;
  }

  .advertisers-hero {
    padding: 110px 0 58px;
  }

  .advertisers-hero__title {
    margin-top: 58px;
    font-size: clamp(44px, 12vw, 58px);
  }

  .advertisers-hero__description {
    margin-top: 24px;
    font-size: 18px;
  }

  .advertisers-hero__media {
    min-height: 350px;
  }

  .advertisers-hero__media figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .media-owners-hero {
    padding-top: 110px;
  }

  .media-owners-hero__title {
    font-size: clamp(44px, 12vw, 58px);
  }

  .media-owners-hero__proofs {
    grid-template-columns: 1fr;
  }

  .media-owners-hero__proof {
    min-height: 92px;
  }

  .media-owners-hero__proof:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  }

  .site-page-hero__title {
    font-size: clamp(46px, 13vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .site-page-hero__description {
    margin-top: 28px;
    font-size: 18px;
  }

  .site-service-list .service-2-box .content .title {
    font-size: 40px;
  }

  .media-owners-page .process-grid,
  .tech-partners-page .tech-partners-models .tech-partners-models__grid {
    grid-template-columns: 1fr;
  }

  .media-owners-page .process-grid .service-2-box .thumb {
    height: 250px;
  }

  .about-hero-title {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1;
  }

  .about-hero-title .about-hero-title__accent {
    margin-left: 6%;
  }

  .about-hero-title .about-hero-title__lead--after {
    margin-left: 20%;
  }

  .tech-partners-page .tech-partners-hero .section-title-6 {
    font-size: 52px;
    line-height: 0.98;
  }

  .contact-page-view .contact-title .contact-page-title {
    font-size: clamp(44px, 12vw, 60px);
    line-height: 1;
  }

  .contact-page-view .contact-title .contact-page-title em {
    margin-left: 10%;
  }

  .about-page .about-us__media {
    height: 340px;
  }

  .about-page .marquee-text-area .moving-text {
    width: min(calc(100% - 32px), 1650px);
  }

  .about-page .marquee-text-area .section-title {
    font-size: clamp(38px, 10.5vw, 52px);
  }

  .cta-area-team-page .section-title {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.08;
  }
}

@media (max-width: 575px) {
  .header-inner .header__navicon {
    gap: 0;
  }

  .site-page-hero__title {
    font-size: clamp(40px, 12vw, 48px);
  }

  .advertisers-hero__media {
    min-height: 310px;
  }

  .advertisers-hero__media figcaption span {
    max-width: 130px;
    font-size: 13px;
  }

  .about-hero-title .about-hero-title__accent,
  .about-hero-title .about-hero-title__lead--after,
  .contact-page-view .contact-title .contact-page-title em {
    width: auto;
    margin-left: 0;
  }

  .footer-area .footer-widget-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-area .footer-widget-box.content {
    grid-column: auto;
  }

  .footer-area .footer-widget-wrapper-box .content .title,
  .footer-area--compact .footer-widget-wrapper-box .content .title {
    font-size: 34px;
    line-height: 1.08;
  }

  .tech-partners-page .tech-partners-hero .section-title-6 {
    font-size: 46px;
  }

  .media-owners-page .service-box-6 .thumb img {
    height: 235px;
  }

  .media-owners-page .process-grid .service-2-box .thumb {
    height: 210px;
  }

  .site-section-heading__title {
    font-size: 46px;
  }
}

/* Keep editorial headings and supporting copy on one consistent content line. */
@media only screen and (min-width: 992px) {
  .site-page-hero__inner,
  .media-owners-hero__heading,
  .site-section-heading__inner,
  .home-values__header .section-title-wrapper,
  .tech-partners-page .service-5 .section-2-title-wrapper,
  .about-page .section-title-2-wrapper,
  .about-page .who-we-are .who-we-are__wrapper,
  .about-page .award-area-2-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(24px, 2.2vw, 36px);
  }

  .site-page-hero__eyebrow,
  .media-owners-hero__eyebrow {
    max-width: 285px;
    padding-top: 0;
    border-right: 0;
  }

  .site-section-heading__index,
  .home-values__header .subtitle-wrapper,
  .tech-partners-page .service-5 .section-2-subtitle {
    width: min(285px, 100%);
  }

  .site-page-hero__description,
  .media-owners-hero__description,
  .tech-partners-page .tech-partners-models__intro,
  .about-page .award-area-2 .award-wrapper-box {
    margin-left: 0;
  }

  .contact-page-view .contact-title .page-title-area-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: start;
  }

  .contact-page-view .contact-title .contact-page-title em,
  .about-hero-title .about-hero-title__accent,
  .about-hero-title .about-hero-title__lead--after {
    margin-left: 0;
  }

  .contact-page-view .contact-title .page-title-area-inner p {
    max-width: 720px;
    margin: 0;
  }

  .tech-partners-page .tech-partners-hero .tech-partners-hero__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .tech-partners-page .tech-partners-hero__copy {
    max-width: 720px;
    margin-bottom: 0;
  }

  .about-page .about-us .title-wrapper {
    margin-top: 0;
  }

  .about-page .who-we-are .who-we-are__content {
    max-width: 900px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-values .service-box-1 {
    transform: none !important;
  }

  .site-service-list .service-2-box .thumb img {
    transition: none;
  }
}

@media only screen and (min-width: 1200px) and (prefers-reduced-motion: no-preference) {
  .home-values .service-box-1 {
    will-change: transform;
  }
}

/* Technology partners: draggable home showcase and ordered inner-page grid. */
.technology-partners-showcase {
  overflow: hidden;
  padding: clamp(76px, 8vw, 128px) 0;
  background: #111;
  color: #fff;
}

.technology-partners-showcase__header {
  max-width: 1080px;
}

.technology-partners-showcase__copy h2 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(48px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.technology-partners-showcase__copy p {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.5;
}

.technology-partners-showcase__viewport {
  margin-top: clamp(48px, 6vw, 84px);
  overflow: hidden;
}

.technology-partners-slider {
  overflow: visible;
  user-select: none;
  touch-action: pan-y;
}

.technology-partners-slider .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear !important;
}

.technology-partners-slider .swiper-slide {
  width: clamp(235px, 19vw, 310px);
  height: auto;
}

.technology-partners-showcase--slider .technology-partners-slider,
.technology-partners-showcase--slider .technology-partners-slider * {
  cursor: grab !important;
}

.technology-partners-showcase--slider .technology-partners-slider:active,
.technology-partners-showcase--slider .technology-partners-slider:active * {
  cursor: grabbing !important;
}

body.has-native-partner-cursor .custom-cursor,
body.has-native-partner-cursor .cb-cursor {
  visibility: hidden;
  opacity: 0 !important;
}

.technology-partners-showcase__card {
  display: flex;
  height: clamp(150px, 12vw, 184px);
  padding: clamp(24px, 2.4vw, 38px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: var(--beehive-surface);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  transition: border-color 350ms ease, background-color 350ms ease, box-shadow 350ms ease;
}

.technology-partners-showcase__card--dark {
  background: #202020;
}

.technology-partners-showcase__card img {
  display: block;
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: 86px;
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(0.35);
  transition: transform 350ms ease, opacity 350ms ease, filter 350ms ease;
}

.technology-partners-showcase__card--azerion img {
  max-height: 126px;
}

.technology-partners-showcase__card--trillboards img {
  max-height: 126px;
}

.technology-partners-showcase__card--cosmo-city-screens img {
  max-height: 112px;
}

.technology-partners-showcase__card--paprika img {
  max-height: 76px;
}

.technology-partners-showcase__card:hover {
  border-color: rgba(255, 201, 40, 0.8);
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.technology-partners-showcase__card--dark:hover {
  background: #292929;
}

.technology-partners-showcase__card:hover img {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.04);
}

.technology-partners-showcase--grid {
  border-block: 1px solid var(--beehive-line);
  background: var(--beehive-surface);
  color: var(--primary);
}

.technology-partners-showcase--grid .technology-partners-showcase__copy h2 {
  color: var(--primary);
}

.technology-partners-showcase--grid .technology-partners-showcase__copy p {
  color: var(--beehive-text-muted);
}

.technology-partners-showcase__grid {
  display: grid;
  margin: clamp(48px, 6vw, 84px) 0 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2.4vw, 38px) 16px;
  list-style: none;
}

.technology-partners-showcase__grid-item {
  min-width: 0;
}

.technology-partners-showcase--grid .technology-partners-showcase__card {
  height: clamp(160px, 14vw, 206px);
  border-color: rgba(17, 17, 17, 0.11);
  background: #fff;
  box-shadow: none;
}

.technology-partners-showcase--grid .technology-partners-showcase__card--dark {
  background: #202020;
}

.technology-partners-showcase--grid .technology-partners-showcase__card:hover {
  border-color: rgba(17, 17, 17, 0.28);
  box-shadow: none;
}

.technology-partners-showcase--grid .technology-partners-showcase__card--dark:hover {
  background: #292929;
}

@media only screen and (max-width: 1199px) {
  .technology-partners-showcase__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 991px) {
  .technology-partners-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .technology-partners-showcase {
    padding: 70px 0;
  }

  .technology-partners-showcase__copy h2 {
    font-size: clamp(40px, 11vw, 52px);
  }

  .technology-partners-showcase__copy p {
    margin-top: 22px;
  }

  .technology-partners-showcase__viewport {
    margin-top: 44px;
  }

  .technology-partners-slider .swiper-slide {
    width: min(74vw, 270px);
  }

  .technology-partners-showcase__card {
    height: 156px;
    padding: 28px;
  }

  .technology-partners-showcase__grid {
    gap: 30px 14px;
  }
}

@media (max-width: 575px) {
  .technology-partners-showcase__grid {
    grid-template-columns: 1fr;
  }

  .technology-partners-showcase--grid .technology-partners-showcase__card {
    height: 176px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .technology-partners-showcase__card,
  .technology-partners-showcase__card img {
    transition: none;
  }
}

/* Report implementation: locale switcher, evidence, inventory, resources, and legal pages. */
.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
}

.locale-switcher a {
  display: inline-flex;
  min-width: 38px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--font_bdogrotesk);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.locale-switcher a.is-active {
  background: var(--beehive-accent);
  color: #111;
}

.locale-switcher--light {
  border-color: rgba(255, 255, 255, 0.24);
}

.locale-switcher--light a {
  color: rgba(255, 255, 255, 0.72);
}

.locale-switcher--light a.is-active {
  color: #111;
}

.locale-switcher--offcanvas {
  width: max-content;
  margin: 26px 0 0;
}

.header-area .header-area__inner {
  gap: clamp(16px, 2vw, 34px);
}

.header-area .header__language {
  margin-left: auto;
}

.header-area-2 .header__navicon {
  gap: 12px;
}

.technology-partners-showcase__grid--single {
  max-width: 420px;
  grid-template-columns: minmax(260px, 420px);
}

.voice-media-mark {
  display: inline-flex;
  width: max-content;
  margin-top: 22px;
  padding: 12px 16px;
  align-items: baseline;
  gap: 8px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-family: var(--font_bdogrotesk);
}

.voice-media-mark strong {
  font-size: 23px;
  letter-spacing: -0.04em;
}

.voice-media-mark span {
  color: #666;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.about-technology-partner {
  padding: clamp(76px, 8vw, 126px) 0;
  border-block: 1px solid var(--beehive-line);
  background: var(--beehive-surface-strong);
}

.about-technology-partner__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 8vw, 130px);
  align-items: center;
}

.about-technology-partner__logo {
  display: flex;
  min-height: 260px;
  padding: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
}

.about-technology-partner__logo img {
  width: auto;
  max-width: 82%;
  max-height: 96px;
}

.about-technology-partner__content .section-subtitle {
  width: max-content;
  height: auto;
  min-height: 30px;
  padding: 7px 14px 7px 25px;
}

.about-technology-partner__content h2,
.evidence-section__header h2,
.screen-format-preview__header h2,
.inventory-section-heading h2,
.resources-hero h1,
.resources-index__title,
.legal-hero h1 {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.about-technology-partner__content h2 {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(44px, 4.5vw, 68px);
  line-height: 0.98;
}

.about-technology-partner__content p {
  max-width: 680px;
  margin-top: 26px;
  color: var(--beehive-text-muted);
  font-size: 19px;
  line-height: 1.55;
}

.creative-studio-showcase {
  position: relative;
  padding: clamp(86px, 9vw, 148px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(224, 164, 61, 0.2), transparent 28%),
    #0d0d0d;
  color: #fff;
}

.creative-studio-showcase::before {
  position: absolute;
  top: -360px;
  right: -280px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(224, 164, 61, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(224, 164, 61, 0.04),
    0 0 0 144px rgba(224, 164, 61, 0.025);
  content: "";
  pointer-events: none;
}

.creative-studio-showcase__header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 48px);
}

.creative-studio-showcase__eyebrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.creative-studio-showcase__eyebrow .section-subtitle {
  width: max-content;
  height: auto;
  min-height: 30px;
  padding: 7px 14px 7px 25px;
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.82);
}

.creative-studio-showcase__eyebrow .section-subtitle::before {
  background: #e0a43d;
}

.creative-studio-showcase__heading h2,
.creative-studio-showcase__tagline,
.creative-studio-service h3,
.creative-studio-value h3 {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  text-wrap: balance;
}

.creative-studio-showcase__heading {
  width: 100%;
}

.creative-studio-showcase__heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.95;
}

.creative-studio-showcase__tagline {
  width: 100%;
  margin-top: clamp(28px, 3vw, 44px);
  color: #e0a43d;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.05;
}

.creative-studio-showcase__intro {
  max-width: 960px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(17px, 1.1vw, 19px);
  line-height: 1.55;
}

.creative-studio-partner {
  position: relative;
  display: grid;
  margin-top: clamp(62px, 7vw, 108px);
  overflow: hidden;
  border-radius: 16px;
  background: #e0a43d;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
}

.creative-studio-partner__logo {
  display: flex;
  min-height: 330px;
  padding: clamp(38px, 5vw, 72px);
  align-items: center;
  justify-content: center;
  background: #171717;
}

.creative-studio-partner__logo img {
  width: min(100%, 460px);
  height: auto;
}

.creative-studio-partner__content {
  display: flex;
  padding: clamp(42px, 6vw, 84px);
  color: #111;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
}

.creative-studio-partner__content span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.creative-studio-partner__content p {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.15;
  text-wrap: balance;
}

.creative-studio-services {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.creative-studio-service {
  display: flex;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  flex-direction: column;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.creative-studio-service:hover {
  border-color: rgba(224, 164, 61, 0.58);
  background: rgba(224, 164, 61, 0.07);
  transform: translateY(-4px);
}

.creative-studio-service h3 {
  max-width: 340px;
  margin-top: 0;
  color: #fff;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.08;
}

.creative-studio-service p {
  max-width: 460px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.5;
}

.creative-studio-value {
  display: grid;
  margin-top: clamp(68px, 7vw, 108px);
  padding-top: clamp(46px, 5vw, 74px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 8vw, 130px);
}

.creative-studio-value__heading > span {
  color: #e0a43d;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.creative-studio-value h3 {
  max-width: 650px;
  margin-top: 28px;
  color: #fff;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.05;
}

.creative-studio-value__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.creative-studio-value__content ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.creative-studio-value__content li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.4;
}

.creative-studio-value__content li::before {
  position: absolute;
  top: 27px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e0a43d;
  content: "";
}

.creative-studio-value__button {
  margin-top: 38px;
  background: #e0a43d;
  color: #111;
}

.creative-studio-showcase h2,
.creative-studio-showcase h3,
.creative-studio-showcase p,
.creative-studio-showcase span,
.creative-studio-showcase li,
.creative-studio-showcase a {
  letter-spacing: normal;
}

.evidence-section {
  padding: clamp(78px, 8vw, 128px) 0;
  background: #111;
  color: #fff;
}

.evidence-section__header,
.inventory-section-heading,
.resources-hero__inner {
  display: grid;
  grid-template-columns: minmax(210px, 285px) minmax(0, 1fr);
  gap: 48px clamp(42px, 6vw, 100px);
  align-items: start;
}

.evidence-section .section-subtitle,
.inventory-section-heading .section-subtitle,
.resources-hero .section-subtitle {
  width: max-content;
  height: auto;
  min-height: 30px;
  padding: 7px 14px 7px 25px;
}

.evidence-section .section-subtitle {
  border-color: rgba(255, 255, 255, 0.48);
  color: rgba(255, 255, 255, 0.78);
}

.evidence-section__header h2 {
  max-width: 950px;
  color: #fff;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.98;
}

.evidence-section__header p {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 19px;
  line-height: 1.55;
}

.campaign-case-grid {
  display: grid;
  margin-top: clamp(48px, 6vw, 86px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.campaign-case-card {
  min-height: 420px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: #191919;
}

.campaign-case-card > span {
  color: var(--beehive-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.campaign-case-card h3 {
  max-width: 560px;
  margin-top: 54px;
  color: #fff;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.campaign-case-card p {
  max-width: 600px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.5;
}

.campaign-case-card ul {
  display: flex;
  margin: 38px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.campaign-case-card li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.screen-format-preview {
  padding: clamp(76px, 8vw, 126px) 0;
  background: var(--beehive-surface);
}

.screen-format-preview__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.screen-format-preview__header h2 {
  max-width: 960px;
  font-size: clamp(46px, 4.7vw, 72px);
  line-height: 0.98;
}

.screen-format-preview__grid {
  display: grid;
  margin-top: clamp(46px, 5vw, 76px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.screen-format-preview figure {
  margin: 0;
}

.screen-format-preview figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.screen-format-preview figcaption {
  margin-top: 16px;
  font-family: var(--font_bdogrotesk);
  font-size: 24px;
}

.screen-format-preview__note {
  max-width: 820px;
  margin-top: 28px;
  color: var(--beehive-text-muted);
  font-size: 15px;
  line-height: 1.5;
}

.contact-privacy-notice {
  display: flex;
  margin-top: 24px;
  align-items: flex-start;
  gap: 12px;
}

.contact-privacy-notice input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: #111;
  cursor: pointer !important;
}

.contact-privacy-notice label {
  max-width: 760px;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.contact-privacy-notice a,
.contact-field-error {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-field-error {
  margin-top: 8px;
  color: #a12727;
  font-size: 14px;
}

.contact-alert--error {
  border-color: rgba(161, 39, 39, 0.25);
  background: #fff0f0;
  color: #7f1d1d;
}

.inventory-hero {
  position: relative;
  padding: clamp(136px, 10vw, 176px) 0 clamp(76px, 8vw, 124px);
  overflow: hidden;
  background: #101010;
  color: #fff;
}

.inventory-hero::before {
  position: absolute;
  top: -35%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 201, 40, 0.09), transparent 64%);
  content: "";
  pointer-events: none;
}

.inventory-hero__inner,
.inventory-stats {
  position: relative;
  z-index: 1;
}

.inventory-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(50px, 7vw, 118px);
  align-items: center;
}

.inventory-hero .section-subtitle {
  width: max-content;
  height: auto;
  min-height: 30px;
  padding: 7px 14px 7px 25px;
  border-color: rgba(255, 255, 255, 0.48);
  color: rgba(255, 255, 255, 0.78);
}

.inventory-hero__content h1 {
  max-width: 850px;
  margin-top: 42px;
  color: #fff;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(54px, 5.35vw, 86px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.inventory-hero__content p {
  max-width: 680px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 20px;
  line-height: 1.5;
}

.inventory-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.28);
}

.inventory-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.inventory-hero__media figcaption {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  padding: 11px 14px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(10px);
}

.inventory-hero__media figcaption strong {
  color: #fff;
  font-size: 14px;
}

.inventory-hero__media figcaption span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.inventory-stats {
  display: grid;
  margin-top: clamp(54px, 7vw, 100px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.inventory-stats__item {
  display: flex;
  flex-direction: column;
}

.inventory-stats__item strong {
  color: var(--beehive-accent);
  font-family: var(--font_ppeditor);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 200;
  line-height: 1;
}

.inventory-stats__item span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.inventory-locations {
  background: var(--beehive-surface);
}

.inventory-section-heading h2 {
  max-width: 980px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.98;
}

.inventory-section-heading p {
  max-width: 780px;
  margin-top: 28px;
  color: var(--beehive-text-muted);
  font-size: 19px;
  line-height: 1.55;
}

.inventory-city-index {
  display: grid;
  margin-top: clamp(48px, 6vw, 82px);
  border-block: 1px solid var(--beehive-line);
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.inventory-city-index a {
  display: flex;
  min-width: 0;
  padding: 18px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-right: 1px solid var(--beehive-line);
  font-size: 14px;
  transition: background-color 250ms ease, color 250ms ease;
}

.inventory-city-index a:last-child {
  border-right: 0;
}

.inventory-city-index a:hover {
  background: var(--beehive-accent);
  color: #111;
}

.inventory-city-index span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inventory-city-index strong {
  color: #777;
  font-size: 12px;
  font-weight: 500;
}

.inventory-city-groups {
  margin-top: clamp(68px, 8vw, 120px);
}

.inventory-city-group {
  display: grid;
  padding: clamp(64px, 7vw, 104px) 0;
  scroll-margin-top: 110px;
  border-top: 1px solid var(--beehive-line);
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
}

.inventory-city-group:first-child {
  padding-top: 0;
  border-top: 0;
}

.inventory-city-group__header h3 {
  margin-top: 0;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.inventory-city-group__header p {
  margin-top: 14px;
  color: #77736b;
  font-size: 14px;
}

.inventory-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.inventory-location-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--beehive-line);
  border-radius: 14px;
  background: #fff;
}

.inventory-location-card:last-child:nth-child(odd) {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
}

.inventory-location-card--upcoming {
  border-color: rgba(255, 201, 40, 0.72);
  background: #fffdf6;
}

.inventory-location-card__media {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #171717;
}

.inventory-location-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.inventory-location-card:last-child:nth-child(odd) .inventory-location-card__media img {
  height: 100%;
  min-height: 390px;
  aspect-ratio: auto;
}

.inventory-location-card:hover .inventory-location-card__media img {
  transform: scale(1.025);
}

.inventory-location-card__placeholder {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 28px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #151515, #292929);
  color: #fff;
}

.inventory-location-card__placeholder::before {
  position: absolute;
  right: -35px;
  bottom: -60px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--beehive-accent);
  content: "";
}

.inventory-location-card__placeholder span,
.inventory-location-card__placeholder strong {
  position: relative;
  z-index: 1;
}

.inventory-location-card__placeholder span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.inventory-location-card__placeholder strong {
  max-width: 80%;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.inventory-location-card__content {
  display: flex;
  min-height: 330px;
  padding: 26px;
  flex: 1;
  flex-direction: column;
}

.inventory-location-card:last-child:nth-child(odd) .inventory-location-card__content {
  min-height: 390px;
  padding: clamp(28px, 3vw, 42px);
}

.inventory-location-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #6f6f6f;
  font-size: 13px;
}

.inventory-location-card__status {
  padding: 5px 9px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  color: #333;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inventory-location-card__status--upcoming {
  border-color: var(--beehive-accent);
  background: var(--beehive-accent);
  color: #111;
}

.inventory-location-card h4 {
  margin-top: 20px;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(30px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.inventory-location-card__facts {
  display: grid;
  margin-top: 26px;
  padding: 20px 0;
  border-block: 1px solid var(--beehive-line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.inventory-location-card__facts--single {
  grid-template-columns: 1fr;
}

.inventory-location-card__facts div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.inventory-location-card__facts dt {
  color: #777;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-location-card__facts dd {
  margin-top: 8px;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.inventory-location-card__formats {
  margin-top: 20px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

.inventory-location-card__note {
  margin-top: auto;
  padding-top: 18px;
  color: #777;
  font-size: 12px;
}

.inventory-data-note {
  position: relative;
  margin: 0 0 0 calc(260px + clamp(40px, 6vw, 96px));
  padding: 24px 0 0 28px;
  border-top: 1px solid var(--beehive-line);
  color: #6a675f;
  font-size: 14px;
  line-height: 1.55;
}

.inventory-data-note::before {
  position: absolute;
  margin-top: 5px;
  margin-left: -28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--beehive-accent);
  content: "";
}

.inventory-formats {
  background: #111;
  color: #fff;
}

.inventory-section-heading--light h2 {
  color: #fff;
}

.inventory-section-heading--light p {
  color: rgba(255, 255, 255, 0.62);
}

.inventory-section-heading--light .section-subtitle {
  border-color: rgba(255, 255, 255, 0.48);
  color: rgba(255, 255, 255, 0.78);
}

.inventory-format-list {
  display: grid;
  margin-top: clamp(56px, 7vw, 96px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 28px;
}

.inventory-format-item {
  min-height: 270px;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.inventory-format-item h3 {
  margin-top: 0;
  color: #fff;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.inventory-format-item p {
  max-width: 310px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.55;
}

.resources-hero {
  padding: clamp(142px, 11vw, 190px) 0 clamp(80px, 8vw, 126px);
  border-bottom: 1px solid var(--beehive-line);
  background: var(--beehive-surface-strong);
}

.resources-hero h1 {
  max-width: 1080px;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.94;
}

.resources-hero p {
  max-width: 720px;
  margin-top: 32px;
  color: var(--beehive-text-muted);
  font-size: 20px;
  line-height: 1.55;
}

.resources-index {
  background: var(--beehive-surface);
}

.resources-index__title {
  font-size: clamp(42px, 4vw, 62px);
}

.resources-card-grid {
  margin-top: 44px;
  border-top: 1px solid rgba(17, 17, 17, 0.2);
}

.resource-card {
  display: grid;
  padding: clamp(38px, 5vw, 72px) 0;
  grid-template-columns: minmax(90px, 0.2fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}

.resource-card__number {
  color: #777;
  font-family: var(--font_ppeditor);
  font-size: 42px;
}

.resource-card__eyebrow {
  color: #6a6a6a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.resource-card h3 {
  max-width: 1000px;
  margin-top: 20px;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.resource-card p {
  max-width: 780px;
  margin-top: 24px;
  color: var(--beehive-text-muted);
  font-size: 18px;
  line-height: 1.55;
}

.resource-card .rr-btn-underline {
  margin-top: 30px;
}

.resource-article-hero {
  padding: clamp(130px, 10vw, 175px) 0 clamp(76px, 8vw, 120px);
  background: #111;
  color: #fff;
}

.resource-article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.resource-article-hero__content {
  max-width: 1160px;
  margin: clamp(54px, 7vw, 100px) auto 0;
}

.resource-article-hero .section-subtitle {
  width: max-content;
  height: auto;
  min-height: 30px;
  padding: 7px 14px 7px 25px;
  border-color: rgba(255, 255, 255, 0.48);
  color: rgba(255, 255, 255, 0.78);
}

.resource-article-hero h1 {
  max-width: 1120px;
  margin-top: 38px;
  color: #fff;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.resource-article-hero p {
  max-width: 820px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 21px;
  line-height: 1.55;
}

.resource-article-hero__meta {
  display: flex;
  margin-top: 42px;
  gap: 28px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.resource-article-body {
  background: var(--beehive-surface);
}

.resource-article-body > .container {
  max-width: 1000px;
}

.resource-article-body section {
  padding: 46px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.resource-article-body section:first-child {
  padding-top: 0;
}

.resource-article-body section > span {
  color: #888;
  font-size: 13px;
}

.resource-article-body h2,
.legal-content h2,
.legal-sources h2 {
  margin-top: 16px;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.resource-article-body p,
.resource-article-body li,
.legal-content p,
.legal-content li {
  color: #444;
  font-size: 19px;
  line-height: 1.7;
}

.resource-article-body p,
.legal-content p {
  margin-top: 22px;
}

.resource-article-body ul,
.legal-content ul {
  margin: 24px 0 0;
  padding-left: 24px;
}

.resource-article-body li + li,
.legal-content li + li {
  margin-top: 10px;
}

.legal-hero {
  padding: clamp(140px, 11vw, 190px) 0 clamp(72px, 7vw, 110px);
  border-bottom: 1px solid var(--beehive-line);
  background: var(--beehive-surface-strong);
}

.legal-hero .container,
.legal-content .container {
  max-width: 1000px;
}

.legal-hero .section-subtitle {
  width: max-content;
  height: auto;
  min-height: 30px;
  padding: 7px 14px 7px 25px;
}

.legal-hero h1 {
  margin-top: 40px;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 0.95;
}

.legal-hero p {
  max-width: 820px;
  margin-top: 30px;
  color: var(--beehive-text-muted);
  font-size: 21px;
  line-height: 1.55;
}

.legal-hero time {
  display: block;
  margin-top: 32px;
  color: #777;
  font-size: 14px;
}

.legal-content {
  background: var(--beehive-surface);
}

.legal-content section {
  padding: 38px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.legal-content section:first-child {
  padding-top: 0;
}

.legal-content h2,
.legal-sources h2 {
  margin-top: 0;
}

.legal-cookie-table-wrapper {
  margin-top: 46px;
  overflow-x: auto;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 10px;
}

.legal-cookie-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.legal-cookie-table th,
.legal-cookie-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  text-align: left;
  vertical-align: top;
}

.legal-cookie-table th {
  background: #111;
  color: #fff;
  font-size: 14px;
}

.legal-cookie-table tr:last-child td {
  border-bottom: 0;
}

.legal-cookie-table code {
  color: #111;
  font-size: 14px;
}

.legal-sources {
  margin-top: 52px;
  padding: 30px;
  border-left: 4px solid var(--beehive-accent);
  background: #fff;
}

.legal-sources h2 {
  font-size: 28px;
}

.legal-sources a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-contact {
  display: flex;
  margin-top: 52px;
  padding: 26px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-block: 1px solid rgba(17, 17, 17, 0.18);
}

.legal-contact span {
  color: #666;
}

.legal-contact a {
  font-family: var(--font_bdogrotesk);
  font-size: 24px;
}

.footer-area .footer-widget-wrapper {
  grid-template-columns: minmax(330px, 1.25fr) repeat(4, minmax(110px, auto));
  gap: 38px clamp(34px, 4vw, 72px);
}

@media only screen and (max-width: 1399px) {
  .header-area .header__language {
    margin-left: 0;
  }

  .inventory-city-index {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .inventory-city-index a:nth-child(4n) {
    border-right: 0;
  }

  .inventory-city-index a:nth-child(-n + 4) {
    border-bottom: 1px solid var(--beehive-line);
  }

  .footer-area .footer-widget-wrapper {
    grid-template-columns: minmax(320px, 1.4fr) repeat(3, minmax(120px, 1fr));
  }
}

@media only screen and (max-width: 1199px) {
  .inventory-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    gap: 46px;
  }

  .inventory-format-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-area .footer-widget-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-area .footer-widget-box.content {
    grid-column: 1 / -1;
  }
}

@media only screen and (max-width: 991px) {
  .about-technology-partner__inner,
  .inventory-hero__inner,
  .creative-studio-partner,
  .creative-studio-value {
    grid-template-columns: 1fr;
  }

  .creative-studio-showcase__eyebrow {
    padding: 0;
    border: 0;
    align-items: flex-start;
  }

  .creative-studio-partner__logo {
    min-height: 260px;
  }

  .creative-studio-services {
    grid-template-columns: 1fr;
  }

  .evidence-section__header,
  .inventory-section-heading,
  .resources-hero__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .campaign-case-grid,
  .screen-format-preview__grid {
    grid-template-columns: 1fr;
  }

  .campaign-case-card {
    min-height: auto;
  }

  .inventory-hero__media {
    max-width: 720px;
  }

  .inventory-city-group {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .inventory-city-group__header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 16px;
  }

  .inventory-city-group__header h3,
  .inventory-city-group__header p {
    margin-top: 0;
  }

  .inventory-data-note {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .header-area-2 .header__navicon .locale-switcher {
    display: none;
  }

  .about-technology-partner__logo {
    min-height: 210px;
    padding: 34px;
  }

  .creative-studio-showcase__header {
    gap: 34px;
  }

  .creative-studio-showcase__heading h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .creative-studio-showcase__tagline {
    margin-top: 34px;
    font-size: clamp(26px, 8.5vw, 36px);
  }

  .creative-studio-partner__logo {
    min-height: 210px;
    padding: 34px 26px;
  }

  .creative-studio-partner__content {
    padding: 34px 26px;
    gap: 42px;
  }

  .screen-format-preview__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .inventory-hero {
    padding-top: 126px;
  }

  .footer-area .footer-widget-wrapper {
    grid-template-columns: 1fr;
  }

  .inventory-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .inventory-stats__item strong {
    font-size: clamp(38px, 11vw, 46px);
  }

  .inventory-stats__item span {
    font-size: 12px;
  }

  .inventory-city-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inventory-city-index a,
  .inventory-city-index a:nth-child(4n) {
    border-right: 1px solid var(--beehive-line);
    border-bottom: 1px solid var(--beehive-line);
  }

  .inventory-city-index a:nth-child(2n) {
    border-right: 0;
  }

  .inventory-city-index a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .inventory-location-grid,
  .inventory-format-list {
    grid-template-columns: 1fr;
  }

  .inventory-location-card:last-child:nth-child(odd) {
    display: flex;
    grid-column: auto;
  }

  .inventory-location-card:last-child:nth-child(odd) .inventory-location-card__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .inventory-location-card__content,
  .inventory-location-card:last-child:nth-child(odd) .inventory-location-card__content {
    min-height: 0;
    padding: 24px;
  }

  .inventory-location-card__note {
    margin-top: 18px;
  }

  .inventory-format-item {
    min-height: 0;
  }

  .resource-card {
    grid-template-columns: 1fr;
  }

  .resource-card__number {
    font-size: 30px;
  }

  .resource-article-hero__meta,
  .legal-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-article-body p,
  .resource-article-body li,
  .legal-content p,
  .legal-content li {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inventory-city-index a,
  .inventory-location-card__media img {
    transition: none;
  }
}
