@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #4a3c31;
  background-color: #fdfaf7;
}

nav {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e6dfd5;
  padding-bottom: 1rem;
}

nav a {
  color: #4a3728;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

nav a:hover {
  color: #8b5a2b;
}

h1 {
  color: #3e2f23;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.byline {
  color: #7a6a5d;
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

h2, h3 {
  color: #3e2f23;
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 2rem;
  align-items: start;
}

.home-content {
  grid-column: 1;
}

.home-image {
  grid-column: 2;
}

.home-image img {
  width: 100%;
  border-radius: 8px;
  max-width: 200px;
}

a {
  color: #8b5a2b;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

a:hover {
  color: #5c4033;
  text-decoration: underline;
}

.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f5f0eb;
  color: #4a3728;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #e6dfd5;
  font-size: 0.9rem;
  margin-top: 1rem;
  font-family: 'Poppins', sans-serif;
}

.button:hover {
  background-color: #ece4db;
}

footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e6dfd5;
  font-size: 0.9rem;
  color: #7a6a5d;
  font-family: 'Poppins', sans-serif;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.research-card {
  background-color: #faf7f5;
  border: 1px solid #e6dfd5;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(74, 55, 40, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.research-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(74, 55, 40, 0.1);
}

.research-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.research-card p {
  font-size: 0.95rem;
  color: #6b5c50;
  flex-grow: 1;
}

.research-card .read-more {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}
