/* Outline style for social buttons in CTA section */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 2px solid #fff;
  border-radius: 100px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
  background: #fff;
  color: #1a237e;
  border-color: #fff;
  text-decoration: none;
}
/* Center align buttons in the Join Us section */
.cta-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}
/*
 * Utility class to make a section background span the full viewport width
 * while keeping the content centered and constrained.
 */
.full-width-bg {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: var(--off-white); /* Match the gallery-section background */
  box-sizing: border-box;
  z-index: 0;
}

/* Ensure the content inside remains centered and constrained */
.full-width-bg > .gallery-section {
  position: relative;
  left: auto;
  right: auto;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1400px;
  box-sizing: border-box;
  z-index: 1;
}
