.testimonials-section {
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
}

.testimonials-section .container {
  max-width: 1600px;
}

.host-card {
  background: #fff4ed;
  border: 1.29px solid #f96805;
  border-radius: 24px;
  padding: 14px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.host-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(249, 104, 5, 0.15);
}

.host-card-img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 1.03;
  object-fit: cover;
  margin-bottom: 16px;
}

.host-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px 16px;
  gap: 16px;
}

.host-info {
  flex: 1;
}

.host-name {
  font-family: "Clash Display", sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #f96805;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
}

.host-title {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  margin: 6px 0 0 0;
  line-height: 1.3;
}

.host-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Testimonial Card Styles */
.testimonial-card {
  background: #fff4ed;
  border: 1.29px solid #f96805;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(249, 104, 5, 0.15);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.testimonial-avatar {
  width: 71px;
  height: 71px;
  border-radius: 77px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  color: #f96805;
  margin: 0;
  line-height: 1.3;
}

.testimonial-title {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin: 4px 0 0 0;
  line-height: 1.4;
}

.star-rating {
  flex-shrink: 0;
}

.star-icon {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: #f96805;
  border: 1px solid #f96805;
  margin-bottom: 28px;
}

.testimonial-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
  margin: 0;
  letter-spacing: 0.01em;
}

@media (max-width: 1450px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-section .container {
    max-width: 1350px;
    padding: 0 30px;
  }

  .host-card {
    padding: 13px;
  }

  .host-card-img {
    margin-bottom: 14px;
    border-radius: 22px;
  }

  .host-card-content {
    padding: 0 14px 14px;
    gap: 14px;
  }

  .host-name {
    font-size: 42px;
  }

  .host-title {
    font-size: 18px;
    margin: 5px 0 0 0;
  }

  .host-icon {
    width: 52px;
    height: 52px;
  }

  .testimonial-card {
    padding: 36px;
    border-radius: 22px;
  }

  .testimonial-header {
    gap: 14px;
    margin-bottom: 26px;
  }

  .testimonial-avatar {
    width: 55px;
    height: 55px;
  }

  .testimonial-name {
    font-size: 17px;
  }

  .testimonial-title {
    font-size: 14px;
    margin: 3px 0 0 0;
  }

  .star-icon {
    width: 15px;
    height: 15px;
  }

  .testimonial-divider {
    margin-bottom: 26px;
  }

  .testimonial-text {
    font-size: 19px;
    line-height: 1.45;
  }
}

@media (max-width: 1280px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-section .container {
    max-width: 1140px;
    padding: 0 25px;
  }

  /* Host Card */
  .host-card {
    padding: 12px;
  }

  .host-card-img {
    margin-bottom: 12px;
    border-radius: 20px;
  }

  .host-card-content {
    padding: 0 12px 12px;
    gap: 12px;
  }

  .host-name {
    font-size: 38px;
  }

  .host-title {
    font-size: 17px;
  }

  .host-icon {
    width: 48px;
    height: 48px;
  }

  /* Testimonial Card */
  .testimonial-card {
    padding: 32px;
    border-radius: 20px;
  }

  .testimonial-header {
    gap: 12px;
    margin-bottom: 24px;
  }

  .testimonial-avatar {
    width: 64px;
    height: 64px;
  }

  .testimonial-name {
    font-size: 18px;
  }

  .testimonial-title {
    font-size: 14px;
  }

  .star-icon {
    width: 21px;
    height: 21px;
  }

  .testimonial-divider {
    margin-bottom: 24px;
  }

  .testimonial-text {
    font-size: 18px;
    line-height: 1.5;
  }
}

@media (max-width: 1024px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-section .container {
    max-width: 960px;
    padding: 0 20px;
  }

  /* Host Card */
  .host-card {
    padding: 11px;
  }

  .host-card-img {
    margin-bottom: 11px;
    border-radius: 18px;
  }

  .host-card-content {
    padding: 0 11px 11px;
    gap: 11px;
  }

  .host-name {
    font-size: 34px;
  }

  .host-title {
    font-size: 16px;
  }

  .host-icon {
    width: 46px;
    height: 46px;
  }

  /* Testimonial Card */
  .testimonial-card {
    padding: 28px;
    border-radius: 18px;
  }

  .testimonial-header {
    gap: 11px;
    margin-bottom: 22px;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
  }

  .testimonial-name {
    font-size: 17px;
  }

  .testimonial-title {
    font-size: 14px;
  }

  .star-icon {
    width: 20px;
    height: 20px;
  }

  .testimonial-divider {
    margin-bottom: 22px;
  }

  .testimonial-text {
    font-size: 17px;
    line-height: 1.55;
  }
}

@media (max-width: 991px) {
  .host-name {
    font-size: 32px;
  }

  .host-title {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 28px;
  }
}

@media (max-width: 835px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .host-card {
    padding: 12px;
  }

  .host-name {
    font-size: 28px;
  }

  .host-title {
    font-size: 15px;
  }

  .host-icon {
    width: 44px;
    height: 44px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-header {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
  }

  .testimonial-name {
    font-size: 17px;
  }

  .testimonial-title {
    font-size: 14px;
  }

  .star-icon {
    width: 20px;
    height: 20px;
  }

  .testimonial-divider {
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .testimonials-section {
    padding: 30px 0;
  }

  .host-card-content {
    padding: 0 12px 12px;
  }

  .host-name {
    font-size: 24px;
  }

  .host-title {
    font-size: 14px;
  }

  .host-icon {
    width: 40px;
    height: 40px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-avatar {
    width: 55px;
    height: 55px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .testimonial-title {
    font-size: 13px;
  }

  .star-icon {
    width: 18px;
    height: 18px;
  }

  .testimonial-text {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .host-name {
    font-size: 22px;
  }

  .host-title {
    font-size: 13px;
  }

  .testimonial-card {
    padding: 18px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .testimonial-name {
    font-size: 15px;
  }

  .testimonial-title {
    font-size: 12px;
  }

  .star-icon {
    width: 16px;
    height: 16px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.5;
  }
}
