/* Modern CSS Variables for consistent theming */
:root {
  --primary-color: #0f4c81;
  --primary-hover: #0b3b63;
  --secondary-color: #5f7187;
  --accent-color: #c7933f;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --background-primary: #ffffff;
  --background-secondary: #f5f8fc;
  --background-accent: #eef3f8;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient-primary: linear-gradient(135deg, #0f4c81 0%, #2f6f90 100%);
  --gradient-accent: linear-gradient(135deg, #c7933f 0%, #f0c77e 100%);
  --gradient-subtle: linear-gradient(135deg, #edf4ff 0%, #fbf3e7 100%);
  --gradient-surface: linear-gradient(180deg, #fdfefe 0%, #f5f8fc 100%);
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scrolling for better UX */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--background-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* Modern Button Styles */
.button {
  border-radius: var(--border-radius) !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  border: 2px solid transparent !important;
  position: relative;
  overflow: hidden;
}

.button.is-dark {
  background: var(--text-primary) !important;
  border: none !important;
  color: white !important;
  box-shadow: var(--shadow-md);
}

.button.is-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-color) !important;
}

.button.is-dark:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.footer .icon-link {
    font-size: 25px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer .icon-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.link-block a {
    margin: 8px 4px;
}

.dnerf {
  font-variant: small-caps;
}


/* Hero Section Modernization */
.hero {
  position: relative;
  overflow: hidden;
}

.hero.is-light {
  background: var(--background-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.hero-body {
  padding: 4rem 1.5rem;
}

.teaser .hero-body {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.teaser {
  font-family: 'Inter', sans-serif;
}


/* Publication Content Styling */
.publication-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    color: var(--text-primary) !important;
    margin-bottom: 1.4rem !important;
    line-height: 1.1 !important;
}

.publication-banner {
  max-height: 70vh;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin: 2rem 0;
}

.publication-banner video {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
}

.publication-header .hero-body {
  padding: 4rem 1.5rem 2.2rem;
}

.publication-authors {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
    margin-bottom: 0.55rem;
}

.publication-venue {
    color: var(--text-secondary);
    width: fit-content;
    font-weight: 600;
    background: var(--background-accent);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    display: inline-block;
}

.publication-awards {
    color: #ef4444;
    width: fit-content;
    font-weight: 700;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #ef4444;
    margin-top: 1rem;
}

.publication-authors a {
   color: var(--primary-color) !important;
   text-decoration: none;
   font-weight: 600;
   transition: var(--transition);
   position: relative;
}

.publication-authors a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--gradient-accent);
    transition: var(--transition);
}

.publication-authors a:hover::after {
    width: 100%;
}

.publication-authors a:hover {
    color: var(--primary-hover) !important;
}

.author-block {
  display: inline-block;
  margin-right: 0.5rem;
}

.publication-banner img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.publication-banner img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

/* Modern Video and Carousel Styling */
.publication-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.publication-video:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.publication-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
}

.publication-body img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.publication-body img:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.results-carousel {
  overflow: hidden;
  padding: 1rem 0;
}

.results-carousel .item {
  margin: 1rem;
  overflow: hidden;
  padding: 1.5rem;
  font-size: 0;
  background: var(--background-primary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.results-carousel .item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.results-carousel .item img,
.results-carousel video {
  margin: 0;
  border-radius: var(--border-radius);
  width: 100%;
  height: auto;
}

.results-carousel .subtitle {
  font-size: 1rem !important;
  color: var(--text-secondary);
  margin-top: 1rem;
  font-weight: 500;
}

/* Pagination and Misc Improvements */
.slider-pagination .slider-page {
  background: var(--primary-color);
  border-radius: 50%;
  transition: var(--transition);
}

.slider-pagination .slider-page.is-active {
  background: var(--primary-hover);
  transform: scale(1.2);
}

.eql-cntrb { 
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

.hero-notes {
  margin-top: 0.7rem;
  margin-bottom: 0.85rem;
}

.hero-note {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: center;
  text-justify: auto;
}

.hero-note a {
  color: var(--primary-color);
  text-decoration: none;
}

.hero-note a:hover {
  color: var(--primary-hover);
}

/* Section Titles */
.title.is-3 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  color: var(--text-primary);
  margin-bottom: 2rem !important;
  position: relative;
  padding-bottom: 1rem;
}

.title.is-3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d08a21 0%, #f2c26a 100%);
  border-radius: 2px;
}

/* Content Improvements */
.content.has-text-justified {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.content.has-text-justified p {
  margin-bottom: 1.5rem;
}

/* Footer Improvements */
.footer {
  background: var(--background-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 1.5rem;
}

.footer .content {
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* BibTeX Styling */
pre {
  background: var(--background-accent) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--border-radius) !important;
  padding: 1.5rem !important;
  font-size: 0.9rem !important;
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}

code {
  background: var(--background-accent) !important;
  color: var(--text-primary) !important;
  font-family: 'SF Mono', 'Monaco', 'Cascadia Code', 'Roboto Mono', monospace !important;
}

/* BibTeX Section Improvements */
.bibtex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.copy-bibtex-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.copy-bibtex-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.copy-bibtex-btn.copied {
  background: #10b981;
}

.copy-bibtex-btn.copied .copy-text::after {
  content: "ied!";
}

/* More Works Dropdown */
.more-works-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
}

.more-works-btn {
  background: var(--background-primary);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.more-works-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--background-secondary);
  border-color: var(--primary-color);
}

.more-works-btn .dropdown-arrow {
  transition: var(--transition);
  font-size: 0.8rem;
}

.more-works-btn.active .dropdown-arrow {
  transform: rotate(180deg);
}

.more-works-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 400px;
  max-width: 90vw;
  background: var(--background-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  max-height: 70vh;
  overflow-y: auto;
}

.more-works-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.close-btn:hover {
  background: var(--background-accent);
  color: var(--text-primary);
}

.works-list {
  padding: 1rem;
}

.work-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  margin-bottom: 0.5rem;
}

.work-item:hover {
  background: var(--background-accent);
  transform: translateX(4px);
}

.work-info h5 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.work-info p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.work-venue {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

.work-item .fas {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}


/* Mobile Responsive Improvements */
@media screen and (max-width: 768px) {
  .hero-body {
    padding: 2rem 1rem;
  }
  
  .publication-header .hero-body {
    padding: 2.6rem 1rem 1.7rem;
  }
  
  .publication-title {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
  }
  
  .publication-authors {
    font-size: 1rem !important;
  }
  
  .button {
    margin: 0.2rem !important;
    font-size: 0.87rem !important;
    padding: 0.68rem 0.95rem !important;
  }
  
  .more-works-container {
    bottom: 2rem;
    right: 1rem;
    top: auto;
  }
  
  .more-works-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .more-works-dropdown {
    width: calc(100vw - 2rem);
    right: -1rem;
    bottom: calc(100% + 0.5rem);
    top: auto;
  }
  
  .results-carousel .item {
    margin: 0.5rem;
    padding: 1rem;
  }
  
  .teaser .hero-body {
    padding: 1rem;
  }
  
  .content.has-text-justified {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .publication-title {
    font-size: 2rem !important;
  }
  
  .hero-body {
    padding: 1.5rem 0.75rem;
  }
  
  .more-works-container {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    z-index: 1000;
  }
  
  .more-works-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .more-works-dropdown {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    right: 0;
    width: calc(100vw - 2rem);
    max-width: 90vw;
  }
  
  .link-block {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .button {
    width: 100%;
    justify-content: center;
  }
}

/* Tablet Responsive */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hero-body {
    padding: 3rem 2rem;
  }
  
  .publication-header .hero-body {
    padding: 4rem 2rem 3rem;
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero, .section {
  animation: fadeInUp 0.6s ease-out;
}

/* Improved focus states for accessibility */
.button:focus,
.related-works-btn:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}


/* Print styles */
@media print {
  .more-works-container {
    display: none;
  }
  
  .hero, .section {
    animation: none;
  }
  
  .button {
    background: transparent !important;
    color: var(--text-primary) !important;
    box-shadow: none !important;
  }
}

.sc {
  font-variant: small-caps;
  letter-spacing: 0.04em;
}

.venue-muted {
  margin-top: 0.75rem;
  color: var(--text-secondary);
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.summary-stat {
  background: var(--gradient-subtle);
  border: 1px solid rgba(15, 76, 129, 0.08);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.summary-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-value {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.summary-detail {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.publication-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.45rem;
}

.link-block {
  display: inline-flex;
}

.link-block a {
  margin: 0;
  min-width: 154px;
  min-height: 42px;
  padding: 0 0.95rem !important;
  border-radius: 999px !important;
  font-size: 0.96rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.86rem;
  height: 0.86rem;
  flex: 0 0 auto;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-intro {
  max-width: 920px;
  margin: 0 auto 2rem;
}

.section-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

.section-intro p + p {
  margin-top: 1rem;
}

.section-mini-title {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 0.55rem;
  text-align: justify;
  text-justify: inter-word;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--background-accent);
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-intro .title.is-3 {
  text-align: center;
}

.section-intro .title.is-3::after {
  left: 50%;
  transform: translateX(-50%);
}

.info-grid,
.definition-grid,
.stage-grid {
  display: grid;
  gap: 1.25rem;
}

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

.info-grid.three-up,
.stage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.definition-grid > :first-child {
  grid-column: 1 / -1;
}

.info-card,
.definition-card,
.stage-card,
.todo-box {
  background: var(--gradient-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
}

.info-card h3,
.definition-card h3,
.stage-card h3 {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.info-card p,
.definition-card p,
.stage-card p,
.todo-box p {
  color: var(--text-secondary);
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.stage-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fill-height {
  height: 100%;
}

.benchmark-stack {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-items: center;
}

.benchmark-stack > * {
  width: 80%;
}

.results-stack {
  display: grid;
  gap: 1.6rem;
  margin-top: 1.5rem;
  justify-items: center;
}

.results-stack > * {
  width: 80%;
}

.results-stack > .section-intro {
  margin: 0 auto;
  max-width: none;
}

.results-stack > .section-intro p {
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

.result-highlight-list {
  margin: 0.9rem 0 0 1.35rem;
  padding: 0;
  color: var(--text-secondary);
}

.result-highlight-list li {
  text-align: justify;
  text-justify: inter-word;
}

.result-highlight-list li + li {
  margin-top: 0.6rem;
}

.result-bullet-label {
  color: var(--text-primary);
  font-weight: 600;
}

.results-pareto-shot {
  width: 45%;
  margin-top: -0.1rem;
}

.online-stack {
  display: grid;
  gap: 1.6rem;
  margin-top: 1.5rem;
  justify-items: center;
}

.online-stack > * {
  width: 80%;
}

.online-stack > .section-intro {
  margin: 0 auto;
  max-width: none;
}

.online-stack > .section-intro p {
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

.online-ab-shot {
  width: 45%;
}

.online-risk-shot {
  width: 55%;
}

#bibtex-section .section-intro {
  max-width: none;
  margin: 0 0 1.5rem;
}

#bibtex-section .section-intro .title.is-3 {
  text-align: left;
}

#bibtex-section .section-intro .title.is-3::after {
  display: none;
}

.olamind-stack {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-items: center;
}

.olamind-stack > * {
  width: 80%;
}

.olamind-stack > .stage-grid {
  width: 96%;
}

.info-grid.three-up {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.olamind-stack > .section-intro {
  margin: 0 auto;
  max-width: none;
}

.olamind-stack > .section-intro p {
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

.benchmark-stack > .section-intro {
  margin: 0 auto;
  max-width: none;
}

.benchmark-stack > .section-intro p {
  margin: 0;
}

.benchmark-hall-judge {
  max-width: 1040px;
}

.benchmark-stack > .section-intro p {
  text-align: justify;
  text-justify: inter-word;
}

.benchmark-consistency-shot {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 45%;
  max-width: none;
  text-align: center;
}

.benchmark-hall-judge .figure-frame,
.benchmark-consistency-shot .figure-frame {
  width: 100%;
}

.benchmark-hall-judge .figure-frame {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.reasoning-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
  width: 96%;
  align-items: start;
}

.reasoning-figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  text-align: center;
}

.reasoning-figure .figure-frame {
  height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reasoning-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benchmark-consistency-shot .figure-frame {
  display: block;
}

.benchmark-consistency-shot img {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.clean-list,
.numbered-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.clean-list li,
.numbered-list li {
  margin-bottom: 0.55rem;
  text-align: justify;
  text-justify: inter-word;
}

.paper-figure {
  margin: 0;
}

.figure-frame {
  background: var(--gradient-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 1rem;
}

.paper-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: none;
}

.paper-table-shot {
  margin-top: 1.4rem;
}

.paper-table-shot .figure-frame {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}

.table-figure-frame {
  padding: 0;
}

.paper-table-shot img {
  border-radius: 0;
}

.olabench-overview-shot {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.contribution-radar-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  width: 85%;
  margin: 1.75rem auto 0;
  align-items: stretch;
}

.contribution-stack {
  display: grid;
  gap: 0.9rem;
}

.contribution-stack .info-card {
  height: 100%;
  padding: 1.2rem;
}

.contribution-stack .info-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.65rem;
}

.contribution-stack .info-card p {
  font-size: 0.99rem;
  line-height: 1.68;
}

.contribution-radar-shot {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  height: 100%;
  max-width: 94%;
}

.contribution-radar-shot .figure-frame {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.9rem;
}

.contribution-radar-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.olabench-performance-shot {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.ablation-shot {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.paper-figure figcaption {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 0.9rem;
  text-align: center;
}

.paper-figure figcaption.caption-box-center .caption-text {
  display: inline-block;
  max-width: min(98ch, 100%);
  text-align: center;
}

.info-card p,
.definition-card p,
.stage-card p,
.todo-box p,
.info-card .clean-list,
.definition-card .clean-list,
.stage-card .clean-list,
.todo-box .clean-list,
.info-card .numbered-list,
.definition-card .numbered-list,
.stage-card .numbered-list,
.todo-box .numbered-list {
  text-align: left;
  text-justify: auto;
}

.paper-table {
  background: var(--background-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: 1.75rem;
  overflow: hidden;
}

.paper-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.paper-table caption {
  caption-side: top;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  padding: 1.2rem 1.2rem 0;
}

.paper-table thead th {
  background: #f0f5fb;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.paper-table tbody td {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #edf2f7;
  vertical-align: top;
}

.paper-table tbody tr:last-child td {
  border-bottom: none;
}

.paper-table tbody tr:nth-child(even):not(.table-group) {
  background: rgba(238, 243, 248, 0.45);
}

.paper-table .table-group td {
  background: #dfeaf5;
  color: var(--text-primary);
  font-weight: 700;
}

.table-subtext {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.table-scroll {
  overflow-x: auto;
}

.table-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.compact-table table {
  min-width: 640px;
}

.dense-table thead th,
.dense-table tbody td {
  font-size: 0.86rem;
}

.equation-card {
  margin-top: 1rem;
}

.equation-card strong {
  display: block;
  margin-bottom: 0.75rem;
}

.equation-card pre {
  margin: 0 !important;
  background: #f7fafc !important;
}

.rubric-example + .rubric-example {
  margin-top: 1rem;
}

.todo-box {
  background: linear-gradient(180deg, #fffdf8 0%, #f7efe2 100%);
  border-color: rgba(199, 147, 63, 0.25);
}

.todo-box .title.is-3 {
  text-align: left;
}

.todo-box .title.is-3::after {
  left: 0;
  transform: none;
}

.pdf-frame {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.results-carousel .item {
  text-align: center;
}

.results-carousel .item img {
  max-height: 520px;
  object-fit: contain;
  background: #fff;
}

.benchmark-columns,
.result-columns {
  margin-top: 1.5rem;
}

.results-stack .result-columns {
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .hero-summary,
  .info-grid,
  .info-grid.three-up,
  .definition-grid,
  .stage-grid {
    grid-template-columns: 1fr;
  }

  .reasoning-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .reasoning-figure .figure-frame {
    height: auto;
  }

  .reasoning-figure img {
    height: auto;
  }

  .results-pareto-shot {
    width: 100%;
  }

  .summary-value {
    font-size: 1.75rem;
  }

  .definition-grid > :first-child {
    grid-column: auto;
  }
}

@media screen and (max-width: 768px) {
  .section-intro p,
  .info-card p,
  .definition-card p,
  .stage-card p,
  .clean-list,
  .numbered-list {
    font-size: 0.98rem;
  }

  .summary-stat {
    padding: 1rem;
  }

  .olabench-overview-shot {
    width: 100%;
  }

  .contribution-radar-layout {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contribution-radar-shot {
    height: auto;
  }

  .contribution-radar-shot .figure-frame {
    min-height: 0;
  }

  .olabench-performance-shot {
    width: 90%;
  }

  .ablation-shot {
    width: 100%;
  }

  .benchmark-stack > *,
  .benchmark-consistency-shot,
  .results-stack > *,
  .online-stack > *,
  .olamind-stack > * {
    width: 100%;
  }

  .benchmark-detail p {
    font-size: 0.98rem;
  }

  .figure-frame {
    padding: 0.65rem;
  }

  .paper-table caption {
    font-size: 0.95rem;
  }

  .hero-note {
    font-size: 0.9rem;
  }

  .link-block,
  .link-block a {
    width: 100%;
  }

.link-block a {
    min-width: 0;
    min-height: 48px;
  }
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.panel-header.compact {
  margin-bottom: 1rem;
}

.panel-header .title {
  margin-bottom: 0 !important;
}

.panel-eyebrow {
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.panel-copy {
  color: var(--text-secondary);
  line-height: 1.7;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.status-idle {
  background: rgb(148 163 184 / 0.14);
  color: var(--text-secondary);
}

.status-queued {
  background: rgb(15 76 129 / 0.12);
  color: var(--primary-color);
}

.status-running {
  background: rgb(199 147 63 / 0.18);
  color: #8b5c15;
}

.status-canceling {
  background: rgb(217 119 6 / 0.16);
  color: #9a3412;
}

.status-canceled {
  background: rgb(100 116 139 / 0.16);
  color: #334155;
}

.status-completed {
  background: rgb(22 163 74 / 0.15);
  color: #166534;
}

.status-failed {
  background: rgb(220 38 38 / 0.13);
  color: #b91c1c;
}

.job-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.15rem;
}

.meta-item {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: var(--background-secondary);
}

.meta-label {
  display: block;
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.meta-value {
  color: var(--text-primary);
  font-size: 0.96rem;
  font-weight: 700;
  word-break: break-word;
}

.job-error {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgb(254 226 226 / 0.82);
  color: #991b1b;
  border: 1px solid rgb(248 113 113 / 0.35);
}

.summary-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.metric-card {
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdf9 0%, #f7fafc 100%);
  border: 1px solid rgb(226 232 240 / 0.95);
  box-shadow: var(--shadow-sm);
}

.metric-label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.metric-value {
  display: block;
  color: var(--text-primary);
  font-size: 1.18rem;
  font-weight: 800;
  margin-top: 0.55rem;
}

.eval-form {
  margin-top: 0.6rem;
}

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

.form-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.eval-field {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.field-label {
  color: var(--text-primary);
  font-size: 0.86rem;
  font-weight: 700;
}

.eval-field input,
.eval-field select {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  padding: 0.82rem 0.95rem;
  background: white;
  color: var(--text-primary);
  font: inherit;
  transition: var(--transition);
}

.eval-field input:focus,
.eval-field select:focus {
  outline: none;
  border-color: rgb(15 76 129 / 0.55);
  box-shadow: 0 0 0 4px rgb(15 76 129 / 0.12);
}

.field-hint {
  color: var(--text-light);
  font-size: 0.78rem;
}

.toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.toggle-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: var(--background-secondary);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.toggle-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

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

.submit-feedback {
  margin-top: 0.95rem;
  color: var(--text-secondary);
  min-height: 1.4rem;
}

.submit-feedback.is-error {
  color: #b91c1c;
}

.config-panel {
  margin-top: 1.4rem;
}

.config-snapshot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  margin-top: 1rem;
}

.config-row {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: var(--background-secondary);
}

.config-row dt {
  color: var(--text-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.config-row dd {
  margin-top: 0.35rem;
  color: var(--text-primary);
  font-weight: 700;
  word-break: break-word;
}

@media screen and (max-width: 768px) {
  .private-eval-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .job-meta-grid,
  .form-grid,
  .toggle-grid,
  .config-snapshot,
  .summary-metric-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gateway-panel {
    padding: 1.1rem;
    border-radius: 18px;
  }

  .panel-header {
    flex-direction: column;
  }
}

/* Private Evaluation Gateway v4 */
.private-eval-page {
  --private-eval-shell-width: 1040px;
  background:
    radial-gradient(circle at top left, rgb(15 76 129 / 0.05), transparent 22%),
    radial-gradient(circle at bottom right, rgb(199 147 63 / 0.05), transparent 20%),
    linear-gradient(180deg, #fcfdff 0%, #f4f8fc 100%);
}

.private-eval-page .private-eval-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(246 249 252 / 0.95)),
    linear-gradient(135deg, rgb(15 76 129 / 0.03), rgb(199 147 63 / 0.03));
}

.private-eval-page .private-eval-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.5) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.05;
  pointer-events: none;
}

.private-eval-page .private-eval-hero-intro {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.private-eval-page .publication-title {
  letter-spacing: -0.03em;
  margin-bottom: 1rem !important;
}

.private-eval-page #progress-section > .container,
.private-eval-page #summary-section-anchor > .container {
  width: 100%;
}

.private-eval-page .private-eval-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.2rem;
}

.private-eval-page .private-eval-hero-actions .private-eval-hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgb(15 76 129 / 0.3) !important;
}

.private-eval-page .private-eval-hero-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 1.7rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.private-eval-page .hero-summary-card,
.private-eval-page .paper-surface {
  border-radius: 22px;
  border: 1px solid rgb(226 232 240 / 0.92);
  background: linear-gradient(180deg, rgb(255 255 255 / 0.99), rgb(248 251 255 / 0.98));
  box-shadow: 0 16px 40px -28px rgb(15 23 42 / 0.25);
}

.private-eval-page .hero-summary-card {
  padding: 1.32rem 1.72rem 1.45rem;
  text-align: center;
}

.private-eval-page .summary-label {
  display: block;
  color: var(--text-light);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.private-eval-page .summary-stack-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.95rem;
}

.private-eval-page .summary-stack-list > span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 46px;
  padding: 0.68rem 1.28rem;
  border-radius: 999px;
  background: rgb(15 76 129 / 0.08);
  color: var(--text-primary);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.private-eval-page .progress-shell,
.private-eval-page .summary-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.35rem;
  width: 100%;
  max-width: var(--private-eval-shell-width);
  margin: 0 auto;
}

.private-eval-page .job-directory-card,
.private-eval-page .summary-results-card {
  padding: 1.5rem;
}

.private-eval-page .job-directory-card {
  width: 100%;
  max-width: var(--private-eval-shell-width);
  margin: 0 auto;
}

.private-eval-page .private-eval-hero-actions .button,
.private-eval-page .job-directory-card .button,
.private-eval-page .summary-results-card .button {
  min-height: 54px;
  padding: 0 1.3rem !important;
  border-radius: 18px !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em;
}

.private-eval-page .private-eval-hero-actions .button {
  font-size: 0.94rem;
}

.private-eval-page .private-eval-hero-actions .private-eval-hero-button {
  min-width: 8rem;
  min-height: 40px !important;
  padding: 0 0.9rem !important;
  border-radius: 999px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}

.private-eval-page .button.is-dark {
  background: linear-gradient(135deg, #17253a 0%, #0f4c81 72%, #c7933f 100%) !important;
  border: 1px solid rgb(15 76 129 / 0.28) !important;
  box-shadow: 0 16px 30px rgb(15 76 129 / 0.18);
}

.private-eval-page .button.is-dark:hover {
  background: linear-gradient(135deg, #101a29 0%, #114d83 65%, #d6a757 100%) !important;
  box-shadow: 0 20px 36px rgb(15 76 129 / 0.24);
}

.private-eval-page .button.is-light,
.private-eval-page .private-eval-secondary {
  border: 1px solid rgb(15 76 129 / 0.12) !important;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(240 245 251 / 0.98)) !important;
  color: var(--text-primary) !important;
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.06);
}

.private-eval-page .button.is-light:hover,
.private-eval-page .private-eval-secondary:hover {
  border-color: rgb(15 76 129 / 0.24) !important;
  background: linear-gradient(180deg, #ffffff, #edf4fb) !important;
}

.private-eval-page .eval-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.private-eval-page .field-label {
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.private-eval-page .eval-field input,
.private-eval-page .eval-field select {
  width: 100%;
  min-height: 46px;
  border-radius: 15px;
  border: 1px solid rgb(226 232 240 / 0.96);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  padding: 0.72rem 0.9rem;
  color: var(--text-primary);
  font: inherit;
  transition: var(--transition);
}

.private-eval-page .eval-field input:focus,
.private-eval-page .eval-field select:focus {
  outline: none;
  border-color: rgb(15 76 129 / 0.45);
  box-shadow: 0 0 0 4px rgb(15 76 129 / 0.1);
}

.private-eval-page .submit-feedback {
  min-height: 1.4rem;
  margin-top: 0.9rem;
}

.private-eval-page .job-directory-toolbar {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.private-eval-page .eval-access-callout {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgb(15 76 129 / 0.18);
  background: linear-gradient(135deg, rgb(15 76 129 / 0.1), rgb(255 255 255 / 0.96));
  color: var(--text-primary);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.65;
  box-shadow: 0 16px 30px rgb(15 23 42 / 0.06);
}

.private-eval-page .job-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.private-eval-page .job-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.private-eval-page .job-page-label {
  min-width: 100px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.private-eval-page .job-pagination .button {
  min-height: 42px;
  padding: 0 1rem !important;
  border-radius: 14px !important;
}

.private-eval-page .job-pagination .button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none !important;
}

.private-eval-page .job-list-item {
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgb(226 232 240 / 0.92);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
  box-shadow: 0 14px 28px rgb(15 23 42 / 0.05);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.private-eval-page .job-list-item:hover {
  transform: translateY(-2px);
  border-color: rgb(15 76 129 / 0.2);
  box-shadow: 0 18px 34px rgb(15 23 42 / 0.08);
}

.private-eval-page .job-list-item.is-selected {
  border-color: rgb(15 76 129 / 0.26);
  background: linear-gradient(135deg, rgb(15 76 129 / 0.12), rgb(255 255 255 / 0.98));
  box-shadow: 0 18px 34px rgb(15 76 129 / 0.12);
}

.private-eval-page .job-list-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.private-eval-page .job-list-id {
  display: inline-block;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.private-eval-page .job-list-message {
  margin: 0.45rem 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.private-eval-page .paper-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.private-eval-page .paper-summary-card {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgb(226 232 240 / 0.92);
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
}

.private-eval-page .paper-summary-card.is-overall {
  background: linear-gradient(135deg, rgb(15 76 129 / 0.1), rgb(199 147 63 / 0.1));
  border-color: rgb(15 76 129 / 0.24);
}

.private-eval-page .metric-label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.private-eval-page .metric-value {
  display: block;
  margin-top: 0.55rem;
  color: var(--text-primary);
  font-size: 1.16rem;
  font-weight: 800;
}

.private-eval-page .summary-empty-state {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px dashed rgb(15 76 129 / 0.18);
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9fd 100%);
  color: var(--text-secondary);
  line-height: 1.75;
}

.private-eval-page .summary-results-card .button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none !important;
}

.private-eval-page .job-directory-controls {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1.1fr);
  gap: 1rem;
  align-items: end;
}

.private-eval-page .job-token-field,
.private-eval-page .job-search-field {
  max-width: none;
}

@media screen and (max-width: 768px) {
  .private-eval-page .private-eval-hero-actions,
  .private-eval-page .job-list-row {
    flex-direction: column;
    align-items: stretch;
  }

  .private-eval-page .paper-summary-grid,
  .private-eval-page .private-eval-hero-rail,
  .private-eval-page .job-directory-controls {
    grid-template-columns: minmax(0, 1fr);
  }
}
