/* ==========================================================================
   Live Group Company Introduction Widget Styles
   ========================================================================== */

.lg-intro-wrapper {
  position: relative;
  width: 100%;
  padding: 90px 24px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.lg-intro-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 60px;
  box-sizing: border-box;
}

/* Left Column: Heading & Paragraphs */
.lg-intro-left-col {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* Pill Badge */
.lg-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(235, 78, 38, 0.45);
  background-color: rgba(255, 255, 255, 0.8);
  color: #eb4e26;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.lg-intro-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #eb4e26;
}

.lg-intro-badge-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* Main Title */
.lg-intro-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

/* Paragraphs Wrap */
.lg-intro-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lg-intro-paragraph {
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

/* Right Column: Feature / Timeline List */
.lg-intro-right-col {
  flex: 0.9;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* Vertical Accent Bar */
.lg-intro-vertical-bar {
  width: 3px;
  background-color: #eb4e26;
  border-radius: 2px;
  flex-shrink: 0;
  margin-right: 32px;
}

/* Feature List */
.lg-intro-features-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.lg-intro-feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
  box-sizing: border-box;
}

.lg-intro-feature-item:last-child {
  border-bottom: none;
}

.lg-intro-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eb4e26;
  font-size: 24px;
}

.lg-intro-feature-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.lg-intro-feature-text {
  font-family: 'Fira Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #374151;
}

.lg-intro-feature-text strong,
.lg-intro-feature-text b {
  font-weight: 700;
  color: #111827;
}

/* Responsive Mobile Layout */
@media (max-width: 991px) {
  .lg-intro-container {
    flex-direction: column;
    gap: 40px;
  }

  .lg-intro-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .lg-intro-vertical-bar {
    margin-right: 20px;
  }

  .lg-intro-feature-item {
    padding: 16px 0;
    gap: 16px;
  }

  .lg-intro-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .lg-intro-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .lg-intro-feature-text {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .lg-intro-wrapper {
    padding: 60px 20px;
  }
}