/* WP Landing Simple styles */
.wpls-landing {
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: clamp(16px, 4vw, 64px);
}

.wpls-box {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: clamp(20px, 3.5vw, 48px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.wpls-title {
  margin: 0 0 .4em 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
  font-weight: 800;
  color: #333;
}

.wpls-subtitle {
  margin: 0 0 1.1em 0;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #333;
  opacity: .9;
}

.wpls-btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
  font-weight: 800;
  padding: .85em 1.25em;
  border-radius: 12px;
  background: #c89b3c;
  color: #fff;
  box-shadow: 0 8px 24px rgba(200,155,60,0.4);
  transition: transform .15s ease, box-shadow .3s ease;
}

.wpls-btn:hover, .wpls-btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(200,155,60,0.48);
}

/* Try to neutralize theme content padding when used inside a page */
.page .entry-content > *:first-child .wpls-landing,
.wp-block-post-content > *:first-child .wpls-landing {
  margin-top: -32px;
}
