/** Shopify CDN: Minification failed

Line 71:8 Expected identifier but found whitespace
Line 71:10 Unexpected "{"
Line 71:19 Expected ":"
Line 78:8 Expected identifier but found whitespace
Line 78:10 Unexpected "{"
Line 78:19 Expected ":"

**/
/* Styling for main-private-sourcing section */
.main-private-sourcing {
  position: relative;
  padding: 100px 0; /* Adjust padding as needed for internal content spacing */
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* CRITICAL: This sets the minimum height of the hero container */
  overflow: hidden; /* Ensures content/image doesn't spill out */
  /* Note: background-image applied via inline style in Liquid */
}

.main-private-sourcing__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color and opacity are applied via inline style in Liquid for dynamic settings */
}

.main-private-sourcing__content {
  position: relative; /* Ensures content sits above overlay */
  z-index: 1; /* Puts content on top */
  max-width: 800px; /* Limits the width of the text content */
  margin: 0 auto; /* Centers the content block */
  width: 100%; /* Ensure it takes full width up to max-width */
}

.main-private-sourcing__preheading {
  font-size: 1.2em;
  margin-bottom: 10px;
  opacity: 0.8;
}

.main-private-sourcing__heading {
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.main-private-sourcing__subheading {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.main-private-sourcing__button {
  /* Basic button styling (Dawn's 'button' class should help) */
  display: inline-block;
  padding: 15px 30px;
  border-radius: var(--media-radius);
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
  .main-private-sourcing__button.button--primary {
  background-color: var(--color-background-button); /* Use Dawn's variables */
  color: {{ section.settings.button_text_color }}; /* Apply the custom text color */
  border: 2px solid var(--color-background-button); /* Match border to background if desired */
}

.main-private-sourcing__button.button--primary:hover {
  background-color: var(--color-background-button-hover);
  /* You might want a separate hover text color setting, or keep it consistent */
  color: {{ section.settings.button_text_color }}; /* Keep consistent or add new hover color setting */
}
/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .main-private-sourcing {
    padding: 60px 0;
    min-height: 300px; /* Adjust for smaller screens */
  }
  .main-private-sourcing__heading {
    font-size: 2.2em;
  }
  .main-private-sourcing__subheading {
    font-size: 1em;
  }
}
