.notable-publications {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.publication-card {
  display: flex;
  flex-direction: column;
  padding: 22px 28px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.publication-card img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  margin-bottom: 1px;
}

.publication-content .publication-subtitle {
  color: #777;
  font-size: 1rem;
  margin-bottom: 1px;
  text-align: center;
}

.publication-content h3 {
  margin-top: 0;
  margin-bottom: 1px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.publication-content .authors {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.35;
}

.publication-content .venue {
  margin-top: 0;
  margin-bottom: 0;
  color: #555;
  line-height: 1.35;
}

.publication-content .abstract {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.45;
}

.publication-content p {
  margin-top: 0;

  line-height: 1.45;
  margin-bottom: 0;
}

.publication-content .pub-links {
  margin-bottom: 0;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.media-card {
  padding: 22px 26px;
  margin: 4px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.media-content {
  margin-bottom: 1px;
}

.media-content h3 {
  margin: 0 0 6px 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.media-meta {
  margin: 0;
  color: #666666;
  font-style: italic;
  line-height: 1.4;
}

.media-video-box {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #000000;
}

.media-video-box iframe,
.media-video-box video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: contain;
  background: #000000;
}

.facebook-video-box {
  max-width: 640px;
}