/* CSS styles for the Waugh Media scan page or any other page you need.  */

/* Base container width and spacing */
.wp-site-blocks > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Background spacing for grouped sections */
.wp-block-group.has-background {
  padding: 64px 0;
}

/* Hero section styling */
.hero-wm {
  padding: 100px 0;
  text-align: center;
}

.hero-wm h1 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.15;
}

.hero-wm p {
  font-size: clamp(16px, 2.4vw, 20px);
}

/* Styling for the three-step columns section */
.wm-steps .wp-block-column {
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 12px;
}

/* Custom list with checkmark icons */
section ul {
  list-style: none;
  padding-left: 0;
}

section ul li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
}

section ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}

/* CTA button styles */
.wm-cta .wp-block-button__link {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
}