﻿:root {
  --ins-ink: #162525;
  --ins-paper: #f3efe7;
  --ins-rust: #a65036;
  --ins-white: #fffdf8;
  --ins-line: rgba(22, 37, 37, 0.17);
}

.page-insights {
  background: var(--ins-white);
  color: var(--ins-ink);
}

.editorial-label {
  color: var(--ins-rust);
  font-size: 0.69rem;
  font-weight: 780;
  text-transform: uppercase;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: var(--ins-rust);
  font-size: 0.76rem;
  font-weight: 760;
}

.editorial-link--light {
  color: #fff;
}

.insights-lead {
  position: relative;
  display: flex;
  min-height: min(680px, calc(100svh - 84px));
  align-items: end;
  overflow: hidden;
  background: var(--ins-ink);
}

.insights-lead > img,
.insights-lead__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.insights-lead > img {
  object-fit: cover;
  object-position: center 46%;
}

.insights-lead__shade {
  background: linear-gradient(90deg, rgba(9, 21, 20, 0.9) 0%, rgba(9, 21, 20, 0.48) 52%, rgba(9, 21, 20, 0.08) 100%);
}

.insights-lead__content {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
  padding: 92px 0 76px;
  color: #fff;
}

.insights-lead__content h1 {
  max-width: 1040px;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(3.35rem, 5.6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.96;
}

.insights-lead__content > p:not(.editorial-label) {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.91rem;
}

.insights-lead__content .editorial-link {
  margin-top: 28px;
}

.insights-categories {
  position: sticky;
  top: 84px;
  z-index: 12;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  border-bottom: 1px solid var(--ins-line);
  background: rgba(255, 253, 248, 0.96);
  scrollbar-width: none;
}

.insights-categories::-webkit-scrollbar {
  display: none;
}

.insights-categories button {
  min-height: 58px;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0 19px;
  background: transparent;
  color: rgba(22, 37, 37, 0.68);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.insights-categories button:hover,
.insights-categories button.is-active {
  border-bottom-color: var(--ins-rust);
  color: var(--ins-rust);
}

.insights-library {
  display: grid;
  width: min(1500px, calc(100% - 64px));
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(60px, 7vw, 110px);
  margin: 0 auto;
  padding: 112px 0 120px;
}

.insights-library__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--ins-line);
}

.insights-library__heading h2,
.insights-closing h2 {
  max-width: 790px;
  margin-top: 13px;
  font-size: clamp(2.7rem, 4.3vw, 5rem);
  font-weight: 400;
}

.insights-library__heading > p {
  color: rgba(22, 37, 37, 0.6);
  font-size: 0.78rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 38px;
  padding-top: 48px;
}

.insight-card[hidden] {
  display: none;
}

.insight-card a {
  display: block;
}

.insight-card figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0 0 25px;
  overflow: hidden;
  background: #e8e1d6;
}

.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.insight-card a:hover img {
  transform: scale(1.025);
}

.insight-card--wide {
  grid-column: 1 / -1;
}

.insight-card--wide a {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
  align-items: center;
}

.insight-card--wide figure {
  margin: 0;
}

.insight-card h3 {
  margin-top: 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.2vw, 2.75rem);
  font-weight: 400;
  line-height: 1.08;
}

.insight-card p:not(.editorial-label) {
  max-width: 540px;
  margin-top: 14px;
  color: rgba(22, 37, 37, 0.6);
  font-size: 0.76rem;
}

.insight-card .editorial-link {
  margin-top: 20px;
}

.insights-empty {
  margin-top: 52px;
  border: 1px solid var(--ins-line);
  padding: 34px;
  color: rgba(22, 37, 37, 0.62);
}

.insights-sidebar {
  position: sticky;
  top: 176px;
  align-self: start;
}

.insights-search label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 760;
}

.insights-search > div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--ins-ink);
}

.insights-search input,
.insights-search button {
  min-width: 0;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: var(--ins-ink);
  font: inherit;
}

.insights-search input {
  outline: 0;
  font-size: 0.78rem;
}

.insights-search button {
  color: var(--ins-rust);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 760;
}

.insights-sidebar__group {
  margin-top: 56px;
  border-top: 1px solid var(--ins-line);
}

.insights-sidebar__group > p {
  padding: 22px 0 10px;
}

.insights-sidebar__group a {
  display: block;
  border-bottom: 1px solid var(--ins-line);
  padding: 17px 0;
}

.insights-sidebar__group strong,
.insights-sidebar__group span {
  display: block;
}

.insights-sidebar__group strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 400;
}

.insights-sidebar__group span {
  margin-top: 5px;
  color: rgba(22, 37, 37, 0.54);
  font-size: 0.67rem;
}

.insights-sidebar__note {
  margin-top: 34px;
  padding: 26px;
  background: var(--ins-paper);
}

.insights-sidebar__note p:last-child {
  margin-top: 12px;
  color: rgba(22, 37, 37, 0.65);
  font-size: 0.72rem;
}

.insights-closing {
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding: 80px max(32px, calc((100% - 1500px) / 2));
  background: var(--ins-paper);
}

.insights-closing > div:first-child {
  max-width: 920px;
}

.insights-closing > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (max-width: 1100px) {
  .insights-library {
    grid-template-columns: 1fr;
  }

  .insights-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    border-top: 1px solid var(--ins-line);
    padding-top: 50px;
  }

  .insights-sidebar__group {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .insights-lead {
    min-height: calc(100svh - 64px);
  }

  .insights-lead__shade {
    background: linear-gradient(0deg, rgba(9, 21, 20, 0.92) 0%, rgba(9, 21, 20, 0.35) 76%, rgba(9, 21, 20, 0.1) 100%);
  }

  .insights-lead__content {
    width: calc(100% - 32px);
    padding: 70px 0 42px;
  }

  .insights-lead__content h1 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
  }

  .insights-categories {
    top: 64px;
    justify-content: flex-start;
  }

  .insights-library {
    width: calc(100% - 32px);
    padding: 75px 0 80px;
  }

  .insights-library__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .insight-card--wide {
    grid-column: auto;
  }

  .insight-card--wide a {
    display: block;
  }

  .insight-card--wide figure {
    margin-bottom: 25px;
  }

  .insight-card h3 {
    font-size: 1.9rem;
  }

  .insights-sidebar {
    grid-template-columns: 1fr;
  }

  .insights-closing {
    display: grid;
    min-height: 400px;
    padding: 64px 16px;
  }
}

.page-insights-blog .insights-blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(40px, 7vw, 120px);
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(100px, 14vh, 160px) 0 70px;
  border-bottom: 1px solid var(--ins-line);
}

.page-insights-blog .insights-blog-hero h1 {
  max-width: 980px;
  margin-top: 14px;
  font-size: clamp(3.4rem, 6vw, 7.2rem);
  font-weight: 400;
  line-height: 0.94;
}

.page-insights-blog .insights-blog-hero p:not(.editorial-label) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(22, 37, 37, 0.62);
}

.page-insights-blog .insights-blog-hero aside {
  align-self: end;
  border-top: 1px solid var(--ins-ink);
  padding-top: 18px;
}

.page-insights-blog .insights-blog-hero aside span {
  display: block;
  margin-bottom: 10px;
  color: var(--ins-rust);
  font-size: 0.7rem;
  font-weight: 780;
  text-transform: uppercase;
}

.page-insights-blog .insights-blog-hero aside a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.16;
}

.page-insights-blog .insights-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.75fr);
  gap: 30px;
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
  padding: 44px 0 80px;
}

.page-insights-blog .insights-feature-card a {
  display: grid;
  min-height: 100%;
  background: var(--ins-paper);
}

.page-insights-blog .insights-feature-card figure {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
}

.page-insights-blog .insights-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-insights-blog .insights-feature-card div {
  padding: clamp(26px, 3vw, 44px);
}

.page-insights-blog .insights-feature-card h2,
.page-insights-blog .insights-feature-card h3 {
  margin-top: 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

.page-insights-blog .insights-feature-card h2 {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
}

.page-insights-blog .insights-feature-card h3 {
  font-size: clamp(1.8rem, 2.2vw, 2.7rem);
}

.page-insights-blog .insights-feature-card p:not(.editorial-label) {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(22, 37, 37, 0.62);
}

.page-insights-blog .insights-library--blog {
  padding-top: 80px;
}

.page-insights-blog .insights-grid--blog .insight-card--wide,
.page-insights-blog .insights-grid--blog .insight-card--wide a {
  grid-column: auto;
  display: block;
}

@media (max-width: 920px) {
  .page-insights-blog .insights-blog-hero,
  .page-insights-blog .insights-feature-row {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }
}
.page-insights-zenpack-ref {
  background: #fffdf8;
}

.page-insights-zenpack-ref .insights-journal-hero {
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(96px, 14vh, 155px) 0 54px;
  border-bottom: 1px solid var(--ins-line);
}

.page-insights-zenpack-ref .insights-journal-hero h1 {
  max-width: 1050px;
  margin-top: 14px;
  font-size: clamp(3.35rem, 6vw, 7.3rem);
  font-weight: 400;
  line-height: 0.94;
}

.page-insights-zenpack-ref .insights-journal-hero > p:not(.editorial-label) {
  max-width: 670px;
  margin-top: 22px;
  color: rgba(22, 37, 37, 0.62);
  font-size: 0.95rem;
}

.page-insights-zenpack-ref .insights-journal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  gap: clamp(52px, 7vw, 116px);
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
  padding: 52px 0 118px;
}

.page-insights-zenpack-ref .insights-featured-post a {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  border-bottom: 1px solid var(--ins-line);
  padding-bottom: 54px;
}

.page-insights-zenpack-ref .insights-featured-post figure {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #e8e1d6;
}

.page-insights-zenpack-ref .insights-featured-post img,
.page-insights-zenpack-ref .insight-row-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.page-insights-zenpack-ref .insights-featured-post a:hover img,
.page-insights-zenpack-ref .insight-row-card a:hover img {
  transform: scale(1.025);
}

.page-insights-zenpack-ref .insights-featured-post h2 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 4.1vw, 4.8rem);
  font-weight: 400;
  line-height: 1.02;
}

.page-insights-zenpack-ref .insights-featured-post p:not(.editorial-label),
.page-insights-zenpack-ref .insight-row-card p:not(.editorial-label) {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(22, 37, 37, 0.62);
  font-size: 0.82rem;
}

.page-insights-zenpack-ref .insights-topic-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 34px 0;
  border-bottom: 1px solid var(--ins-line);
}

.page-insights-zenpack-ref .insights-topic-bar button {
  min-height: 42px;
  border: 1px solid var(--ins-line);
  padding: 0 16px;
  background: transparent;
  color: rgba(22, 37, 37, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 720;
}

.page-insights-zenpack-ref .insights-topic-bar button:hover,
.page-insights-zenpack-ref .insights-topic-bar button.is-active {
  border-color: var(--ins-rust);
  background: var(--ins-rust);
  color: #fff;
}

.page-insights-zenpack-ref .insights-post-list {
  display: grid;
}

.page-insights-zenpack-ref .insight-row-card[hidden] {
  display: none;
}

.page-insights-zenpack-ref .insight-row-card a {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--ins-line);
  padding: 34px 0;
}

.page-insights-zenpack-ref .insight-row-card figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #e8e1d6;
}

.page-insights-zenpack-ref .insight-row-card h3 {
  max-width: 690px;
  margin-top: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.08;
}

.page-insights-zenpack-ref .insight-row-card .editorial-link {
  margin-top: 16px;
}

.page-insights-zenpack-ref .insights-journal-sidebar {
  position: sticky;
  top: 128px;
  align-self: start;
}

.page-insights-zenpack-ref .insights-about-card,
.page-insights-zenpack-ref .insights-newsletter-card {
  background: var(--ins-paper);
  padding: 28px;
}

.page-insights-zenpack-ref .insights-about-card p:last-child {
  margin-top: 14px;
  color: rgba(22, 37, 37, 0.64);
  font-size: 0.82rem;
}

.page-insights-zenpack-ref .insights-search--journal {
  margin-top: 32px;
}

.page-insights-zenpack-ref .insights-side-list {
  margin-top: 36px;
  border-top: 1px solid var(--ins-line);
}

.page-insights-zenpack-ref .insights-side-list > p {
  padding: 22px 0 4px;
}

.page-insights-zenpack-ref .insights-side-list a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--ins-line);
  padding: 18px 0;
}

.page-insights-zenpack-ref .insights-side-list span {
  color: var(--ins-rust);
  font-size: 0.72rem;
  font-weight: 760;
}

.page-insights-zenpack-ref .insights-side-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 400;
}

.page-insights-zenpack-ref .insights-newsletter-card {
  margin-top: 36px;
  background: var(--ins-ink);
  color: #fff;
}

.page-insights-zenpack-ref .insights-newsletter-card h2 {
  margin: 12px 0 24px;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.08;
}

@media (max-width: 1050px) {
  .page-insights-zenpack-ref .insights-journal-layout,
  .page-insights-zenpack-ref .insights-featured-post a {
    grid-template-columns: 1fr;
  }

  .page-insights-zenpack-ref .insights-journal-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .page-insights-zenpack-ref .insights-search--journal,
  .page-insights-zenpack-ref .insights-side-list,
  .page-insights-zenpack-ref .insights-newsletter-card {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .page-insights-zenpack-ref .insights-journal-hero,
  .page-insights-zenpack-ref .insights-journal-layout {
    width: calc(100% - 32px);
  }

  .page-insights-zenpack-ref .insights-journal-hero h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .page-insights-zenpack-ref .insight-row-card a {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-insights-zenpack-ref .insights-journal-sidebar {
    grid-template-columns: 1fr;
  }
}
/* Buyer guide image refinement */
.insight-cover {
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(18, 33, 32, 0.08);
}

.insight-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(8, 20, 19, 0.14) 100%);
}

.insight-card--wide .insight-cover {
  aspect-ratio: 1.18 / 1;
}

.insight-card:not(.insight-card--wide) .insight-cover {
  aspect-ratio: 4 / 3;
}

.insight-cover img {
  display: block;
  object-position: center;
}

.insight-cover--structure img { object-position: center 56%; }
.insight-cover--foldable img { object-position: center 48%; }
.insight-cover--factory img { object-position: center 45%; }
.insight-cover--detail img { object-position: center 52%; }
.insight-cover--wine img { object-position: center 50%; }
.insight-cover--finish img { object-position: center 48%; }

@media (max-width: 760px) {
  .insight-card--wide .insight-cover,
  .insight-card:not(.insight-card--wide) .insight-cover {
    aspect-ratio: 4 / 3;
  }
}
