/* Reports page — Figma node 4172:203 */

.reports-hero.page-hero {
  min-height: calc(100vh - var(--header-h));
  padding-bottom: 48px;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.reports-hero .page-hero__bg {
  top: calc(-1 * var(--header-h) - 13px);
  bottom: 0;
  height: auto;
  min-height: calc(100vh - var(--header-h) + 13px);
  background: var(--bg-light);
}

.reports-hero .page-hero__wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 18px;
  padding-bottom: 32px;
}


.reports-hero__grid {
  display: grid;
  grid-template-columns: 572px 1fr;
  gap: 48px;
  align-items: center;
}

.reports-hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  color: var(--navy);
  margin-bottom: 18px;
}

.reports-hero__title-accent { color: var(--blue-accent); }

.reports-hero__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: var(--navy);
  max-width: 572px;
  margin-bottom: 42px;
}

.reports-hero__visual {
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
}

.reports-hero__visual img {
  display: block;
  width: 635px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Latest Research Reports */
.reports-latest {
  padding-top: 100px;
  padding-bottom: 100px;
}

.reports-latest__title {
  font-size: 45px;
  font-weight: 700;
  line-height: normal;
  color: var(--text);
  margin-bottom: 20px;
}

.reports-latest__desc {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  color: var(--text);
  max-width: 954px;
  margin-bottom: 36px;
}

.report-featured {
  display: grid;
  grid-template-columns: 365px minmax(0, 1fr) 1px 280px;
  align-items: start;
  column-gap: 22px;
  margin: 0 auto 77px;
  max-width: 1199px;
}

.report-featured__media {
  width: 365px;
  height: 253px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

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

.report-featured__main {
  min-width: 0;
  padding-top: 17px;
}

.report-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 3px 15px;
  border-radius: 13px;
  background: #eae9ff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.78px;
  color: var(--purple);
  margin-bottom: 5px;
}

.report-badge--sm {
  min-height: 20px;
  padding: 3px 15px;
  font-size: 9px;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.report-featured__title {
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
  color: var(--text);
  margin-bottom: 8px;
}

.report-featured__text {
  font-size: 15px;
  font-weight: 300;
  line-height: normal;
  color: var(--text);
  max-width: 409px;
  margin-bottom: 18px;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.report-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 300;
  line-height: normal;
  color: var(--text);
}

.report-meta__item img {
  width: 14px;
  height: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.btn--download-lg {
  background: var(--purple);
  color: var(--white);
  min-height: 30.52px;
  padding: 4px 14px;
  font-size: 15px;
  min-width: 156px;
}

.btn--download-sm {
  background: var(--purple);
  color: var(--white);
  min-height: 23px;
  padding: 2px 10px;
  font-size: 10px;
  min-width: 111px;
}

.btn--download-sm img,
.btn--download-lg img {
  width: 14px;
  height: 14px;
}

.report-featured__divider {
  width: 1px;
  min-height: 218px;
  align-self: start;
  margin-top: 17px;
  background: transparent;
}

.report-featured__divider img {
  width: 1px;
  height: 218px;
  object-fit: contain;
}

.report-featured__why {
  padding-top: 19px;
}

.report-featured__why h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: var(--text);
  margin-bottom: 19px;
}

.report-featured__why ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.report-featured__why li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}

.report-featured__why li img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  flex-shrink: 0;
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(2, 582px);
  column-gap: 35px;
  row-gap: 39px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.report-card {
  display: grid;
  grid-template-columns: 246px 1fr;
  align-items: stretch;
  min-height: 184px;
  background: var(--bg-light);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.report-card__media {
  width: 246px;
  height: 184px;
  overflow: hidden;
}

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

.report-card__body {
  padding: 11px 18px 14px 16px;
  display: flex;
  flex-direction: column;
}

.report-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  color: var(--text);
  margin-bottom: 6px;
}

.report-card__text {
  font-size: 10px;
  font-weight: 300;
  line-height: normal;
  color: var(--text);
  max-width: 260px;
  margin-bottom: 10px;
  flex: 1;
}

.report-card .report-meta {
  margin-bottom: 8px;
}

/* Industries — Figma 4172:353 */
.reports-industries {
  padding-bottom: 100px;
}

.reports-industries__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 0.9518;
  color: var(--navy);
  max-width: 997px;
  margin-bottom: 16px;
}

.reports-industries__desc {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  color: var(--text);
  max-width: 878px;
  margin-bottom: 51px;
}

.reports-industries__grid {
  display: grid;
  grid-template-columns: 281px 281px 281px 281px;
  column-gap: 25px;
  row-gap: 20px;
  max-width: 1199px;
  margin-left: auto;
  margin-right: auto;
}

.reports-industry-card {
  position: relative;
  width: 281px;
  height: 334px;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
}

.reports-industry-card--row2 {
  width: 277px;
  height: 329px;
}

.reports-industry-card--bfsi,
.reports-industry-card--education { border-radius: 22px; }

.reports-industry-card--media,
.reports-industry-card--fmcg { border-radius: 18px; }

.reports-industry-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reports-industry-card--ecommerce > img {
  width: 253.34%;
  height: 161.02%;
  left: -82.73%;
  top: -49.36%;
  max-width: none;
}

.reports-industry-card--bfsi > img {
  width: 100%;
  height: 136.62%;
  top: -18.64%;
  max-width: none;
}

.reports-industry-card--education > img {
  object-fit: cover;
}

.reports-industry-card--electronics > img {
  width: 296.92%;
  height: 107.55%;
  left: -122.36%;
  top: -5.7%;
  max-width: none;
}

.reports-industry-card--travel > img {
  width: 209.01%;
  height: 130.62%;
  left: -81.19%;
  top: -13.51%;
  max-width: none;
}

.reports-industry-card--healthcare > img {
  width: 199.81%;
  height: 120.4%;
  left: -63.53%;
  top: -10.33%;
  max-width: none;
}

.reports-industry-card--media > img {
  object-fit: cover;
}

.reports-industry-card--fmcg > img {
  width: 178.2%;
  height: 100%;
  left: -18.43%;
  max-width: none;
}

.reports-industry-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
}

.reports-industry-card__overlay--ecommerce {
  background: linear-gradient(180deg, rgba(0,0,0,0) 20.147%, rgba(0,0,0,0.8) 100%);
}

.reports-industry-card__overlay--bfsi {
  background: linear-gradient(180deg, rgba(0,0,0,0) 44.844%, rgba(0,0,0,0.9) 100%);
}

.reports-industry-card__overlay--education {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
}

.reports-industry-card__overlay--electronics {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
}

.reports-industry-card__overlay--travel {
  background: linear-gradient(180deg, rgba(0,0,0,0) 31.653%, rgba(0,0,0,0.9) 100%);
}

.reports-industry-card__overlay--healthcare {
  background: linear-gradient(180deg, rgba(0,0,0,0) 36.737%, rgba(0,0,0,0.9) 100%);
}

.reports-industry-card__overlay--media {
  background: linear-gradient(180deg, rgba(0,0,0,0) 44.634%, rgba(0,0,0,0.9) 100%);
}

.reports-industry-card__overlay--fmcg {
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.9) 100%);
}

.reports-industry-card__body {
  position: absolute;
  left: 21px;
  right: 18px;
  bottom: 20px;
  color: var(--white);
  z-index: 1;
  transform: translateY(0);
  opacity: 1;
}

.reports-industry-card__body h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 6px;
}

.reports-industry-card--media .reports-industry-card__body h3,
.reports-industry-card--fmcg .reports-industry-card__body h3 {
  font-size: 22px;
}

.reports-industry-card__body p {
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
}

@media (prefers-reduced-motion: reduce) {
  .reports-industry-card__overlay,
  .reports-industry-card__body {
    transition: none;
  }
}

.reports-industries__grid .reports-industry-card:nth-child(n+5) {
  width: 277px;
}

/* Trending */
.reports-trending {
  padding-bottom: 100px;
}

.reports-trending__title {
  font-size: 45px;
  font-weight: 700;
  line-height: normal;
  color: var(--text);
  margin-bottom: 20px;
}

.reports-trending__desc {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  color: var(--text);
  max-width: 1016px;
  margin-bottom: 49px;
}

.reports-trending__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.trending-row {
  display: grid;
  grid-template-columns: 586px 586px;
  column-gap: 26px;
  width: fit-content;
  max-width: 100%;
}

.trending-row--reverse .trending-card { order: 1; }
.trending-row--reverse .trending-media { order: 2; }

.trending-media {
  width: 586px;
  height: 279px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

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

.trending-media--offset img {
  height: 120.04%;
  top: -19.95%;
  position: relative;
}

.trending-card {
  width: 586px;
  height: 279px;
  border-radius: var(--radius-card);
  background: #e4eeff;
  padding: 13px 31px 24px;
  display: flex;
  flex-direction: column;
}

.trending-card__stat {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  color: var(--text);
  margin-bottom: 4px;
}

.trending-card__label {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: var(--text);
  margin-bottom: 42px;
}

.trending-card__title {
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  color: var(--text);
  margin-bottom: auto;
}

.btn--read-report {
  background: var(--purple);
  color: var(--white);
  min-height: 29px;
  padding: 4px 14px;
  font-size: 15px;
  border-radius: 33px;
  min-width: 130px;
  align-self: flex-start;
}

body[data-active-nav="reports"] main .brands {
  padding-bottom: 100px;
}

body[data-active-nav="reports"] main .cta {
  padding-bottom: 100px;
}

body[data-active-nav="reports"] .container {
  padding-left: 150px;
  padding-right: 150px;
}

@media (max-width: 1320px) {
  .reports-hero.page-hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .reports-hero .page-hero__bg {
    bottom: 0;
    height: auto;
    min-height: 648px;
  }

  .reports-hero .page-hero__wrap {
    justify-content: flex-start;
  }

  .reports-hero__grid { grid-template-columns: 1fr; }
  .reports-hero__visual {
    justify-content: center;
    margin-top: 0;
  }
  .reports-hero__visual img {
    width: 100%;
    max-width: 635px;
    height: auto;
  }
  .report-featured {
    grid-template-columns: 1fr;
    row-gap: 24px;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
  .report-featured__media { width: 100%; max-width: 365px; }
  .report-featured__divider { display: none; }
  .reports-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .report-card { max-width: 582px; margin-left: auto; margin-right: auto; }
  .reports-industries__grid {
    grid-template-columns: repeat(2, minmax(260px, 281px));
    justify-content: center;
  }
  .trending-row {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .trending-row--reverse .trending-card,
  .trending-row--reverse .trending-media { order: unset; }
  .trending-media,
  .trending-card {
    width: 100%;
    max-width: 586px;
  }
}

@media (max-width: 640px) {
  .reports-hero__title,
  .reports-latest__title,
  .reports-industries__title,
  .reports-trending__title {
    font-size: 32px;
    line-height: 1.15;
  }
  .report-card {
    grid-template-columns: 1fr;
  }
  .report-card__media {
    width: 100%;
    height: 160px;
  }
  .reports-industries__grid { grid-template-columns: 1fr; }
  .reports-industries__grid .reports-industry-card,
  .reports-industries__grid .reports-industry-card:nth-child(n+5) {
    width: 100%;
  }
}
