/* ===================================
   ABOUT-BACKGROUND-1 Component Styles
   Background Section with Image
   =================================== */

.about-background-1 {
  padding: var(--spacing-3xl) var(--spacing-lg);
  background-color: #f5f5f5;
  position: relative;
}

.about-background-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50/50 split */
  gap: 60px;
  align-items: center;
  background-color: var(--color-background-light);
  padding: 60px;
  border-radius: 30px;
}

/* ===================================
   Left Column - Content
   =================================== */

.background-content {
  position: relative;
  z-index: 2;
}

/* Eyebrow Text */
.background-eyebrow {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--color-primary);
  font-weight: 600;
}

.eyebrow-slash {
  color: var(--color-accent);
  font-weight: 700;
}

/* Heading */
.background-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 25px;
}

/* Description */
.background-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-dark);
  margin: 0;
}

/* ===================================
   Right Column - Image
   =================================== */

.background-image {
  position: relative;
  border-radius: 0 0 0 100px; /* top-left, top-right, bottom-right, bottom-left */
  overflow: hidden;
}

.background-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 0 100px; /* only bottom-left corner heavily rounded */
  object-fit: cover;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
  .about-background-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 40px;
  }

  .background-heading {
    font-size: 36px;
    text-align: center;
  }

  .background-eyebrow {
    text-align: center;
  }

  .background-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-background-1 {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .about-background-container {
    padding: 40px 30px;
    border-radius: 20px;
  }

  .background-heading {
    font-size: 32px;
  }

  .background-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-background-container {
    padding: 30px 20px;
  }

  .background-heading {
    font-size: 26px;
  }

  .background-description {
    font-size: 14px;
  }
}
