.faq__img {
  width: 100%;
  height: 560px;
  border-radius: 16px;
  overflow: hidden;
}

.faq__img_full {
  border-radius: unset;
  height: 700px;
}

.faq__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.faq__img_full img {
  object-position: unset !important;
}

.faq-item-top {
  position: relative;
}

.faq-item-top:hover .faq-button {
  opacity: 0.5;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.faq-title {
  padding: 28px 68px 28px 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  color: var(--c-black);
  cursor: pointer;
}

.faq-button {
  padding: 8px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-gray-light);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.faq-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-text {
  display: none;
  padding-bottom: 25px;
  font-size: 24px;
  color: #595959;
}

@media (max-width: 768px) {
  .faq-button {
    top: 48%;
  }

  .faq__img {
    height: 200px;
  }

  .faq__img_full {
    height: 400px;
  }

  .faq__img img {
    object-position: 0 84%;
  }

  .faq-title {
    font-size: 16px;
  }

  .faq-text {
    font-size: 16px;
  }
}
