.ct-feature {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #dbdbdb;
  border-radius: 16px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  height: 90%;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
  margin: 25px;
  box-sizing: border-box;
  /* 패딩이 전체 크기에 영향을 주도록 설정 */
  /* 카드 내부 컨텐츠 정렬을 위한 Flexbox 설정 */
  display: flex;
  flex-direction: column;
  /* 아이템을 세로로 정렬 */
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: #E63946;
  line-height: 1;
  opacity: 0.8;
}

.testimonial-content {
  margin-top: 20px;
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.testimonial-content::after {
  content: '”';
  display: block;
  /* 블록 요소로 만들어 줄을 바꿈 */
  text-align: right;
  /* 오른쪽으로 정렬 */
  font-size: 80px;
  font-family: Georgia, serif;
  color: #E63946;
  line-height: 0.5;
  /* 따옴표의 상하 공간을 줄여 자연스럽게 만듦 */
  margin-top: 10px;
  /* 본문과 살짝 간격을 둠 */
  opacity: 0.8;
}

.testimonial-hashtag {
  font-size: 15px;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 30px;
  margin-top: auto;
  /* 핵심! 남는 세로 공간을 모두 차지해 아래 요소들을 맨 밑으로 보냄 */
  padding-top: 25px;
  /* 본문과 최소 간격을 확보하기 위한 패딩 */
}

.testimonial-author .name {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.testimonial-author .title {
  font-size: 14px;
  color: #666;
  margin: 4px 0 0 0;
}


/**
  company part
*/
.company-swiper-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.company-swiper-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.company-swiper-content {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: scroll 40s linear infinite;
}

.company-slide {
    flex-shrink: 0;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-company {
    height: 120px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}