@charset "UTF-8";
/**
 * Frontend styles for the Research block.
 */
.ima-research {
  padding: 4rem 0;
  background: #f9f9f9;
}
.ima-research .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ima-research .heading {
  text-align: center;
  margin-bottom: 1.5rem;
}
.ima-research .heading .eyebrow {
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  padding: 0;
  text-align: left;
}
.ima-research .heading h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.2rem;
  text-align: left;
}
.ima-research .research-carousel {
  position: relative;
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.ima-research .research-carousel .swiper-wrapper {
  display: flex;
}
.ima-research .research-carousel .swiper-slide {
  height: auto;
}
.ima-research .research-image {
  width: 215px;
  height: 250px;
  margin: 0 auto 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 3/4;
  background: #e0e0e0;
}
.ima-research .research-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.ima-research .research-image:hover img {
  transform: scale(1.05);
}
.ima-research .research-image .placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ima-research .research-image .placeholder-image::after {
  content: "📷";
  font-size: 3rem;
  opacity: 0.3;
}
.ima-research .disclaimer {
  margin-top: 2rem;
}
.ima-research .disclaimer p {
  font-size: 0.9rem;
  margin: 0 auto;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .ima-research .heading h2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .ima-research {
    padding: 3rem 0;
  }
  .ima-research .heading h2 {
    font-size: 1.75rem;
  }
  .ima-research .disclaimer p {
    font-size: 0.95rem;
  }
}
