/* ===== Industry Insights Page — Figma 25:9565 ===== */

.page-insights {
  background: #fff;
}

.ins-main {
  padding-top: 0;
}

/* Hero Banner */
.ins-hero {
  position: relative;
  height: min(618px, calc(100vh - 80px));
  margin-top: 80px;
  overflow: hidden;
  color: #fff;
}

.ins-hero__bg {
  position: absolute;
  inset: 0;
}

.ins-hero__bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  max-width: none;
  object-fit: cover;
  animation: heroZoom 14s ease-out forwards;
}

.ins-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.ins-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1300px;
  padding-top: 20px;
  padding-bottom: 40px;
}

.ins-hero__content .p-breadcrumb {
  position: absolute;
  top: 11px;
  left: 20px;
  right: 20px;
  margin-bottom: 0;
}

.ins-hero__content .p-breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

.ins-hero__eyebrow {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 16px;
}

.ins-hero__title {
  font-family: var(--font-inter);
  font-size: 56px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: -1.12px;
  color: #fff;
  margin: 0 0 24px;
  max-width: 900px;
}

.ins-hero__desc {
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 768px;
  margin: 0;
}

/* Filter Bar */
.ins-filter {
  background: #fff;
}

.ins-filter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 25px;
  border-bottom: 1px solid #c1c7d0;
}

.ins-tabs {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ins-tab {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 20px;
  color: #41474f;
  padding: 9px 17px;
  border: 1px solid #c1c7d0;
  border-radius: 4px;
  background: #faf9fb;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

a.ins-tab {
  color: #41474f;
}

.ins-empty {
  margin: 24px 0;
  font-family: var(--font-inter);
  font-size: 15px;
  color: #6b7280;
}

.ins-tab:hover {
  color: var(--green);
  border-color: rgba(17, 168, 78, 0.45);
}

.ins-tab.is-active,
a.ins-tab.is-active {
  font-weight: 700;
  color: var(--green);
  background: #e8e8ea;
  border-color: #c1c7d0;
}

.ins-filter__dropdown {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.ins-filter__label {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 20px;
  color: #41474f;
  white-space: nowrap;
}

.ins-select {
  position: relative;
  min-width: 148px;
}

.ins-select select {
  width: 100%;
  height: 40px;
  appearance: none;
  border: 1px solid #c1c7d0;
  border-radius: 4px;
  background: #f4f3f5;
  padding: 0 36px 0 17px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  color: #41474f;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ins-select select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(17, 168, 78, 0.12);
}

.ins-select img {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 5.55px;
  pointer-events: none;
}

/* Article List */
.ins-list {
  padding: 72px 0 96px;
  background: #fff;
}

.ins-list.is-hidden {
  display: none;
}

.ins-articles {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.ins-article {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  text-decoration: none;
  color: inherit;
}

.ins-article:hover .ins-article__title {
  color: var(--green);
}

.ins-article__media {
  flex: 0 0 480px;
  width: 480px;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
  background: #eff3ff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ins-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ins-article:hover .ins-article__media img {
  transform: scale(1.03);
}

.ins-article__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}

.ins-article__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.ins-article__tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 17px;
  border: 1px solid #bec9c1;
  border-radius: 4px;
  background: #fff;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
  line-height: 18px;
}

.ins-article__date {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #3f4943;
  line-height: 21px;
}

.ins-article__title {
  font-family: var(--font-inter);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  color: #333;
  margin: 0;
  transition: color 0.25s ease;
}

/* Pagination */
.ins-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 72px;
}

.ins-pagination__arrow,
.ins-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  border: 1px solid #c1c7d0;
  border-radius: 2px;
  background: #fff;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  color: #41474f;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ins-pagination__arrow:hover,
.ins-pagination__page:hover {
  border-color: var(--green);
  color: var(--green);
}

.ins-pagination__page.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 700;
}

.ins-pagination__page.is-active:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

a.ins-pagination__arrow,
a.ins-pagination__page {
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.ins-pagination__arrow.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.ins-pagination__arrow img {
  width: 7.4px;
  height: 12px;
}

.ins-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 400;
  color: #41474f;
  opacity: 0.6;
  user-select: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .ins-article__media {
    width: 380px;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .ins-article__title {
    font-size: 28px;
    line-height: 36px;
  }

  .ins-hero__title {
    font-size: 48px;
    line-height: 56px;
  }
}

@media (max-width: 900px) {
  .ins-filter__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .ins-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  .ins-filter__dropdown {
    width: 100%;
  }

  .ins-select {
    flex: 1;
    min-width: 0;
  }

  .ins-article {
    flex-direction: column;
    gap: 20px;
  }

  .ins-article__media {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .ins-article__body {
    padding-top: 0;
  }

  .ins-article__title {
    font-size: 24px;
    line-height: 32px;
  }

  .ins-hero {
    height: auto;
    min-height: 480px;
  }

  .ins-hero__title {
    font-size: 36px;
    line-height: 44px;
  }

  .ins-hero__desc {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 600px) {
  .ins-hero {
    min-height: 420px;
  }

  .ins-hero__content .p-breadcrumb {
    top: 8px;
  }

  .ins-hero__title {
    font-size: 32px;
    line-height: 40px;
  }

  .ins-list {
    padding: 48px 0 72px;
  }

  .ins-articles {
    gap: 36px;
  }

  .ins-article__media {
    border-radius: 12px;
  }

  .ins-article__title {
    font-size: 22px;
    line-height: 30px;
  }

  .ins-pagination {
    margin-top: 48px;
    gap: 6px;
    flex-wrap: wrap;
  }

  .ins-pagination__arrow,
  .ins-pagination__page,
  .ins-pagination__ellipsis {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 13px;
  }
}
