/* Concerns Section */
.concerns {
  padding: 0 150px 340px 150px;
  background-color: #f9f3eb;
}

.concerns__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.concerns__title {
  font-weight: 700;
  font-size: 48px;

  text-align: center;
  line-height: 77px;
  margin: 0;
}

.concerns__content {
  width: 100%;
  max-width: 940px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.concerns__item {
  width: 620px;
  height: 182px;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 90px;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.08);
}

.concerns__item--left {
  justify-content: flex-start;
  border-bottom-left-radius: 0;
}

.concerns__item--right {
  justify-content: flex-end;
  flex-direction: row;
  border-bottom-right-radius: 0;
  margin-left: auto;
}

.concerns__avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.concerns__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concerns__text {
  flex: 1;
  max-width: 426px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.concerns__text p {
  font-weight: 700;
  font-size: 24px;

  text-align: center;
  line-height: 1.5;
  margin: 0;
}

.concerns__text p:not(:last-child) {
  margin-bottom: 0;
}

.concerns__highlight {
  color: #ff6666 !important;
}

@media (max-width: 1200px) {
  .concerns {
    padding: 0 80px 340px 80px;
  }
}

@media (max-width: 768px) {
  .concerns {
    padding: 0 24px 280px 24px;
  }

  .concerns__title {
    font-size: 24px;
    line-height: 39px;
  }

  .concerns__container {
    gap: 24px;
  }

  .concerns__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .concerns__item {
    border-radius: 60px;
    padding: 24px 16px;
    width: 100%;
    max-width: 460px;
    height: 118px;
    gap: 8px;
  }

  .concerns__item--left {
    border-bottom-left-radius: 0;
  }

  .concerns__item--right {
    border-bottom-right-radius: 0;
    margin-left: auto;
  }

  .concerns__text {
    max-width: none;
  }

  .concerns__text p {
    font-size: 14px;
  }

  .concerns__avatar {
    width: 70px;
    height: 70px;
  }
}
