body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../img/yy.jpg") repeat;
  background-size: cover;
  opacity: 50;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9999;
}

body {
  font-family: 'Schibsted Grotesk', Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #000;
  letter-spacing: -0.04em; 
  font-weight: 600; 
  color: #000000; 
  text-shadow: 0px 0px 1px rgba(1, 24, 15, 0.767); 
}


.bg-index {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2; 
  filter: blur(2px);
  overflow: hidden;
}

.bg-index iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none; 
}


.container {
  position: relative;
  padding: 30px;
  box-sizing: border-box;
}
.container {
  padding: 30px 30px;
  position: relative;
}


.nav-left {
  position: absolute;
  top: 20px;
  left: 30px;
}

.nav-right {
  position: absolute;
  top: 18px;
  right: 30px;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 600;
}


.bio {
  margin-top: 80px;
  max-width: 900px;
  font-size: 14px;
  line-height: 1.6;
}

.bio h2 {
  margin-bottom: 15px;
  font-size: 16px;
}


.bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-top: 80px;
}

.col h3 {
  font-size: 15px;
  margin-bottom: 15px;
}

.col p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.5;
}

.col a {
  text-decoration: none;
  color: black;
  font-weight: 600; 
}

.col a:hover {
  text-decoration: underline; 
}

.exhibition .content-wrapper {
  max-height: 0; 
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.exhibition .content-wrapper.open {
  max-height: 2000px;
}

.toggle-title {
  cursor: pointer;
  display: inline-block;
  transition: color 0.3s, border-color 0.3s;
}

.toggle-title:hover {
  color: #000000;
  border-color: #000;
}




@media (max-width: 480px) {
  .container {
    padding: 20px; 
  }

  
  .top-nav {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 20px; 
    margin-bottom: 20px;
  }

.nav-left {
  left: 20px;
}

.nav-right {
  right: 20px;
}

  .top-nav a {
    font-size: 13px;
    text-decoration: none;
    color: black;
    font-weight: 600;
  }

  .bio {
    font-size: 13px;
    margin-top: 20px;
    text-align: justify;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}

