/* Base reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background-color: #f7f7fb;
  color: #222;
  scroll-behavior: smooth;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header & navigation */
.site-header {
  background-color: #111;
  color: #fff;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.site-title {
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  margin: 0;
}

.site-subtitle {
  margin: 0.1rem 0 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.site-nav a {
  color: #f5f5f5;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus {
  border-bottom-color: #ffcc33;
}

/* Main content */
.main-content {
  padding: 2rem 1rem 3rem;
}

.section {
  margin-bottom: 2.5rem;
  background-color: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Grid for About section */
.section-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.section-text p {
  margin-bottom: 0.75rem;
}

/* Profile card */
.profile-card {
  border-radius: 0.5rem;
  border: 1px solid #e1e1ea;
  padding: 1rem;
  background-color: #fafaff;
  font-size: 0.9rem;
}

.profile-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: #777;
}

.profile-placeholder img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.profile-role {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: #555;
}

.profile-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-links li {
  margin-bottom: 0.3rem;
}

/* Research items */
.research-item {
  margin-bottom: 1.5rem;
}

.research-item h3 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

/* Publications */
.pub-list {
  padding-left: 1.1rem;
}

.pub-list li {
  margin-bottom: 0.9rem;
}

/* Links */
a {
  color: #1f5fbf;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  border-top: 1px solid #ddd;
  padding: 1rem 0;
  font-size: 0.85rem;
  background-color: #f0f0f5;
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    margin-top: 0.5rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }
}
.media-news-list {
  margin-top: 1.5rem;
}

.media-news-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.media-news-date {
  min-width: 8rem;
  font-weight: 600;
}

.media-news-text {
  flex: 1;
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.award-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.award-date {
  min-width: 8rem;
  font-weight: 600;
}

.award-text {
  flex: 1;
}

.award-image {
  margin-top: 1rem;
  max-width: 350px;
  border-radius: 8px;
}

.award-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.award-image {
  max-width: 48%;
  height: auto;
  border-radius: 8px;
}

.award-links {
  margin-top: 0.5rem;
}

.media-news-image {
  max-width: 30%;
  height: auto;
  border-radius: 8px;
}

