/* Dual Overlay Content Section Styles */
.ascend-dual-overlay-section {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 0;
  background: none;
  z-index: 10;
}
.dual-overlay-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
body .dual-overlay-bg-img {
  max-width: 900px !important;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}
.dual-overlay-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.dual-overlay-content {
  background: var(--Color-Palette-Cream, #EDE3D1);
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.08);
  border-radius: 0;
  width: 40%;
  min-width: 320px;
  max-width: 420px;
  margin: 40px 0;
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: auto;
}
.dual-overlay-left {
  margin-left: 4%;
}
.dual-overlay-right {
  margin-right: 4%;
}
.dual-overlay-subheading {
  color: var(--Color-Palette-Dark-Chocolate, #2E2E24);
  font-family: var(--body-font), Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.dual-overlay-heading,
.dual-overlay-content h1,
.dual-overlay-content h2,
.dual-overlay-content h3,
.dual-overlay-content h4 {
  color: var(--Color-Palette-Copper, #6F3A20);
  font-family: var(--heading-font), Baskerville, serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.dual-overlay-description {
  color: var(--Color-Palette-Dark-Chocolate, #2E2E24);
  font-family: var(--body-font), Poppins, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 18px;
}
.dual-overlay-features-heading {
  color: var(--Color-Palette-Dark-Chocolate, #2E2E24) !important;
  font-size: 28px !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.84px !important;
  margin-bottom: 10px !important;
}
.dual-overlay-features-list {
  margin-bottom: 18px;
}
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.icon-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--Color-Palette-Dark-Chocolate, #2E2E24);
  font-family: var(--body-font), Poppins, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.icon-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><rect x="0.5" y="0.5" width="19" height="19" stroke="%232E2E24"/><path d="M3.75 9.13043L9.64286 15L17.5 3.75" stroke="%232E2E24"/></svg>') no-repeat center center;
  background-size: 20px 20px;
}

.dual-overlay-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--Color-Palette-Olive, #7D7359);
  color: var(--Color-Palette-White, #FFF);
  font-family: var(--body-font), Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 24px;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.dual-overlay-button:hover {
  color: var(--Color-Palette-White, #FFF);
  background: var(--Color-Palette-Copper, #6F3A20);
}
.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Utility classes for responsive visibility */
.dual-overlay-bg.desktop-only { display: flex; }
.dual-overlay-content-wrapper .mobile-only { display: none; }

@media (max-width: 920px) {
  .dual-overlay-bg.desktop-only { display: none; }
  .dual-overlay-content-wrapper .mobile-only { display: flex; }

  .dual-overlay-content-wrapper {
    flex-direction: column;
    align-items: center;
    position: static;
    width: 100%;
    height: auto;
  }
  .ascend-dual-overlay-section {
    padding: 24px 0 16px 0;
  }
  .dual-overlay-content-wrapper {
    flex-direction: column;
    align-items: center;
    position: static;
    width: 100%;
    height: auto;
  }
  .dual-overlay-left {
    max-width: 90%;
    margin: 0 auto -32px auto;
    z-index: 2;
    position: relative;
  }
  .mobile-only .dual-overlay-bg-img {
    width: 100%;
    max-width: 100vw !important;
    height: auto;
    display: block;
    margin: 0 auto;
    z-index: 1;
    position: relative;
  }
  .dual-overlay-right {
    max-width: 90%;
    margin: -32px auto 0 auto;
    z-index: 2;
    position: relative;
  }
  .dual-overlay-content {
    width: 100%;
    min-width: 0;
    padding: 18px;
    box-sizing: border-box;
  }
  .dual-overlay-heading,
  .dual-overlay-content h1,
  .dual-overlay-content h2,
  .dual-overlay-content h3,
  .dual-overlay-content h4 {
    font-size: 28px;
  }
  .dual-overlay-description {
    font-size: 15px;
  }
  .dual-overlay-features-heading {
    font-size: 18px;
  }
  .icon-list li {
    font-size: 15px;
    padding-left: 28px;
  }
} 