:root {
  --ink: #26170f;
  --brown: #522509;
  --brown-2: #734018;
  --paper: #f7f1e7;
  --card: #fffdf8;
  --line: #d9cdbd;
  --muted: #756b61;
  --accent: #b84e32;
  --green: #3f6e58;
  --gold: #c58b36;
  --shadow: 0 16px 40px rgba(68, 43, 23, 0.08);
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  padding: 24px 0;
  border-bottom: 1px solid rgba(82, 37, 9, 0.12);
  background: rgba(247, 241, 231, 0.94);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand img {
  width: 142px;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  align-items: center;
  font-size: 14px;
}
.nav-links a {
  color: #4a4038;
}
.nav-links a:hover {
  color: var(--brown);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s ease;
  background: transparent;
}
.btn:hover {
  transform: translateY(-1px);
  background: var(--brown);
  color: white;
}
.btn.primary {
  background: var(--brown);
  color: #fff;
}
.btn.primary:hover {
  background: #3d1905;
}
.hero {
  padding: 72px 0 30px;
}
.kicker {
  font-family: Georgia, serif;
  font-size: 16px;
  color: var(--brown);
  margin-bottom: 14px;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(56px, 8.8vw, 124px);
  max-width: 1040px;
}
.hero p {
  font-size: 20px;
  max-width: 760px;
  color: #5f554c;
  margin: 26px 0 30px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.meta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: #7d7268;
  font-size: 13px;
}
.meta-row span:before {
  content: "•";
  margin-right: 8px;
  color: var(--accent);
}
.meta-row span:first-child:before {
  display: none;
}
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding: 34px 0 72px;
}
.tile {
  background: var(--card);
  border: 1px solid rgba(82, 37, 9, 0.14);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 210px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.tile:hover {
  border-color: rgba(82, 37, 9, 0.28);
}
.tile.span-7 {
  grid-column: span 7;
}
.tile.span-5 {
  grid-column: span 5;
}
.tile.span-4 {
  grid-column: span 4;
}
.tile.span-6 {
  grid-column: span 6;
}
.tile.span-8 {
  grid-column: span 8;
}
.tile.span-12 {
  grid-column: span 12;
}
.tile.dark {
  background: var(--brown);
  color: #fff;
}
.tile.red {
  background: #9f3f2d;
  color: #fff;
}
.tile.green {
  background: #315846;
  color: #fff;
}
.tile.paper {
  background: #efe6d8;
}
.tile.flat {
  box-shadow: none;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 14px;
}
.tile.dark .eyebrow,
.tile.red .eyebrow,
.tile.green .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
.tile h2 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 500;
}
.tile h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.tile p {
  color: #6c625a;
  margin: 14px 0 0;
  max-width: 64ch;
}
.tile.dark p,
.tile.red p,
.tile.green p {
  color: rgba(255, 255, 255, 0.82);
}
.stat {
  font-family: Georgia, serif;
  font-size: clamp(58px, 7vw, 94px);
  line-height: 0.9;
  color: var(--brown);
  margin-bottom: 12px;
}
.tile.dark .stat,
.tile.red .stat,
.tile.green .stat {
  color: #fff;
}
.stat-label {
  font-size: 14px;
  color: #6d6259;
}
.tile.dark .stat-label,
.tile.red .stat-label,
.tile.green .stat-label {
  color: rgba(255, 255, 255, 0.72);
}
.fact-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(82, 37, 9, 0.14);
  padding: 14px 0;
  font-size: 14px;
}
.tile.dark .fact-line,
.tile.red .fact-line,
.tile.green .fact-line {
  border-color: rgba(255, 255, 255, 0.18);
}
.fact-line strong {
  font-size: 20px;
}
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 96px;
  margin-top: 22px;
  border-bottom: 1px solid rgba(82, 37, 9, 0.18);
  padding: 0 4px 0;
}
.mini-bars i {
  display: block;
  flex: 1;
  background: var(--brown);
  border-radius: 5px 5px 0 0;
  opacity: 0.88;
}
.mini-bars i:nth-child(2) {
  background: var(--accent);
}
.mini-bars i:nth-child(3) {
  background: var(--gold);
}
.mini-bars i:nth-child(4) {
  background: var(--green);
}
.research-list {
  display: grid;
  gap: 0;
  margin-top: 8px;
}
.research-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 19px 0;
  border-top: 1px solid rgba(82, 37, 9, 0.14);
}
.research-row:first-child {
  border-top: none;
}
.research-no {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--accent);
  font-size: 12px;
  padding-top: 5px;
}
.research-title {
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.1;
}
.research-desc {
  font-size: 14px;
  color: #756b61;
  margin-top: 6px;
}
.research-arrow {
  font-size: 24px;
  color: var(--brown);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.case-card {
  padding: 18px;
  border: 1px solid rgba(82, 37, 9, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}
.case-card h4 {
  font-family: Georgia, serif;
  font-size: 24px;
  margin: 0 0 12px;
}
.case-card .metric {
  font-size: 13px;
  color: #766b62;
}
.case-card .metric strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 34px;
  color: var(--brown);
}
.method {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.method div {
  padding-top: 18px;
  border-top: 1px solid rgba(82, 37, 9, 0.16);
}
.method b {
  display: block;
  font-family: Georgia, serif;
  font-size: 23px;
  margin-bottom: 7px;
}
.method span {
  font-size: 13px;
  color: #756b61;
}
.section-title {
  padding: 20px 0 14px;
}
.section-title h2 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 500;
}
.section-title p {
  max-width: 760px;
  color: #6c625a;
  font-size: 18px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-bottom: 76px;
}
.post-card {
  background: var(--card);
  border: 1px solid rgba(82, 37, 9, 0.14);
  border-radius: 18px;
  padding: 24px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.post-card .tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 800;
}
.post-card h3 {
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  margin-top: 12px;
}
.post-card p {
  color: #72675e;
  font-size: 14px;
}
.post-card .read {
  margin-top: auto;
  padding-top: 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--brown);
}
.cta {
  padding: 58px 0;
}
.cta-box {
  background: var(--brown);
  color: white;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}
.cta-box h2 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 500;
  max-width: 760px;
}
.cta-box p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 630px;
  font-size: 17px;
}
.cta-box .btn {
  border-color: #fff;
  color: #fff;
}
.cta-box .btn.primary {
  background: #fff;
  color: var(--brown);
}
.footer {
  border-top: 1px solid rgba(82, 37, 9, 0.12);
  padding: 40px 0 34px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 28px;
  align-items: end;
}
.footer-mark img {
  width: 64px;
}
.footer p {
  font-size: 13px;
  color: #7a6f65;
  max-width: 520px;
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}
.article-hero {
  padding: 72px 0 30px;
}
.article-hero h1 {
  font-size: clamp(50px, 7vw, 96px);
  max-width: 980px;
}
.article-hero .abstract {
  font-size: 21px;
  max-width: 780px;
  color: #655b52;
  margin-top: 26px;
}
.article-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px) 220px;
  gap: 36px;
  padding: 30px 0 80px;
}
.toc,
.side-note {
  position: sticky;
  top: 110px;
  align-self: start;
  border-top: 1px solid rgba(82, 37, 9, 0.18);
  padding-top: 14px;
  font-size: 13px;
}
.toc a {
  display: block;
  padding: 7px 0;
  color: #70655c;
}
.article-body {
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.7;
}
.article-body h2 {
  font-family: Inter, sans-serif;
  font-size: 34px;
  margin: 48px 0 16px;
}
.article-body h3 {
  font-family: Inter, sans-serif;
  font-size: 23px;
  margin: 34px 0 12px;
}
.article-body .placeholder {
  background: #eee4d4;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #635950;
}
.article-body ul {
  padding-left: 22px;
}
.related {
  margin-top: 50px;
  border-top: 1px solid rgba(82, 37, 9, 0.18);
  padding-top: 24px;
  font-family: Inter, sans-serif;
}
.related a {
  display: block;
  padding: 9px 0;
  color: var(--brown);
  font-weight: 700;
}
@media (max-width: 900px) {
  .nav-links a:not(.btn) {
    display: none;
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .tile.span-7,
  .tile.span-5,
  .tile.span-4,
  .tile.span-6,
  .tile.span-8,
  .tile.span-12 {
    grid-column: span 1;
  }
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .article-shell {
    grid-template-columns: 1fr;
  }
  .toc,
  .side-note {
    position: static;
  }
  .footer-inner {
    grid-template-columns: 72px 1fr;
  }
  .footer-links {
    grid-column: 1/-1;
  }
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }
  .hero {
    padding-top: 44px;
  }
  .hero p {
    font-size: 17px;
  }
  .case-grid,
  .method {
    grid-template-columns: 1fr;
  }
  .tile {
    padding: 20px;
  }
  .site-header {
    padding: 15px 0;
  }
  .brand img {
    width: 120px;
  }
  .cta-box {
    padding: 28px;
  }
  .research-row {
    grid-template-columns: 38px 1fr;
  }
  .research-arrow {
    display: none;
  }
}

/* Research article enhancements */
.research-answer {
  background: #fffaf2;
  border: 1px solid rgba(82, 37, 9, 0.18);
  border-left: 5px solid var(--brown);
  padding: 22px 24px;
  margin: 0 0 30px;
  font-family: Inter, sans-serif;
}
.research-answer span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.research-answer p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #463a31;
}
.pullquote {
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.28;
  color: var(--brown);
  margin: 34px 0;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--gold);
}
.source-box {
  margin-top: 52px;
  padding: 26px;
  background: #efe6d8;
  border-radius: 18px;
  font-family: Inter, sans-serif;
}
.source-box h2 {
  margin-top: 0;
}
.source-box h3 {
  font-size: 16px;
  margin-top: 24px;
}
.source-list {
  padding-left: 18px;
}
.source-list li {
  margin: 9px 0;
}
.source-list a {
  text-decoration: underline;
  text-decoration-color: rgba(82, 37, 9, 0.3);
  text-underline-offset: 3px;
}
.faq-answer strong {
  font-family: Inter, sans-serif;
  color: var(--brown);
}
.side-note a {
  display: block;
  margin-top: 12px;
  color: var(--brown);
  font-weight: 700;
}
.article-body p a {
  text-decoration: underline;
}
.article-body p {
  margin: 0 0 22px;
}
.toc strong {
  display: block;
  margin-bottom: 8px;
}
.article-body h2 {
  scroll-margin-top: 120px;
}
.article-body h3 {
  scroll-margin-top: 120px;
}

/* Editorial photography */
.post-card {
  padding: 0;
  overflow: hidden;
}
.post-card .tag,
.post-card h3,
.post-card p,
.post-card .read {
  margin-left: 24px;
  margin-right: 24px;
}
.post-card .tag {
  margin-top: 20px;
}
.post-card .read {
  margin-bottom: 24px;
}
.post-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(82, 37, 9, 0.12);
  transition: transform 0.35s ease;
}
.post-card:hover .post-image {
  transform: scale(1.015);
}
.article-image {
  margin: 34px 0 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(82, 37, 9, 0.14);
  box-shadow: var(--shadow);
  background: #e9dfd0;
}
.article-image img {
  width: 100%;
  height: clamp(320px, 48vw, 620px);
  object-fit: cover;
}
@media (max-width: 560px) {
  .post-image {
    height: 190px;
  }
  .article-image {
    border-radius: 16px;
  }
  .article-image img {
    height: 280px;
  }
}

/* Homepage editorial photography */
.hero-editorial {
  padding-bottom: 22px;
}
.hero-photo {
  position: relative;
  margin-top: 42px;
  border-radius: 30px;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(82, 37, 9, 0.14);
  box-shadow: var(--shadow);
  background: #e8dfd2;
}
.hero-photo img {
  width: 100%;
  height: clamp(460px, 52vw, 690px);
  object-fit: cover;
  display: block;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(35, 20, 10, 0.22));
  pointer-events: none;
}
.hero-photo-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  width: min(360px, calc(100% - 52px));
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(82, 37, 9, 0.14);
  box-shadow: 0 14px 40px rgba(82, 37, 9, 0.14);
}
.hero-photo-note span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 7px;
}
.hero-photo-note strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1.05;
  color: var(--brown);
  font-weight: 500;
}
.hero-photo-note small {
  display: block;
  color: #756a60;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 8px;
}
.homepage-bento {
  padding-top: 20px;
  grid-auto-flow: dense;
  align-items: stretch;
}
.photo-tile {
  padding: 0;
}
.photo-tile > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}
.photo-tile-copy {
  padding: 25px 26px 28px;
}
.photo-tile-copy .read {
  display: inline-block;
  margin-top: 18px;
  color: var(--brown);
  font-weight: 700;
  font-size: 14px;
}
.light-link {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.research-image-band {
  padding: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 420px;
}
.research-image-band > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.research-image-band-copy {
  padding: 34px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.research-image-band-copy h3 {
  font-size: clamp(34px, 4vw, 54px);
}
.research-image-band-copy p {
  font-size: 16px;
  line-height: 1.65;
}
.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.topic-chips span {
  border: 1px solid rgba(82, 37, 9, 0.16);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
  background: #fffaf4;
  color: var(--brown);
}
.photo-note-tile {
  padding: 0;
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 330px;
}
.photo-note-tile img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}
.photo-note-tile > div {
  padding: 26px;
}
.photo-note-tile .read {
  display: inline-block;
  margin-top: 18px;
  color: var(--brown);
  font-weight: 700;
  font-size: 14px;
}
.question-metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(82, 37, 9, 0.14);
  margin-top: 6px;
}
.question-metric:first-of-type {
  margin-top: 24px;
}
.question-metric span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #81756b;
}
.question-metric strong {
  font-family: Georgia, serif;
  font-size: 26px;
  color: var(--brown);
  font-weight: 500;
}
.homepage-blog-grid .post-card {
  min-height: 500px;
}
.homepage-blog-grid .post-image {
  height: 245px;
}
.research-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 86px;
  gap: 16px;
  padding-bottom: 84px;
}
.research-mosaic .post-card {
  min-height: 0;
  height: 100%;
}
.research-mosaic .mosaic-wide {
  grid-column: span 8;
  grid-row: span 6;
}
.research-mosaic .mosaic-square {
  grid-column: span 4;
  grid-row: span 6;
}
.research-mosaic .mosaic-tall {
  grid-column: span 4;
  grid-row: span 7;
}
.research-mosaic .mosaic-landscape {
  grid-column: span 8;
  grid-row: span 5;
}
.research-mosaic .mosaic-small {
  grid-column: span 4;
  grid-row: span 3;
}
.research-mosaic .mosaic-wide .post-image,
.research-mosaic .mosaic-landscape .post-image {
  height: 240px;
}
.research-mosaic .mosaic-square .post-image {
  height: 210px;
}
.research-mosaic .mosaic-tall .post-image {
  height: 300px;
}
.insight-tile {
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.insight-tile span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.insight-tile strong {
  display: block;
  margin-top: 13px;
  font-family: Georgia, serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 500;
  line-height: 0.95;
}
.insight-tile p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.5;
}
.insight-tile a {
  margin-top: auto;
  padding-top: 18px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
}
.insight-orange {
  background: #f4a62a;
  color: #2d1608;
}
.insight-dark {
  background: #171717;
  color: #fff;
}
.insight-green {
  background: #315846;
  color: #fff;
}
@media (max-width: 900px) {
  .research-image-band {
    grid-template-columns: 1fr;
  }
  .research-image-band > img {
    min-height: 300px;
    height: 360px;
  }
  .photo-note-tile {
    grid-template-columns: 1fr;
  }
  .photo-note-tile img {
    min-height: 0;
    height: 320px;
  }
  .homepage-blog-grid .post-card {
    min-height: 0;
  }
  .research-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .research-mosaic .post-card,
  .research-mosaic .insight-tile {
    grid-column: span 1;
    grid-row: auto;
    height: auto;
  }
  .research-mosaic .mosaic-wide,
  .research-mosaic .mosaic-landscape {
    grid-column: 1 / -1;
  }
  .insight-tile {
    min-height: 260px;
  }
}
@media (max-width: 560px) {
  .hero-photo {
    margin-top: 28px;
    border-radius: 20px;
    min-height: 0;
  }
  .hero-photo img {
    height: 360px;
  }
  .hero-photo-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 16px;
  }
  .hero-photo-note strong {
    font-size: 22px;
  }
  .research-image-band > img {
    height: 280px;
  }
  .research-image-band-copy {
    padding: 24px;
  }
  .photo-note-tile img {
    height: 260px;
  }
  .homepage-blog-grid .post-image {
    height: 210px;
  }
  .research-mosaic {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 64px;
  }
  .research-mosaic .post-card,
  .research-mosaic .insight-tile,
  .research-mosaic .mosaic-wide,
  .research-mosaic .mosaic-square,
  .research-mosaic .mosaic-tall,
  .research-mosaic .mosaic-landscape,
  .research-mosaic .mosaic-small {
    grid-column: 1;
    grid-row: auto;
  }
  .research-mosaic .post-image,
  .research-mosaic .mosaic-wide .post-image,
  .research-mosaic .mosaic-square .post-image,
  .research-mosaic .mosaic-tall .post-image,
  .research-mosaic .mosaic-landscape .post-image {
    height: 220px;
  }
}
