/* This file will contain the CSS for the testimonials. */

body .dmm-testimonials-wrapper {
  column-count: 3;
  column-gap: 20px;
  padding-top: 40px;
}

.testimonial-box {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  padding: 30px;
  border-radius: 5px;
}

/* Triangle at the top */
.testimonial-box h3 {
  position: relative;
  height: 0;
  margin: 0;
  padding: 15px;
}

.testimonial-box h3::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 32px solid transparent;
  border-right: 32px solid transparent;
  border-top: 32px solid #fff;
}

/* Flex layout for logo + info */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

.test-logo {
  flex-shrink: 0;
}

.test-logo img {
  width: 90px;
  height: auto;
  border-radius: 5px;
  display: block;
}

.test-info {
  flex: 1;
  min-width: 0;
  padding-top: 10px;
}

.test-info h6 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.test-info .italic {
  display: block;
  font-style: italic;
  font-weight: normal;
  line-height: .9;
  margin-top: 0px;
}

.rating {
  color: gold !important;
  font-size: 30px !important;
  margin: 30px 0 0 0;
  padding: 10px 0 0 0;
  line-height: 1;
  margin-top: 0px;
  text-shadow: 2px 2px 6px #626262;
}

/* Quote paragraph */
.quote-paragraph p:first-child::before {
  content: '\201C';
  font-family: serif;
  font-size: 80px;
  float: left;
  line-height: 0.8;
  margin: -10px 10px -40px 0;
  color: #000;
}

.quote-paragraph p {
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

/* Bottom category label */
.testimonial-box h4 {
  color: #6f6f6f;
  font-family: sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
  margin-top: 38px;
}

.title {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 30px;
}

/* Colors and box styling */
.dmm-testimonials-wrapper .testimonial-box:nth-child(odd) {
  background-color: #d4eaf5; /* Blue */
}

.dmm-testimonials-wrapper .testimonial-box:nth-child(even) {
  background-color: #f0f0f0; /* Gray */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  body .dmm-testimonials-wrapper {
    column-count: 2;
  }
}

@media (max-width: 767px) {
  body .dmm-testimonials-wrapper {
    column-count: 1;
  }
} 