/* Intro Section Custom Card Styling */
.intro_class {
  position: relative;
  border: 1px solid #f14141;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
  display: flex;
  align-items: center;
}

/* Transparent Overlay Layer */
.intro_class .intro_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: transparent;
  z-index: 1;
  transition: width 0.3s ease;
}

/* Text Container Constrained Within Overlay Area */
.intro_class .intro_content {
  position: relative;
  z-index: 2;
  width: 38%;
  padding: 20px;
}

/* Typography */
.intro_class .intro-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.intro_class .text-studio {
  color: #f14141;
}

.intro_class .intro-hr {
  width: 50%;
  border: 0;
  border-top: 2px solid #f14141;
  opacity: 1;
  margin: 8px 0 10px 0;
}

.intro_class .intro-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.38;
  margin-bottom: 0;
}

/* Background Image Utilities */
.bg-visit-studio {
  background-image: url('../img/visit_our_studio.png');
}

.bg-come-to-you {
  background-image: url('../img/we_come_to_you.png');
}

/* Responsive Mobile Breakpoints */
@media (max-width: 991.98px) {
  .intro_class .intro_overlay {
    width: 50%;
  }
  .intro_class .intro_content {
    width: 48%;
  }
}

@media (max-width: 767.98px) {
  .intro_class {
    min-height: 240px;
  }
  .intro_class .intro_overlay {
    width: 65%;
  }
  .intro_class .intro_content {
    width: 62%;
    padding: 16px;
  }
  .intro_class .intro-title {
    font-size: 0.95rem;
  }
  .intro_class .intro-text {
    font-size: 0.72rem;
  }
}