
body {

  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0f1113;
  color: #ffffff;
  font-size: 16px;
}

/* Centered main block */
.center-block {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 16px;
  box-sizing: border-box;
}


.profile {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  padding-inline: clamp(12px, 5vw, 40px);
}

.photo {
  flex-shrink: 0;
}

.profile-photo {
  width: clamp(160px, 22vw, 280px);
  height: clamp(160px, 22vw, 280px);
  border-radius: 50%;
  object-fit: cover;

  border: 3px solid #b87333;
  box-shadow:
    0 0 0 1px rgba(184, 115, 51, 0.35),
    0 8px 24px rgba(0, 0, 0, 0.35);


  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-photo:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(107, 167, 255, 0.35);
}

.text {
  max-width: 520px;
}

.name {
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3rem);
  margin: 0;
}

.description,
.focus {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 16px;
}


.focus-list {
  list-style: none;
  padding-left: 1px;
  margin-bottom: 1.7rem;
}

.focus-list li {
  position: relative;
  margin-bottom: 15px;
  color: #e6e9ef;   
  font-weight: 400;
}

.focus-list li::before {
  content: "–";
  color: #b87333;
  font-size: 1.4em;     
  line-height: 1;
}

.focus-list .main-term {
  font-size: 1.6rem; 
  font-weight: 500;
  color: #ffffff;
}

.focus-list .sub-term {
  font-size: 1.2rem; 
  color: #aaaaaa;
}

.divider {
  color: #b87333;
  font-size: 1.3rem;
  margin: 18px 0 22px 0;
  letter-spacing: 0.2em;
  opacity: 0.85;
}

.link-group {
  margin-top: 5px;
  font-size: 1.1rem;
  line-height: 1.6;
  gap: 0.35rem 0.6rem;
}

.link-group a {
  color: #176B6B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-group a:hover {
  color: #b87333; 
}

.dot {
  color: #b87333; 
  margin: 0 0.35rem;
  font-size: 0.9em;
}


@media (max-width: 480px) {

  .description {
    font-size: 0.85rem;
  }

  .focus-list .main-term {
    font-size: 1rem;
  }

  .focus-list .sub-term {
    font-size: 0.85rem;
  }

  .link-group {
    font-size: 0.75rem;
  }

}



@media (max-width: 768px) {
  .profile {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 24px;
  }
  .text {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .center-block {
    padding: 48px 32px;
  }
}




