/*
================================================

Space Vanta Theme 1.0

Module:
Bundle Template

Version:
2.0

Purpose:
Bundle Global Visual Foundation

Responsibilities:
- Bundle Root
- Global Box Sizing
- Global Container
- Section Foundation
- Section Heading Foundation
- Global Responsive Foundation
- Scroll Lock

Notes:
- Does NOT define Hero visual
- Does NOT define Story visual
- Does NOT define Related visual
- Does NOT define Preview visual
- Does NOT define Brand Typography

================================================
*/


/* =================================================
   Bundle Root
================================================= */

.sv-bundle-template {
  width: 100%;
  margin: 0;
  padding: 0;
}


/* =================================================
   Box Sizing
================================================= */

.sv-bundle-template *,
.sv-bundle-template *::before,
.sv-bundle-template *::after {
  box-sizing: border-box;
}


/* =================================================
   Global Container
================================================= */

.sv-bundle-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


/* =================================================
   Global Section Foundation
================================================= */

.sv-bundle-section {
  width: 100%;
}


/* =================================================
   Section Heading Foundation
================================================= */

.sv-bundle-section__title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 500;
}


/* =================================================
   Scroll Lock
================================================= */

body.sv-bundle-scroll-locked {
  overflow: hidden;
}


/* =================================================
   Responsive Foundation
================================================= */

@media (max-width: 768px) {

  .sv-bundle-section__title {
    margin-bottom: 28px;
    font-size: 28px;
  }

}