/** Shopify CDN: Minification failed

Line 97:11 Expected ":"
Line 154:11 Expected ":"

**/
/* Main Section Container */
.meta-proven-study {
  padding: 60px 20px; /* Adds vertical and horizontal spacing */
  max-width: 1400px;  /* Constrains the width on large screens */
  margin: 0 auto;     /* Centers the section on the page */
  box-sizing: border-box;
}

/* --- Header --- */
.meta-header {
  text-align: center; /* Centers the heading and intro paragraph */
  margin-bottom: 50px;
}

.meta-header .pf-heading {
  font-size: 6rem; /* Example font size for the main heading */
  text-transform: uppercase;
  font-family: Gilroy, sans-serif;
  margin-bottom: 1rem;
  font-weight: bold;
}

.meta-header .pf-text {
  font-size: 2rem;
  max-width: 1000px; /* Prevents the intro text from becoming too wide */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* --- Content Layout (Image & Results) --- */
.meta-content {
  display: flex;
  align-items: center; 
  gap: 80px;          
  flex-wrap: wrap;     
}

/* Image Column */
.meta-image {
  flex: 1 1 40%;    /* Allows the image to take up roughly 40% of the width */
  min-width: 300px; /* Ensures the image doesn't get too squished */
}

.meta-image img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit:cover;
  display: block; /* Removes any extra space below the image */
  border-radius: 8px; /* Optional: adds slightly rounded corners */
}

/* Results Column */
.meta-results {
  flex: 1 1 50%; /* Allows the results to take up roughly 50% of the width */
}

.meta-results .pf-heading {
  font-size: 5rem;
  margin-top: 0;
  border-left: 5px solid #e70227;
  padding-left: 2rem;
  font-weight: bold;
  font-family:Gilroy, sans-serif;
  margin-bottom: 25px;
}

/* Results List Styling */
.results-list {
  list-style: none; /* Removes default bullet points */
  padding: 0;
  margin: 0;
}

.result-item {
  display: flex;
  align-items: center;
  border: 1px solid #ddd; /* A subtle border color */
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 25px; /* Space between each result item */
}
/* New wrapper for the icon */
.result-icon {
  width: 8rem;      /* Controls icon size */
  height: auto;
  margin-right: 15px; /* Space between icon and text */
  flex-shrink: 0;     /* Prevents the icon from shrinking */
  backgroun
}

/* Styles the SVG itself */
.result-icon svg {
  width: 100%;
  height: 100%;
  fill: #E72027; /* Use 'fill' to color SVGs, not 'color' */
}

.result-item p {
  font-size: 2rem;
  margin: 0; /* Resets default paragraph margin */
  line-height: 1.5;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .meta-content {
    flex-direction: column; /* Stacks the image and results vertically */
    gap: 2rem;
  }

  .meta-header .pf-heading {
    font-size:4rem;
  }

  .meta-header .pf-text {
    font-size: 1.8rem;
  }

  .meta-results .pf-heading {
  font-size: 3.3rem;

}

.meta-image img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit:cover;
  display: block; /* Removes any extra space below the image */
  border-radius: 8px; /* Optional: adds slightly rounded corners */
}

  
  .meta-results {
    width: 100%;
    margin-top: 30px; /* Adds space above the results when stacked */
  }

/* New wrapper for the icon */
.result-icon {
  width: 6rem;      /* Controls icon size */
  height: auto;
  margin-right: 15px; /* Space between icon and text */
  flex-shrink: 0;     /* Prevents the icon from shrinking */
  backgroun
}

/* Styles the SVG itself */
.result-icon svg {
  width: 100%;
  height: 100%;
  fill: #E72027; /* Use 'fill' to color SVGs, not 'color' */
}

.result-item p {
  font-size: 1.7rem;
  margin: 0; /* Resets default paragraph margin */
  line-height: 1.5;
}

}