* {
  box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body {
  margin: 0;
  color: #202124;
  background: #ffffff;
  overflow-wrap: break-word;
}

img,
iframe,
canvas {
  max-width: 100%;
}

.container {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.research-profile {
  padding-top: 4vh;
}

h1 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
}

h2 {
  margin-top: 2.25rem;
  line-height: 1.25;
}

p {
  max-width: 780px;
}

a {
  color: #174ea6;
}

.eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  max-width: 780px;
  font-size: 1.2rem;
}

.research-interests {
  max-width: 820px;
}

.profile-links,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.7rem 1rem;
  border: 1px solid currentColor;
  border-radius: 0.35rem;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  text-decoration: underline;
}

.button-secondary {
  background: #f8f9fa;
}

.profile-demo-dropdown {
  position: relative;
}

.profile-dropdown-trigger {
  height: 100%;
  background: #ffffff;
  color: #174ea6;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}

.profile-dropdown-trigger::after {
  content: " ▾";
  font-size: 0.8em;
}

.profile-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr;
  width: max-content;
  min-width: 250px;
  max-width: calc(100vw - 1.25rem);
  padding: 0.45rem;
  border: 1px solid #dadce0;
  border-radius: 0.55rem;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(32, 33, 36, 0.14);
}

.profile-demo-dropdown:hover .profile-dropdown-menu,
.profile-demo-dropdown:focus-within .profile-dropdown-menu {
  display: grid;
}

.profile-dropdown-menu a {
  padding: 0.65rem 0.75rem;
  border-radius: 0.35rem;
  color: #3c4043;
  font-weight: 700;
  text-decoration: none;
}

.profile-dropdown-menu a:hover,
.profile-dropdown-menu a:focus-visible {
  color: #174ea6;
  background: #f1f5fd;
  text-decoration: underline;
}

.qr-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 780px;
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid #dadce0;
  border-radius: 0.5rem;
}

.qr-placeholder {
  display: flex;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 2px dashed #5f6368;
  border-radius: 0.35rem;
  background: #f8f9fa;
  color: #5f6368;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}

.qr-content h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.qr-content p {
  margin-bottom: 0.75rem;
}

.share-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
}

.qr-content {
  min-width: 0;
  flex: 1;
}

.share-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #5f6368;
}

.share-links .button {
  padding: 0.55rem 0.9rem;
  border-radius: 0.35rem;
}

/* Publications page */

.publications-page {
  width: min(980px, calc(100% - 2rem));
}

.page-header {
  padding-bottom: 2.25rem;
  border-bottom: 1px solid #dadce0;
}

.back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.back:hover,
.back:focus-visible {
  text-decoration: underline;
}

.publication-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.publication-card {
  padding: 1.75rem;
  border: 1px solid #dadce0;
  border-radius: 0.65rem;
  background: #ffffff;
}

.publication-card h2 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.publication-card h2 a {
  text-decoration: none;
}

.publication-card h2 a:hover,
.publication-card h2 a:focus-visible {
  text-decoration: underline;
}

.publication-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.publication-type {
  margin: 0;
  color: #5f6368;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.publication-number {
  color: #9aa0a6;
  font-size: 0.8rem;
  font-weight: 700;
}

.publication-authors {
  margin: 0.5rem 0;
  font-weight: 700;
}

.publication-venue {
  margin: 0.35rem 0;
  color: #3c4043;
}

.publication-summary {
  margin-top: 1rem;
}

.publication-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.25rem;
}

.publication-links a {
  font-weight: 700;
}

.publication-note {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 4px solid #174ea6;
  background: #f8f9fa;
}

.publication-note h2 {
  margin-top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  .container,
  .publications-page {
    width: min(100% - 1.25rem, 980px);
    padding-top: 2rem;
  }

  .profile-links,
  .page-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    text-align: center;
  }

  .qr-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .share-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

  .share-label {
    grid-column: 1 / -1;
  }

  .share-links .button {
    min-width: 0;
    padding: 0.5rem 0.25rem;
    font-size: clamp(0.72rem, 3.4vw, 0.84rem);
    text-align: center;
  }

  .publication-card {
    padding: 1.25rem;
  }

  .publication-topline {
    align-items: flex-start;
  }

  .publication-links {
    flex-direction: column;
  }
}

/* Publication tabs */

.publication-tabs {
  margin-top: 2rem;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dadce0;
}

.tab-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.45rem 0.45rem 0 0;
  background: transparent;
  color: #3c4043;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.tab-button:hover {
  background: #f8f9fa;
  color: #174ea6;
}

.tab-button:focus-visible {
  outline: 3px solid rgba(23, 78, 166, 0.28);
  outline-offset: 2px;
}

.tab-button.is-active {
  border-color: #dadce0;
  border-bottom-color: #ffffff;
  background: #ffffff;
  color: #174ea6;
}

.tab-count {
  min-width: 1.65rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: #e8f0fe;
  color: #174ea6;
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
}

.tab-panel {
  padding-top: 2rem;
}

.tab-panel[hidden] {
  display: none;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading h2 {
  margin: 0.25rem 0 0;
}

.section-heading .eyebrow {
  margin: 0;
}

.section-summary {
  max-width: 520px;
  margin: 0;
  color: #5f6368;
}

.upcoming-publication-card {
  position: relative;
  border-style: dashed;
  background: #fbfcff;
}

.publication-status {
  display: inline-block;
  flex-shrink: 0;
  padding: 0.25rem 0.6rem;
  border: 1px solid #b7c9e8;
  border-radius: 999px;
  background: #eef4ff;
  color: #174ea6;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .tab-list {
    align-items: stretch;
    flex-direction: column;
  }

  .tab-button {
    justify-content: space-between;
    border-radius: 0.45rem;
  }

  .tab-button.is-active {
    border-bottom-color: #dadce0;
    background: #f8f9fa;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Contact page */

.site-header {
  border-bottom: 1px solid #dadce0;
  background: #ffffff;
}

.site-header-inner,
.site-footer-inner {
  display: flex;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header-inner {
  min-height: 72px;
}

.site-brand {
  color: #202124;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-nav a,
.site-footer a {
  color: #3c4043;
  font-weight: 700;
  text-decoration: none;
}

.site-nav-dropdown {
  position: relative;
  color: #3c4043;
  font-weight: 700;
}

.site-nav-dropdown-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-nav-dropdown-trigger::after {
  content: " ▾";
  color: #5f6368;
  font-size: 0.8em;
}

.site-nav-dropdown-trigger:hover,
.site-nav-dropdown-trigger:focus-visible {
  color: #174ea6;
  text-decoration: underline;
}

.site-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 110;
  display: none;
  grid-template-columns: 1fr;
  width: max-content;
  min-width: 250px;
  max-width: calc(100vw - 1.25rem);
  padding: 0.65rem 0.45rem 0.45rem;
  border: 1px solid #dadce0;
  border-radius: 0.55rem;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(32, 33, 36, 0.14);
}

.site-nav-dropdown:hover .site-nav-dropdown-menu,
.site-nav-dropdown:focus-within .site-nav-dropdown-menu {
  display: grid;
}

.site-nav-dropdown-menu a {
  padding: 0.65rem 0.75rem;
  border-radius: 0.35rem;
}

.site-nav-dropdown-menu a:hover,
.site-nav-dropdown-menu a:focus-visible {
  background: #f1f5fd;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #174ea6;
  text-decoration: underline;
}

.contact-hero {
  border-bottom: 1px solid #dadce0;
  background:
    radial-gradient(circle at top right, rgba(23, 78, 166, 0.12), transparent 36%),
    #f8f9fa;
}

.contact-hero-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0 4.5rem;
}

.contact-hero h1 {
  max-width: 780px;
  margin-bottom: 1.25rem;
}

.contact-hero-copy {
  max-width: 760px;
  margin: 0;
  color: #3c4043;
  font-size: 1.18rem;
}

.breadcrumb {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
  color: #5f6368;
  font-size: 0.92rem;
}

.breadcrumb a {
  font-weight: 700;
  text-decoration: none;
}

.contact-section {
  padding: 4.5rem 0 5rem;
}

.contact-layout {
  display: grid;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3.5rem;
  align-items: start;
}

.contact-info h2,
.contact-card h2 {
  margin-top: 0.25rem;
}

.contact-info > p {
  color: #5f6368;
}

.contact-detail-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-detail {
  padding: 1.25rem 0;
  border-top: 1px solid #dadce0;
}

.contact-detail h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.contact-detail p {
  margin: 0;
  color: #5f6368;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 2rem;
}

.contact-social-links a {
  font-weight: 700;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid #dadce0;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(32, 33, 36, 0.08);
}

.form-introduction {
  margin-top: 0;
  color: #5f6368;
}

.privacy-notice {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid #b06000;
  background: #fff7e6;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label,
.form-consent label {
  font-weight: 700;
}

.optional,
.field-help {
  color: #5f6368;
  font-size: 0.84rem;
  font-weight: 400;
}

.field-help {
  margin: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  border: 1px solid #bdc1c6;
  border-radius: 0.4rem;
  background: #ffffff;
  color: #202124;
  font: inherit;
}

.form-field input,
.form-field select {
  height: 53px;
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #174ea6;
  outline: 3px solid rgba(23, 78, 166, 0.17);
  outline-offset: 1px;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.form-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.25rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.contact-submit {
  border-color: #174ea6;
  background: #174ea6;
  color: #ffffff;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #103b80;
  text-decoration: none;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  margin: 0;
  color: #3c4043;
  font-size: 0.92rem;
}

.noscript-message {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
}

.site-footer {
  border-top: 1px solid #dadce0;
  background: #f8f9fa;
}

.site-footer-inner {
  min-height: 92px;
  color: #5f6368;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-info {
    max-width: 760px;
  }
}

@media (max-width: 600px) {
  .site-header-inner,
  .site-footer-inner {
    width: min(100% - 1.25rem, 1120px);
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .site-nav,
  .site-footer nav {
    gap: 0.8rem 1rem;
  }

  .site-nav-dropdown-menu {
    right: auto;
    left: 0;
  }

  .contact-hero-inner,
  .contact-layout {
    width: min(100% - 1.25rem, 1120px);
  }

  .contact-hero-inner {
    padding: 3.5rem 0 3rem;
  }

  .contact-section {
    padding-top: 3rem;
  }

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

  .contact-card {
    padding: 1.25rem;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit {
    width: 100%;
  }
}

/* Homepage top-right contact link */

.homepage-header {
  border-bottom: 1px solid #dadce0;
  background: #ffffff;
}

.homepage-header-inner {
  display: flex;
  width: min(900px, calc(100% - 2rem));
  min-height: 68px;
  margin: 0 auto;
  align-items: center;
  justify-content: flex-end;
}

.homepage-contact-link {
  display: inline-block;
  padding: 0.6rem 0.95rem;
  border: 1px solid #174ea6;
  border-radius: 0.35rem;
  color: #174ea6;
  font-weight: 700;
  text-decoration: none;
}

.homepage-contact-link:hover,
.homepage-contact-link:focus-visible {
  background: #174ea6;
  color: #ffffff;
  text-decoration: none;
}

.homepage-contact-link:focus-visible {
  outline: 3px solid rgba(23, 78, 166, 0.22);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .homepage-header-inner {
    width: min(100% - 1.25rem, 900px);
    min-height: 60px;
  }
}

/* Blog stories page */

.blog-hero {
  border-bottom: 1px solid #dadce0;
  background:
    radial-gradient(circle at top right, rgba(23, 78, 166, 0.12), transparent 38%),
    #f8f9fa;
}

.blog-hero-inner,
.blog-section-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.blog-hero-inner {
  padding: 5rem 0 4rem;
}

.blog-hero h1 {
  max-width: 820px;
  margin-bottom: 1rem;
}

.blog-hero-copy {
  max-width: 780px;
  margin: 0;
  color: #3c4043;
  font-size: 1.18rem;
}

.blog-section {
  padding: 4rem 0 5rem;
}

.blog-section-heading {
  margin-bottom: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.blog-card {
  display: flex;
  min-width: 0;
  padding: 1.6rem;
  border: 1px solid #dadce0;
  border-radius: 0.7rem;
  background: #ffffff;
  flex-direction: column;
}

.blog-card:hover {
  border-color: #b7c9e8;
  box-shadow: 0 15px 36px rgba(32, 33, 36, 0.07);
}

.blog-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.blog-meta {
  margin: 0;
  color: #5f6368;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-year {
  flex-shrink: 0;
  color: #9aa0a6;
  font-size: 0.78rem;
  font-weight: 700;
}

.blog-card h3 {
  margin: 0.75rem 0;
  font-size: clamp(1.28rem, 2.4vw, 1.65rem);
  line-height: 1.3;
}

.blog-card h3 a {
  color: #202124;
  text-decoration: none;
}

.blog-card h3 a:hover,
.blog-card h3 a:focus-visible {
  color: #174ea6;
  text-decoration: underline;
}

.blog-summary {
  margin: 0;
  color: #3c4043;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.blog-tags li {
  padding: 0.22rem 0.6rem;
  border: 1px solid #d2d9e6;
  border-radius: 999px;
  background: #f8f9fa;
  color: #3c4043;
  font-size: 0.78rem;
}

.blog-read-link {
  margin-top: auto;
  padding-top: 0.5rem;
  font-weight: 700;
  text-decoration: none;
}

.blog-read-link:hover,
.blog-read-link:focus-visible {
  text-decoration: underline;
}

.blog-follow-card {
  display: flex;
  margin-top: 2rem;
  padding: 1.75rem;
  border-left: 4px solid #174ea6;
  background: #f8f9fa;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.blog-follow-card h2 {
  margin: 0.25rem 0 0.5rem;
}

.blog-follow-card p {
  margin-bottom: 0;
}

.blog-follow-card .button {
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-follow-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .blog-hero-inner,
  .blog-section-inner {
    width: min(100% - 1.25rem, 1120px);
  }

  .blog-hero-inner {
    padding: 3.5rem 0 3rem;
  }

  .blog-section {
    padding-top: 3rem;
  }

  .blog-card {
    padding: 1.25rem;
  }
}

/* SEO and shared-site enhancements */

:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 0.35rem;
  background: #174ea6;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav a[aria-current="page"] {
  color: #174ea6;
}

.home-hero {
  padding: 4.5rem 0 2rem;
}

.home-hero .lead {
  font-size: clamp(1.12rem, 2.4vw, 1.35rem);
}

.topic-list,
.featured-grid,
.upcoming-grid {
  display: grid;
  gap: 1rem;
}

.topic-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.topic-list li {
  padding: 1rem;
  border: 1px solid #dadce0;
  border-radius: 0.55rem;
  background: #f8f9fa;
  font-weight: 700;
}

.featured-section,
.profile-section {
  margin-top: 3.25rem;
}

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

.featured-card {
  padding: 1.4rem;
  border: 1px solid #dadce0;
  border-radius: 0.65rem;
  background: #ffffff;
}

.featured-card h3 {
  margin: 0.3rem 0 0.7rem;
  line-height: 1.3;
}

.featured-card a {
  text-decoration: none;
}

.featured-card a:hover,
.featured-card a:focus-visible {
  text-decoration: underline;
}

.site-footer {
  margin-top: 2rem;
}

.qr-image {
  display: block;
  width: min(150px, 100%);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 0.35rem;
}

.qr-section > a {
  display: block;
  width: 150px;
  max-width: 100%;
  flex: 0 0 auto;
  line-height: 0;
}

.page-kicker {
  margin: 0;
  color: #5f6368;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.upcoming-section {
  margin-top: 3.25rem;
  scroll-margin-top: 6rem;
}

.upcoming-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.upcoming-card {
  padding: 1.5rem;
  border: 1px dashed #9aa0a6;
  border-radius: 0.65rem;
  background: #fbfcff;
}

.upcoming-card h3 {
  margin: 0.5rem 0;
  line-height: 1.3;
}

.status-pill {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: #e8f0fe;
  color: #174ea6;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-layout {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.article-layout article {
  max-width: 820px;
}

.article-layout pre {
  overflow-x: auto;
  padding: 1rem;
  border-radius: 0.45rem;
  background: #f8f9fa;
}

.article-layout code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.3rem;
  color: #5f6368;
  font-size: 0.9rem;
}

.breadcrumbs a {
  font-weight: 700;
  text-decoration: none;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin: 0.75rem 0 1.5rem;
  color: #5f6368;
}

.publication-card h2,
.blog-card h3 {
  text-wrap: balance;
}

@media (max-width: 760px) {
  .topic-list,
  .featured-grid,
  .upcoming-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 3rem;
  }
}
