:root {
  --bg: #07111f;
  --bg-soft: #0d1930;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #edf5ff;
  --muted: #a8b8cc;
  --accent: #8ee6ff;
  --accent-2: #bfa8ff;
  --accent-3: #8af4d0;
  --gold: #f2d38a;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.40);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(142,230,255,.14), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(191,168,255,.15), transparent 28%),
    radial-gradient(circle at 55% 80%, rgba(138,244,208,.10), transparent 22%),
    linear-gradient(135deg, #07111f 0%, #0d172a 42%, #111827 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.background-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.grid-glow {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.22;
  animation: drift 15s ease-in-out infinite alternate;
}
.orb-a { width: 420px; height: 420px; top: 4%; left: -8%; background: var(--accent); }
.orb-b { width: 380px; height: 380px; top: 30%; right: -6%; background: var(--accent-2); animation-delay: -4s; }
.orb-c { width: 300px; height: 300px; bottom: 6%; left: 38%; background: var(--accent-3); animation-delay: -8s; }

@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(60px,36px,0) scale(1.12); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(22px);
  background: rgba(7, 17, 31, 0.74);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(142,230,255,.22), rgba(191,168,255,.20));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 1.6rem;
  color: var(--accent);
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); margin-top: 3px; font-size: .78rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .92rem;
  transition: .25s ease;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,.08);
}
.nav-cta {
  color: #07111f !important;
  background: linear-gradient(135deg, var(--accent), var(--gold)) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.07em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}
h3 { letter-spacing: -.02em; }

.eyebrow, .panel-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.85fr;
  gap: 26px;
  align-items: start;
  padding: 42px 0 50px;
}

.photo-panel,
.news-panel,
.glass-card,
.publication,
.news-item,
.course,
.cv-panel,
.contact-card,
.metrics article,
.science-card {
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.photo-panel,
.news-panel {
  border-radius: var(--radius-xl);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.photo-panel::before,
.news-panel::before,
.science-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(140deg, rgba(142,230,255,.10), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(242,211,138,.10), transparent 28%);
}
.photo-panel > *,
.news-panel > *,
.science-card > * { position: relative; }

.photo-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  margin: 10px 0 20px;
  background: linear-gradient(145deg, rgba(142,230,255,.18), rgba(191,168,255,.12));
  min-height: 320px;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-meta h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.photo-meta p,
.photo-meta li { color: var(--muted); }
.photo-meta ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.photo-meta li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  line-height: 1.45;
}
.photo-meta li span {
  display: block;
  color: var(--accent);
  margin-bottom: 4px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.profile-links a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: .9rem;
}

.hero-content {
  padding: 22px 4px 0;
}
.hero-text,
.section-heading p,
.cv-panel p,
.contact-card p,
.news-hint {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: #07111f;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 18px 40px rgba(142,230,255,.18);
}
.button.ghost { background: rgba(255,255,255,.06); }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.metrics article {
  padding: 18px;
  border-radius: var(--radius-md);
}
.metrics strong {
  display: block;
  font-size: 1.75rem;
  color: var(--accent);
}
.metrics span { color: var(--muted); font-size: .92rem; }

.news-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.news-panel-header h3 { margin-bottom: 0; }
.live-dot {
  color: #7ef5b9;
  font-size: 1rem;
  text-shadow: 0 0 15px rgba(126,245,185,.7);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: .25; }
}

.news-scroller-viewport {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.news-scroller-track {
  position: absolute;
  inset: 0 0 auto 0;
  padding: 12px;
  will-change: transform;
}
.news-ticker-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  margin-bottom: 12px;
}
.news-ticker-item time {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
}
.news-ticker-item h4 {
  margin: 8px 0;
  font-size: 1rem;
}
.news-ticker-item p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.news-hint {
  margin-top: 12px;
  font-size: .92rem;
}

.section { padding: 88px 0; }
.section-heading { margin-bottom: 34px; }

.animation-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.science-card {
  border-radius: var(--radius-lg);
  padding: 20px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
.mini-stage {
  height: 140px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(142,230,255,.12), transparent 25%),
    linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
}
.science-card p {
  color: var(--muted);
  line-height: 1.65;
}

.ai-stage .node {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(142,230,255,.8);
  animation: pulseNode 2.5s ease-in-out infinite;
}
.ai-stage .n1 { top: 20px; left: 30px; }
.ai-stage .n2 { top: 58px; left: 30px; animation-delay: .4s; }
.ai-stage .n3 { top: 96px; left: 30px; animation-delay: .8s; }
.ai-stage .n4 { top: 28px; right: 42px; animation-delay: .2s; }
.ai-stage .n5 { top: 58px; right: 42px; animation-delay: .6s; }
.ai-stage .n6 { top: 88px; right: 42px; animation-delay: 1s; }

.ai-stage .link {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(142,230,255,.6), transparent);
  transform-origin: left center;
}
.ai-stage .l1 { width: 118px; top: 26px; left: 40px; transform: rotate(12deg); }
.ai-stage .l2 { width: 118px; top: 33px; left: 40px; transform: rotate(0deg); }
.ai-stage .l3 { width: 118px; top: 48px; left: 40px; transform: rotate(-12deg); }
.ai-stage .l4 { width: 118px; top: 76px; left: 40px; transform: rotate(0deg); }
.ai-stage .l5 { width: 118px; top: 92px; left: 40px; transform: rotate(-10deg); }
.ai-stage .signal {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(242,211,138,.8);
}
.ai-stage .s1 { animation: networkFlow 3s linear infinite; }
.ai-stage .s2 { animation: networkFlow 3s linear infinite 1.4s; }

@keyframes pulseNode {
  0%,100% { transform: scale(1); opacity: .75; }
  50% { transform: scale(1.35); opacity: 1; }
}
@keyframes networkFlow {
  0%   { transform: translate(36px, 28px); opacity: 0; }
  10%  { opacity: 1; }
  35%  { transform: translate(90px, 43px); opacity: 1; }
  70%  { transform: translate(136px, 60px); opacity: 1; }
  100% { transform: translate(168px, 76px); opacity: 0; }
}

.poincare-disk {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(142,230,255,.36);
  background: radial-gradient(circle at center, rgba(142,230,255,.06), transparent 68%);
  overflow: hidden;
}
.hyper-stage .ring {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(191,168,255,.42);
  transform: translate(-50%, -50%);
  animation: expandRing 4.5s ease-out infinite;
}
.hyper-stage .r2 { animation-delay: 1.2s; }
.hyper-stage .r3 { animation-delay: 2.4s; }
.hyper-stage .geodesic {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(142,230,255,.26);
}
.hyper-stage .g1 { transform: scale(.88) rotate(15deg); }
.hyper-stage .g2 { transform: scale(.62) rotate(-25deg); }
.hyper-stage .g3 { transform: scale(.40) rotate(45deg); }
@keyframes expandRing {
  0% { width: 10%; height: 10%; opacity: .9; }
  100% { width: 100%; height: 100%; opacity: 0; }
}

.scan-box {
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(138,244,208,.28);
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 16px 16px;
}
.scan-line {
  position: absolute;
  left: 18px; right: 18px;
  height: 3px;
  top: 22px;
  background: linear-gradient(90deg, transparent, rgba(138,244,208,.9), transparent);
  box-shadow: 0 0 14px rgba(138,244,208,.7);
  animation: scanMove 3s ease-in-out infinite;
}
@keyframes scanMove {
  0%,100% { top: 24px; }
  50% { top: 110px; }
}
.ecg-svg {
  position: absolute;
  inset: auto 14px 26px 14px;
  width: calc(100% - 28px);
  height: 60px;
}
.ecg-svg polyline {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: ecgDraw 3s linear infinite;
}
@keyframes ecgDraw {
  0% { stroke-dashoffset: 320; opacity: 1; }
  80% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

.industry-stage .gear {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(142,230,255,.7);
  box-shadow: inset 0 0 0 8px rgba(142,230,255,.08);
}
.industry-stage .gear::before,
.industry-stage .gear::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(142,230,255,.26);
}
.gear-a {
  width: 58px; height: 58px;
  left: 34px; top: 34px;
  animation: spin 6s linear infinite;
}
.gear-b {
  width: 42px; height: 42px;
  left: 84px; top: 74px;
  border-color: var(--gold);
  box-shadow: inset 0 0 0 8px rgba(242,211,138,.06);
  animation: spinReverse 5s linear infinite;
}
.factory-bars {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: end;
}
.factory-bars span {
  width: 12px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--accent-3), rgba(138,244,208,.28));
  animation: barPulse 1.8s ease-in-out infinite;
}
.factory-bars span:nth-child(1){ height: 28px; animation-delay: .1s; }
.factory-bars span:nth-child(2){ height: 48px; animation-delay: .4s; }
.factory-bars span:nth-child(3){ height: 36px; animation-delay: .7s; }
.factory-bars span:nth-child(4){ height: 64px; animation-delay: 1s; }

@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes spinReverse { from { transform: rotate(360deg); } to { transform: rotate(0); } }
@keyframes barPulse {
  0%,100% { transform: scaleY(.82); opacity: .72; }
  50% { transform: scaleY(1.1); opacity: 1; }
}

.chart-grid {
  position: absolute;
  inset: 14px;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: 18px;
}
.market-svg {
  position: absolute;
  inset: auto 10px 12px 10px;
  width: calc(100% - 20px);
  height: 95px;
}
.market-svg polyline {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: marketTrace 4s linear infinite;
}
.pulse-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(242,211,138,.85);
  animation: dotMove 4s linear infinite;
}
@keyframes marketTrace {
  0% { stroke-dashoffset: 500; }
  70% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}
@keyframes dotMove {
  0%   { transform: translate(8px, 98px); opacity: 0; }
  10%  { opacity: 1; }
  18%  { transform: translate(34px, 82px); }
  28%  { transform: translate(58px, 86px); }
  38%  { transform: translate(84px, 64px); }
  52%  { transform: translate(110px, 67px); }
  68%  { transform: translate(140px, 46px); }
  82%  { transform: translate(170px, 33px); opacity: 1; }
  100% { transform: translate(198px, 20px); opacity: 0; }
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.glass-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  min-height: 260px;
  transition: transform .28s ease, border-color .28s ease;
}
.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(142,230,255,.45);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 18px;
  color: var(--accent);
  background: rgba(142,230,255,.11);
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.glass-card p, .publication p, .course p {
  color: var(--muted);
  line-height: 1.65;
}

.publication-list {
  display: grid;
  gap: 16px;
}
.publication {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
}
.year {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.2rem;
}
.publication h3 { margin-bottom: 8px; }
.publication a {
  display: inline-block;
  margin-right: 10px;
  color: var(--accent);
  font-weight: 800;
  font-size: .9rem;
}

.project-timeline {
  display: grid;
  gap: 18px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.project-timeline article {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 18px;
}
.timeline-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(142,230,255,.12);
  margin-left: -37px;
  margin-top: 5px;
}
.tag {
  color: var(--gold) !important;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
  margin-bottom: 6px;
}
.project-timeline p { color: var(--muted); line-height: 1.65; }

.two-column {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.course-grid { display: grid; gap: 16px; }
.course {
  padding: 24px;
  border-radius: var(--radius-lg);
}
.course span {
  color: var(--accent);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.cv-panel,
.contact-card {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 34px;
  align-items: center;
  border-radius: var(--radius-xl);
  padding: 34px;
}
.cv-highlights {
  display: grid;
  gap: 12px;
}
.cv-highlights article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
}
.cv-highlights strong,
.cv-highlights span { display: block; }
.cv-highlights strong {
  color: var(--gold);
  margin-bottom: 5px;
}
.cv-highlights span { color: var(--muted); }

.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}
input, textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
  font: inherit;
}
input:focus, textarea:focus {
  border-color: rgba(142,230,255,.70);
  box-shadow: 0 0 0 4px rgba(142,230,255,.10);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .news-panel {
    grid-column: 1 / -1;
  }
  .animation-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 980px) {
  .hero,
  .two-column,
  .cv-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .research-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .animation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: var(--header-h);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7,17,31,.97);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 14px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1280px); }
  .hero { padding-top: 28px; }
  .metrics,
  .research-grid,
  .animation-grid {
    grid-template-columns: 1fr;
  }
  .publication {
    grid-template-columns: 1fr;
  }
  .news-scroller-viewport { height: 360px; }
  .footer-inner { flex-direction: column; }
  h1 { font-size: clamp(2.6rem, 14vw, 4.2rem); }
}

/* ---------------------------------------------------------------
   Additive overrides — portrait rendering (square headshot)
   Keeps the original template intact; only tunes the photo frame.
--------------------------------------------------------------- */
.photo-frame {
  min-height: 0;
  aspect-ratio: 1 / 1;
}
.photo-frame img {
  object-position: center 28%;
}
.publication h3 {
  line-height: 1.35;
}
