/* ----------------------------------------
   General Wrapper Styles
---------------------------------------- */

.wrapper {
  position: relative;
  margin: 0;
  padding: clamp(3rem, 6vw, 6rem);
  background-color: inherit;
  overflow: visible;
}
/* Wrapper Style 1 */
.wrapper.style1 {
  background: #f3f3f3 url("images/binding-dark.png");
  color: #484d55;
  /* display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  padding: 4em 2em 6em;
  flex-flow: column; */
}

/* Wrapper Style 2 (Features Section) */
.wrapper.style2 {
  background: #282b34 url("images/asfalt-light.png");
  color: #fff;
  /* border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 4em 2em 6em;
  margin: 0 auto; */
}

/* Footer uses style2 but often needs tighter bottom spacing */
.footer-section {
  padding-bottom: 4em;
}

/* On light sections, keep inline links visible on hover/focus */
.wrapper.style1 a:not(.button):hover,
.wrapper.style1 a:not(.button):focus {
  color: #1566a0;
}

/* ----------------------------------------
   Responsive
---------------------------------------- */

@media screen and (max-width: 768px) {
  .wrapper {
    padding: 5em 0 5em 0;
  }
}

@media screen and (min-width: 1440px) {
  .wrapper {
    padding: 6.5em 0 6.5em 0;
  }
}

@media screen and (min-width: 2560px) {
  .wrapper {
    padding: 7em 0 7em 0;
  }
}
