:root {
  --leika-red: #b7161d;
  --leika-red-dark: #991219;
  --leika-text: #171717;
  --leika-muted: #6f6f6f;
  --leika-line: #ececec;
  --leika-panel: #f7f7f7;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: #fff;
  color: var(--leika-text);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

a,
a:hover {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 1000;
  flex: 0 0 auto;
  background: #fff;
}

.topbar {
  height: 34px;
  background: var(--leika-red);
  color: #fff;
  font-size: 11px;
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-contact,
.topbar-social {
  display: flex;
  align-items: center;
}

.topbar-contact {
  gap: 16px;
}

.topbar-contact a,
.topbar-social a {
  color: #fff;
  text-decoration: none;
}

.topbar-contact i {
  width: 16px;
  margin-right: 5px;
  text-align: center;
}

.topbar-divider {
  width: 1px;
  height: 18px;
  margin: 0 18px;
  background: rgba(255, 255, 255, 0.75);
}

.topbar-social {
  gap: 10px;
}

.topbar-social a {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 10px;
}

.main-nav {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--leika-line);
}

.nav-inner {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 315px;
  display: block;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-block;
  padding: 43px 0 39px;
  color: #202020;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--leika-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--leika-red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--leika-red);
  cursor: pointer;
  font-size: 22px;
}

.mobile-menu {
  display: none;
  padding: 8px 24px 18px;
  border-top: 1px solid var(--leika-line);
  background: #fff;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--leika-line);
  color: #222;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu a.active {
  color: var(--leika-red);
}

.mobile-menu.is-open {
  display: block;
}

.home-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url("../upload/home-hero-library.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.26);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.home-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
}

.section {
  padding: 64px 0;
}

.section-heading {
  margin-bottom: 38px;
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  margin-bottom: 10px;
  color: #080808;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--leika-muted);
  font-size: 13px;
}

.overview-section {
  padding-top: 76px;
}

.overview-grid {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
}

.overview-image {
  height: 330px;
  overflow: hidden;
  border-radius: 6px;
}

.overview-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.overview-copy {
  min-height: 330px;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--leika-panel);
}

.overview-copy p {
  margin-bottom: 28px;
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.85;
}

.button {
  min-width: 120px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-red {
  background: var(--leika-red);
  color: #fff;
}

.button-red:hover {
  background: var(--leika-red-dark);
  color: #fff;
}

.button-light {
  background: #fff;
  color: #222;
}

.button-light:hover {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.people-section {
  padding-top: 36px;
}

.people-layout {
  max-width: 980px;
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  gap: 82px;
  align-items: center;
}

.people-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.people-photo {
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
}

.people-photo-round {
  border-radius: 50%;
}

.people-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.people-photo img.is-yudi {
  object-position: center 20%;
}

.people-photo:hover img {
  transform: scale(1.03);
}

.people-copy h2,
.practice-intro h2 {
  margin-bottom: 14px;
  color: #0b0b0b;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.15;
}

.people-copy p {
  margin-bottom: 28px;
  color: var(--leika-muted);
  font-size: 13px;
  line-height: 1.9;
}

.ask-section {
  padding-top: 34px;
  padding-bottom: 46px;
}

.ask-panel {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  background: var(--leika-red);
  color: #fff;
}

.ask-panel::before,
.ask-panel::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 360px;
  top: -50px;
  background: rgba(255, 255, 255, 0.035);
  transform: rotate(28deg);
}

.ask-panel::before {
  left: 90px;
}

.ask-panel::after {
  right: 90px;
}

.ask-panel h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: #fff;
  font-size: 36px;
  font-weight: 400;
}

.ask-panel .button {
  position: relative;
  z-index: 1;
}

.practice-section {
  padding-top: 28px;
}

.practice-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 96px;
  align-items: center;
}

.practice-intro > p {
  margin-bottom: 16px;
  color: var(--leika-muted);
  font-size: 12px;
}

.practice-image {
  height: 270px;
  margin-top: 32px;
  overflow: hidden;
  border-radius: 6px 6px 54px 6px;
}

.practice-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.practice-list {
  display: grid;
  gap: 26px;
}

.practice-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.practice-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--leika-red);
  color: #fff;
  font-size: 25px;
}

.practice-item h3 {
  margin-bottom: 5px;
  color: #171717;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.practice-item p {
  margin-bottom: 0;
  color: #8a8a8a;
  font-size: 11px;
  line-height: 1.7;
}

.publications-section {
  padding-top: 46px;
  padding-bottom: 92px;
}

.publication-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.publication-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.publication-card h3 {
  margin: 14px 0 4px;
  color: #111;
  font-size: 18px;
  font-weight: 600;
}

.publication-card p {
  min-height: 44px;
  margin-bottom: 14px;
  color: var(--leika-muted);
  font-size: 11px;
  line-height: 1.75;
}

.publication-card .button {
  min-width: 126px;
  min-height: 40px;
}

.inner-page-main {
  display: flex;
  flex-direction: column;
}

.inner-section {
  width: 100%;
  padding-top: 74px;
}

.inner-heading {
  margin-bottom: 50px;
}

.inner-heading h1 {
  font-size: 54px;
  font-weight: 500;
}

.about-page {
  padding-bottom: 250px;
}

.about-page .site-container,
.contact-page .site-container {
  max-width: 1180px;
}

.about-banner {
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}

.about-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.about-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 62%;
}

.about-statement {
  min-height: 520px;
  margin-top: 44px;
  padding: 72px 110px 62px;
  background: #f8f8f8;
}

.about-statement h2 {
  max-width: 900px;
  margin-bottom: 52px;
  color: #051126;
  font-size: 62px;
  font-weight: 400;
  line-height: 1.14;
}

.about-statement p {
  max-width: 950px;
  margin-bottom: 0;
  color: #1e2938;
  font-size: 17px;
  line-height: 1.85;
}

.contact-page {
  padding-bottom: 310px;
}

.contact-layout {
  min-height: 650px;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
}

.contact-card {
  min-width: 0;
  padding: 46px 48px 38px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background: var(--leika-red);
  color: #fff;
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -85px;
  bottom: -110px;
  width: 270px;
  height: 360px;
  background: rgba(255, 255, 255, 0.07);
  transform: rotate(24deg);
}

.contact-card h2 {
  margin-bottom: 4px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.contact-lead {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.contact-details {
  margin: auto 0;
  display: grid;
  gap: 46px;
  position: relative;
  z-index: 1;
  color: #fff;
  font-style: normal;
}

.contact-details a,
.contact-details > div {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
  text-decoration: none;
}

.contact-details i {
  margin-top: 4px;
  font-size: 20px;
  text-align: center;
}

.contact-social {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.contact-social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1b400;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}

.contact-social a:nth-child(2) {
  background: #fff;
  color: #202020;
}

.contact-map {
  min-width: 0;
  display: block;
  overflow: hidden;
  background: #eee;
}

.contact-map img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.people-page {
  padding-bottom: 170px;
}

.people-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 24px;
}

.people-profile-card {
  width: 100%;
  min-height: 164px;
  padding: 36px 38px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border: 0;
  border-radius: 6px;
  background: #f8f8f8;
  color: var(--leika-text);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.people-profile-card:hover,
.people-profile-card:focus-visible {
  background: #f3f3f3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  outline: 0;
  transform: translateY(-2px);
}

.people-profile-card > img {
  width: 86px;
  height: 86px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.people-profile-card > img.is-yudi {
  object-position: center 20%;
}

.people-profile-card > img.is-round {
  border-radius: 50%;
}

.people-profile-meta {
  min-width: 0;
  display: block;
}

.people-profile-meta strong {
  display: block;
  margin-bottom: 7px;
  color: #111;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.people-profile-meta small {
  display: block;
  color: #333;
  font-size: 13px;
  line-height: 1.4;
}

.people-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.people-modal.is-open {
  display: flex;
}

.people-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.people-modal-dialog {
  width: min(1080px, calc(100vw - 64px));
  max-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 48px;
  overflow: auto;
  position: relative;
  z-index: 1;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.people-modal-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #6d6d6d;
  cursor: pointer;
  font-size: 22px;
}

.people-modal-photo {
  min-height: 360px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  background: #eee;
}

.people-modal-photo::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48%;
  background: linear-gradient(to top, rgba(183, 22, 29, 0.92), rgba(183, 22, 29, 0));
}

.people-modal-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.people-modal-content {
  min-width: 0;
  padding: 12px 32px 0 0;
}

.people-modal-content h2 {
  margin-bottom: 2px;
  color: #141414;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
}

.people-modal-role {
  margin-bottom: 28px;
  color: #555;
  font-size: 14px;
}

.people-modal-bio p {
  margin-bottom: 18px;
  color: #313131;
  font-size: 13px;
  line-height: 1.65;
}

.people-modal-back {
  min-width: 130px;
  margin-top: 8px;
}

body.people-modal-open {
  overflow: hidden;
}

.publications-page {
  padding-bottom: 160px;
}

.page-publications .inner-heading h1 {
  text-transform: uppercase;
}

.publications-banner {
  height: 315px;
  overflow: hidden;
  border-radius: 6px;
}

.publications-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.publications-list {
  margin-top: 48px;
  display: grid;
  gap: 48px;
}

.publication-entry h2 {
  margin-bottom: 14px;
  color: #101010;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

.publication-entry p {
  max-width: 1120px;
  margin-bottom: 18px;
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.85;
}

.publication-read-more {
  min-width: 216px;
  min-height: 64px;
  font-size: 22px;
}

.site-footer {
  flex: 0 0 auto;
}

.footer-main {
  padding: 74px 0 50px;
  background: #fbfbfb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.45fr;
  gap: 52px;
  align-items: center;
}

.footer-brand img {
  width: 105px;
  display: block;
  margin-bottom: 25px;
}

.footer-brand p {
  margin-bottom: 0;
  color: rgba(183, 22, 29, 0.52);
  font-size: 14px;
  line-height: 1.85;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 38px;
}

.footer-contact a {
  color: var(--leika-red);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
}

.footer-social a {
  color: var(--leika-red);
  font-size: 27px;
  line-height: 1;
  text-decoration: none;
}

.footer-bottom {
  min-height: 82px;
  display: flex;
  align-items: center;
  background: var(--leika-red);
  color: #fff;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.footer-bottom-inner div {
  display: flex;
  gap: 84px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .brand {
    width: 260px;
  }

  .nav-links {
    gap: 30px;
  }

  .people-layout {
    grid-template-columns: 48% minmax(0, 1fr);
    gap: 58px;
  }

  .practice-layout {
    gap: 60px;
  }

  .about-statement {
    padding-right: 72px;
    padding-left: 72px;
  }
}

@media (max-width: 900px) {
  .site-container {
    width: min(calc(100% - 36px), 720px);
  }

  .topbar-social span {
    display: none;
  }

  .nav-inner {
    height: 82px;
  }

  .brand {
    width: 235px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .home-hero {
    min-height: 420px;
    background-position: 62% center;
  }

  .home-hero h1 {
    font-size: 36px;
  }

  .overview-grid {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
  }

  .overview-copy {
    padding: 28px 30px;
  }

  .people-layout,
  .practice-layout {
    grid-template-columns: 1fr;
  }

  .people-layout {
    max-width: 720px;
  }

  .people-collage {
    max-width: 560px;
    margin: 0 auto;
  }

  .practice-list {
    margin-top: 10px;
  }

  .publication-grid {
    gap: 18px;
  }

  .about-statement h2 {
    font-size: 48px;
  }

  .about-statement p {
    font-size: 15px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map img {
    min-height: 460px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand img {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-contact,
  .footer-social {
    justify-content: center;
  }

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

  .people-modal-dialog {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 680px) {
  .site-container {
    width: min(calc(100% - 28px), 540px);
  }

  .topbar {
    height: 36px;
    font-size: 9px;
  }

  .topbar-contact {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .topbar-divider,
  .topbar-social {
    display: none;
  }

  .brand {
    width: 205px;
  }

  .home-hero {
    min-height: 380px;
    background-position: 67% center;
  }

  .home-hero::before {
    background: rgba(0, 0, 0, 0.38);
  }

  .home-hero h1 {
    max-width: 330px;
    font-size: 31px;
    line-height: 1.3;
  }

  .section {
    padding: 50px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h1,
  .section-heading h2,
  .inner-heading h1 {
    font-size: 36px;
  }

  .section-heading p {
    font-size: 12px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-image {
    height: 240px;
  }

  .overview-copy {
    min-height: auto;
    padding: 28px 24px;
  }

  .people-layout {
    gap: 42px;
  }

  .people-collage {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .people-copy h2,
  .practice-intro h2 {
    font-size: 34px;
  }

  .ask-panel {
    min-height: 220px;
    padding: 30px 20px;
  }

  .ask-panel h2 {
    font-size: 28px;
    text-align: center;
  }

  .practice-image {
    height: 230px;
  }

  .practice-item {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
  }

  .practice-icon {
    width: 62px;
    height: 62px;
    font-size: 21px;
  }

  .practice-item h3 {
    font-size: 17px;
  }

  .publication-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .publication-card p {
    min-height: 0;
  }

  .inner-section {
    padding-top: 52px;
  }

  .inner-heading {
    margin-bottom: 34px;
  }

  .about-page,
  .contact-page {
    padding-bottom: 100px;
  }

  .about-banner {
    height: 210px;
  }

  .about-statement {
    min-height: auto;
    margin-top: 24px;
    padding: 38px 24px;
  }

  .about-statement h2 {
    margin-bottom: 30px;
    font-size: 34px;
  }

  .desktop-break {
    display: none;
  }

  .contact-layout {
    min-height: 0;
  }

  .contact-card {
    min-height: 590px;
    padding: 34px 26px 28px;
  }

  .contact-card h2 {
    font-size: 24px;
  }

  .contact-details {
    gap: 34px;
  }

  .contact-details a,
  .contact-details > div {
    gap: 15px;
    font-size: 13px;
  }

  .contact-map img {
    min-height: 380px;
  }

  .people-page,
  .publications-page {
    padding-bottom: 100px;
  }

  .people-page-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .people-profile-card {
    min-height: 138px;
    padding: 26px 24px;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 20px;
  }

  .people-profile-card > img {
    width: 76px;
    height: 76px;
  }

  .people-profile-meta strong {
    font-size: 18px;
  }

  .people-modal {
    padding: 14px;
  }

  .people-modal-dialog {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px;
  }

  .people-modal-photo {
    min-height: 300px;
  }

  .people-modal-photo img {
    min-height: 300px;
    max-height: 360px;
  }

  .people-modal-content {
    padding: 0;
  }

  .people-modal-content h2 {
    padding-right: 34px;
    font-size: 22px;
  }

  .publications-banner {
    height: 220px;
  }

  .publications-list {
    margin-top: 34px;
    gap: 40px;
  }

  .publication-entry h2 {
    font-size: 24px;
  }

  .publication-entry p {
    font-size: 14px;
  }

  .publication-read-more {
    min-width: 160px;
    min-height: 50px;
    font-size: 17px;
  }

  .footer-main {
    padding: 52px 0 42px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom {
    padding: 22px 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom-inner div {
    gap: 34px;
  }
}
