.swiftbuilder {
  display: block;
}

.sb-section {
  max-width: 1100px;
  margin: 0 auto;
}
.sb-width-narrow { max-width: 760px; }
.sb-width-normal { max-width: 1100px; }
.sb-width-wide { max-width: 1320px; }

.sb-align-left { text-align: left; }
.sb-align-center { text-align: center; }
.sb-align-right { text-align: right; }

.sb-pad-sm { padding: 16px; }
.sb-pad-md { padding: 32px; }
.sb-pad-lg { padding: 56px; }

.sb-bg-light { background: #f8f9fb; color: #1f2937; }
.sb-bg-dark { background: #111827; color: #f9fafb; }
.sb-bg-primary { background: #2563eb; color: #ffffff; }

.sb-services-grid {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.sb-services-grid li {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 12px;
}
.sb-services-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sb-services-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sb-services-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.sb-button {
  display: inline-block;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
}

.sb-button:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

.sb-button-outline {
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
}

.sb-content-lead .sb-richtext {
  font-size: 1.125rem;
  line-height: 1.7;
}

.sb-ratio-square img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.sb-ratio-landscape img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
