* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body-bage {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin: 80px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.image-body {
  flex-shrink: 0;
  padding-top: 20px;
}

.image-body img {
  width: 280px;
  height: 280px;
  max-width: 90vw;
  max-height: 90vw;
  border-radius: 50%;
  border: solid 5px var(--color-secondary);
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.body-section {
  text-align: right;
  flex-grow: 1;
  max-width: 700px;
}

.body-section h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-primary-dark, #0b2545);
  margin-bottom: 25px;
  border-right: 4px solid var(--color-secondary);
  padding-right: 15px;
  line-height: 1.3;
}

.body-section p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-dark, #333);
  text-align: justify;
}

.name-leader {
  color: var(--color-secondary);
  display: block;
  margin-top: 20px;
  font-size: 1.15rem;
  font-weight: 700;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 992px) {
  .body-section p {
    text-align: right;
    font-size: 1rem;
    line-height: 1.6;
  }

  .body-bage {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 40px auto;
  }

  .body-section h1 {
    text-align: center;
    border-right: none;
    border-bottom: 3px solid var(--color-secondary);
    padding-right: 0;
    padding-bottom: 10px;
  }
}
