/* === GRID LAYOUT FOR IMAGES + VIDEOS === */
.evepre-conf-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two columns */
  grid-template-rows: auto auto auto; /* images row + stacked + videos row */
  gap: 10px;
}

/* Common styles for all media */
.evepre-conf-media-grid .media-item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* === IMAGES (TOP) === */
/* Tall image on the left (spans 2 rows) */
.evepre-conf-media-grid .tall-img {
  grid-row: 1/span 2; /* spans 2 rows (top & bottom of right side images) */
  grid-column: 1; /* left column */
  height: 100%;
}

/* Right top image */
.evepre-conf-media-grid .right-top-img {
  grid-row: 1; /* first row */
  grid-column: 2; /* right column */
  height: 200px;
}

/* Right bottom image */
.evepre-conf-media-grid .right-bottom-img {
  grid-row: 2; /* second row */
  grid-column: 2; /* right column */
  height: 200px;
}

/* === VIDEOS (BOTTOM) === */
/* Left video */
.evepre-conf-media-grid .video-left {
  grid-row: 3; /* third row */
  grid-column: 1; /* left column */
  height: 220px;
}

/* Right video */
.evepre-conf-media-grid .video-right {
  grid-row: 3; /* third row */
  grid-column: 2; /* right column */
  height: 220px;
}

/* === ARTICLE COLUMN (RIGHT SIDE) === */
.euf-conf-article-content {
  display: flex;
  align-items: center; /* vertically center content */
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .euf-conf-article-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
  }
}
.euf-conf-article-content .euf-conf-article-meta-content {
  max-width: 600px;
  text-align: left;
}
@media (max-width: 768px) {
  .euf-conf-article-content .euf-conf-article-meta-content {
    max-width: 100%;
    text-align: center;
  }
}
.euf-conf-article-content .euf-conf-article-meta-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: maroon;
}
@media (max-width: 768px) {
  .euf-conf-article-content .euf-conf-article-meta-content h2 {
    font-size: 1.5rem;
  }
}
.euf-conf-article-content .euf-conf-article-meta-content article p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .euf-conf-article-content .euf-conf-article-meta-content article p {
    font-size: 0.95rem;
  }
}

.euf-testimonial-card {
  margin: 2rem auto;
  padding: 2rem;
  background: silver;
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.euf-testimonial-card .euf-testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.euf-testimonial-card .euf-testimonial-item .euf-testimonial-avatar {
  margin-bottom: 1rem;
}
.euf-testimonial-card .euf-testimonial-item .euf-testimonial-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.euf-testimonial-card .euf-testimonial-item .euf-client-listing-rating {
  margin-bottom: 1rem;
}
.euf-testimonial-card .euf-testimonial-item .euf-client-listing-rating i {
  color: #800;
  font-size: 1rem;
  margin: 0 2px;
}
.euf-testimonial-card .euf-testimonial-item .euf-testimonial-article blockquote {
  margin: 0;
  padding: 0;
}
.euf-testimonial-card .euf-testimonial-item .euf-testimonial-article blockquote .testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}
.euf-testimonial-card .euf-testimonial-item .testimonial-author {
  margin-top: 1.5rem;
}
.euf-testimonial-card .euf-testimonial-item .testimonial-author h5 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #800;
}
.euf-testimonial-card .euf-testimonial-item .testimonial-author .overview {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
  }
  .testimonial-card .testimonial-item .testimonial-article .testimonial-text {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .testimonial-card {
    padding: 1rem;
  }
  .testimonial-card .testimonial-item .testimonial-avatar img {
    width: 65px;
    height: 65px;
  }
  .testimonial-card .testimonial-item .client-listing-rating i {
    font-size: 0.9rem;
  }
  .testimonial-card .testimonial-item .testimonial-article .testimonial-text {
    font-size: 0.9rem;
  }
  .testimonial-card .testimonial-item .testimonial-author h5 {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.min.css.map */