/*
 * Fix for hero text going under the fixed menu on desktop.
 * Targets the inner slide container to add top padding.
 */
@media (min-width: 1025px) {
  .slide-inner {
    padding-top: 150px; /* Adjust this value as needed */
  }
}
/* The overall values band */

/* ===== Our Culture & Values band ===== */

/* Band background + spacing */
.values-wrap {
  background: #F6F6F6;
  border-radius: 16px;
  padding: 48px 0;
}

/* Center content + limit width */
.values-wrap .panel-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- LEFT COLUMN (images) --- */
/* Remove SiteOrigin Image widget's default grey box/padding */
.values-wrap .so-widget-sow-image .sow-image-container {
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Actual images: rounded + soft shadow */
.values-wrap .panel-grid-cell:first-child img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}

/* Overlap the second image slightly */
.values-wrap .panel-grid-cell:first-child .so-widget-sow-image:nth-of-type(2) {
  margin-top: -24px;
}

/* --- RIGHT COLUMN (white card) --- */
/* Make the single content widget look like a card */
.values-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  padding: 32px;
  position: relative;
  z-index: 2;
  margin-top: 16px;  /* so it 'floats' a touch */
}

/* Eyebrow label */
.values-card .eyebrow,
.eyebrow { /* (works if you used a separate widget too) */
  color: #5c1633;        /* Buttercross burgundy */
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

/* Headline + body tidy-up */
.values-card h2 {
  margin: 6px 0 12px;
}
.values-card p,
.values-card li {
  font-size: 1rem;
  line-height: 1.6;
  color: #1d1d1f;
}

/* Bullets: cleaner spacing */
.values-card ul {
  margin: 0;
  padding-left: 1.2em;       /* aligns bullets nicely */
  list-style-position: outside;
}
.values-card li { margin-bottom: 8px; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .values-wrap { padding: 36px 0; }
  .values-card { padding: 24px; border-radius: 22px; }
  .values-wrap .panel-grid { padding: 0 16px; }
}
@media (max-width: 767px) {
  .values-wrap { padding: 28px 0; }
  .values-wrap .panel-grid-cell:first-child .so-widget-sow-image:nth-of-type(2) {
    margin-top: 12px; /* smaller overlap on phones */
  }
}

