*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
  
html, body {
  height: 100%;
  font-family: sans-serif;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}

.site-header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  min-width: 100%;    
  background-color: #858787;
}


.nav-links {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 1rem;
}
  
.nav-links a {
  white-space: nowrap;
  color: #535556;
  text-decoration: none;
  transition: 0.2s;
}
  
.nav-links a:hover {
  color: rgb(0, 0, 0);
}
  
.logo {
  font-family: serif;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}


.bio-page {
  position: relative;
  padding-left: 3rem;
  padding-right: 3rem; 
}

.bio-section {
  position: relative;
  width: auto;
  height: auto;
  overflow: hidden;
  box-sizing: border-box; 
}

.bio-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; 
  overflow: hidden;
}

.bio-image-wrapper lottie-player {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
}

.bio-text-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  padding: 2rem;
  color: white;
  display: flex;
  align-items: center;
  z-index: 1;
}

.blur-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
  pointer-events: none;
}

.bio-text {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  line-height: 1.5;
  margin-right: 20%;
}

.bio-text h1 {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-right: 20%;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .bio-text-block {
    position: static;
    width: 100%;
    height: auto;
    padding: 1.5rem;
    background: rgba(0,0,0,0.5);
    display: block;
  }

  .bio-text {
    line-height: 1.4;
    margin-right: 0;
    font-size: 1rem;
    text-align: center;
  }

  .bio-text h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .blur-overlay {
    display: none;
  }
  .bio-image-wrapper {
    width: 100%;
    height: auto;
    padding-top: 0;
  }

  .bio-image-wrapper lottie-player {
    position: static;
    width: 100%;
    height: auto;
  }


}




.info-section {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem; 
  padding-left: 3rem;
  padding-right: 3rem;
}


.info-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.info-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info-text {
  flex: 1;
  min-width: 250px;
  padding: 1rem; 
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .info-block {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .info-image img {
    max-width: 100%;
  }
}