.lab-logo {
  max-height: 100px;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.hero-content {
  padding: 2rem 0;
}

.lab-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto;
  line-height: 1.5;
}

.lab-director {
  color: #8C1515;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  font-weight: 600;
}

.lab-director a {
  color: #8C1515;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s ease;
}

.lab-director a:hover {
  border-bottom: 1px solid #8C1515;
}

.director-card {
  background-color: #8C1515;
  color: white;
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 1.5rem auto;
  margin-bottom: 0rem;
  margin-top: 2rem;
  max-width: 500px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.director-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.director-card strong {
  color: white;
}

.paper-card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  height: 100%;
  border-radius: 8px;
  border: 1px solid #e1e5e9;
}

.paper-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.paper-title {
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.paper-authors {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.paper-venue {
  color: #8C1515;
  font-weight: 500;
  font-size: 0.95rem;
}

.award-badge {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-block;
}

.paper-card-award {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  height: 100%;
  border-radius: 8px;
  border: 2px solid #D4AF37;
  background: linear-gradient(135deg, #FDF8E1 0%, #F8F0D6 100%);
  position: relative;
  overflow: hidden;
}

.paper-card-award::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #FFD700, #B8860B, #D4AF37);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.paper-card-award:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.paper-card-award .paper-title {
  color: #8C1515;
  font-weight: 700;
  position: relative;
}

.paper-card-award .paper-venue {
  color: #B8860B;
  font-weight: 600;
  position: relative;
}

.research-areas {
  background: #8C1515;
  color: white;
}

.recent-publications {
  background: #8C1515;
  color: white;
}

.area-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin: 0.25rem;
  display: inline-block;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background 0.2s ease-in-out;
  cursor: pointer;
}

.area-tag:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.3);
}

.hero-gradient {
  background: white;
}

.button.is-macro {
  font-size: 0.9rem;
  padding: 0.58em 1.25em;
  height: 2.28em;
}