/* Core styles */
body {
  margin: 0;
  padding: 40px;
  font-family: 'Futura', Verdana, sans-serif;
  line-height: 1.75;
  background: #ffffff;
  color: #565656;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.brand {
  flex: 1;
}

.site-title {
  font-size: 1.4375rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
  color: #000;
}

.site-description {
  color: #686868;
  font-size: 0.8125rem;
  margin: 0;
  font-weight: normal;
}

/* Navigation */
nav {
  text-align: right;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #565656;
  text-decoration: none;
  font-size: 0.9rem;
}

nav a:hover {
  color: #1f9caf;
}

/* Main content */
main {
  max-width: 900px;
}

h1 {
  font-size: 1.4rem;
  font-weight: normal;
  margin: 2em 0;
  color: #000;
}

.news-item {
  margin-bottom: 2em;
  color: #686868;
  font-size: 0.9rem;
}

hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 2em 0;
}

/* Images */
.image-container {
  margin: 2em 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1em;
}

.image-caption {
  font-size: 0.9rem;
  color: #686868;
  margin-top: 0.5em;
  font-style: italic;
}

.project-title {
  color: #686868;
  margin: 2em 0;
  font-size: 0.9rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  margin: 4em 0;
}

.bio-text {
  color: #686868;
  font-size: 0.9rem;
  margin-top: 2em;
}

.education, .exhibitions {
  margin: 2em 0;
  color: #686868;
  font-size: 0.9rem;
}

h2 {
  font-size: 0.9rem;
  font-weight: normal;
  color: #686868;
  margin: 2em 0 1em;
}

.image-frame {
  background: #f6f6f6;
  padding: 2em;
  margin: 2em 0;
  max-width: 600px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  margin: 2em 0;
  max-width: 600px;
}

.image-grid img {
  width: 100%;
  height: auto;
}

.description {
  margin: 0;
  position: sticky;  /* This helps keep the description in view */
  top: 50%;
  transform: translateY(-50%);  /* Fine-tune the vertical position */
}

.description {
  margin: 2em 0;
  max-width: 600px;
}

.description p {
  color: #686868;
  font-size: 0.9rem;
  margin: 1em 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 4em;
  margin: 2em 0;
  align-items: center;  /* Center items vertically */
}

.brand a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.brand a:hover {
  color: #1f9caf;
}

.brand a:hover .site-title {
  color: #1f9caf;
}


/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  header {
    flex-direction: column;
    margin-bottom: 40px;
  }

  nav {
    margin-top: 20px;
    text-align: left;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .content-grid {
    grid-template-columns: 1fr; /* Change to single column */
    gap: 2em;
  }

  .image-grid {
    grid-template-columns: 1fr; /* Stack images in a single column */
  }

  .image-frame, .description {
    max-width: 100%; /* Make these containers responsive */
  }
}
