/* Rainy Glow Theme for Research Page */

body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: linear-gradient(to bottom right, #dce9f4, #b3cde0);
  color: #1a1a1a;
}

/* Page container */
.pagecontainer {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 20, 60, 0.1);
}

/* Section Headings */
h2, h3, h4 {
  color: #2b3e5f;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Research Outline List */
.research-outline ul.int {
  font-size: 1rem;
  padding-left: 1.2rem;
  margin-top: 1rem;
}

.research-outline ul.int li {
  line-height: 1.8;
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

/* Paper Highlight Card */
.paper-card {
  background: linear-gradient(to bottom right, #f2f9ff, #d6e7f2);
  border-radius: 10px;
  padding: 1.2rem;
  margin-top: 1rem;
  box-shadow: 0 4px 10px rgba(0, 40, 80, 0.1);
}

.paper-card a {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #4d7ea8;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.paper-card a:hover {
  background: #385f7c;
}

/* Slideshow */
.slideshow-section {
  margin-top: 2rem;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 40, 80, 0.1);
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  transition: opacity 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .pagecontainer {
    padding: 1rem;
  }

  .slide-image {
    height: 200px;
  }

  .paper-card {
    font-size: 0.95rem;
  }
}
