.about-title {
  font-family: "Modern No. 20", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(3.2rem, 3vw, 3.6rem);
  line-height: 3.9rem;
  text-align: center;
  color: #fff;
}
.ceo {
  width: 100%;
  min-width: var(--min-width);
  height: 100vh;
  background: url("/home_assets/img/about/blurBackground.png") no-repeat
    center/cover var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 clamp(1.6rem, 3vw, 4rem);
  position: relative;
  overflow: hidden;
}

.ceo-container {
  width: 100%;
  max-width: 120rem;
  padding-bottom: 5rem;
}

.ceo-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.1rem;
  color: #fff;
}
.ceo-profile {
  width: 30%;
  min-width: 28.5rem;
}
.ceo-profile img {
  width: 100%;
}
.ceo-greeting {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.greeting-line {
  width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.greeting-line.line::before {
  position: absolute;
  content: "";
  width: 4.6rem;
  height: 0.1rem;
  background-color: var(--main-font-color);
}
.greeting-line,
.greeting-line span {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: clamp(1.6rem, 1vw, 1.8rem);
  line-height: 3rem;
  letter-spacing: -0.02em;
}

.closement {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.8rem, 1vw, 2rem);
  line-height: 2.4rem;
  text-align: right;
}

@media (max-width: 768px) {
  .ceo {
    height: 100%;
  }
  .ceo-content {
    width: 100%;
    flex-direction: column;
  }
  .ceo-profile {
    width: 60%;
  }
  .ceo-greeting {
    width: 100%;
  }
  .greeting-line {
    width: 100%;
  }
  .greeting-line br {
    display: none;
  }
}
