/* ccd-homepage — master stylesheet */

/* Reset / base */
/* ccd-homepage — master stylesheet
 * This file is the base for the CSS bundle.
 * Edit component styles in src/styles/components/<name>.css
 * Run `npm run build:css` to regenerate src/styles/bundle.css
 */

h1 {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2; 
}

@media screen and (max-width: 559px){
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

main {
  margin-top: 64px;
}
/* BlockQuote component */

.blockquote {
  max-width: 42rem;
  margin: 8rem auto;
  padding: 0 16px;
  box-sizing: border-box;
  text-align: center;
}

@media (max-width: 600px) {
  .blockquote {
    margin: 4rem 0;
  }
}

.blockquoteHeading {
  margin-bottom: 32px;
}

.blockquoteText {
  margin: 0;
}

.blockquoteAttribution {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #111;
  max-width: 350px;
  margin: 32px auto 0;
  text-align: start;
}

.blockquoteAttributionImage {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.blockquoteAuthor {
  font-weight: 600;
}

.blockquoteByline {
  font-size: 14px;
  color: #666;
}

/* CTAPoster component */

cta-poster {
  display: block;
  max-width: 1600px;
  margin: 8rem auto;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  cta-poster {
    margin: 4rem 0;
  }
}

.ctaPosterGrid {
  display: grid;
  gap: 16px;
  height: 456px;
  overflow: hidden;
}

.ctaPosterGridImageRight {
  grid-template-columns: 2fr 1fr;
}

.ctaPosterGridImageLeft {
  grid-template-columns: 1fr 2fr;
}

@media (max-width: 840px) {
  .ctaPosterGrid {
    grid-template-columns: 1fr !important;
    height: auto;
    gap: 8px;
    margin: 0 16px;
  }

  /* DOM order for image-right is [text, image] — put image on top at mobile */
  .ctaPosterGridImageRight .ctaPosterImageWrap {
    order: -1;
  }
}

/* 841px–1024px: equal two-column split */
@media (min-width: 841px) and (max-width: 1024px) {
  .ctaPosterGridImageRight,
  .ctaPosterGridImageLeft {
    grid-template-columns: 1fr 1fr;
  }
}

/* === Text panel === */

.ctaPosterText {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--theme-primary);
  color: var(--theme-primary-button-text);
  padding-top: 64px;
  padding-bottom: 64px;
}

/*
  Dynamic outer padding — aligns the text start with the PrimaryCollection
  tiles above. Original formula: (contentWidth + (contentWidth-16)/2 - 1024) / 2
  Simplified: containerWidth / 2 - 520.
  clamp() floors at 128px (kicks in around 1296px viewport width) and
  caps at 280px (1600px max-width container).
  The outer side is start for image-right, end for image-left.
  Only applied above 1200px; breakpoint rules take over below that.
*/

@media (min-width: 1200px) {
  .ctaPosterGridImageRight .ctaPosterText {
    padding-inline-start: clamp(128px, calc(50vw - 520px), 280px);
    padding-inline-end: 128px;
  }

  .ctaPosterGridImageLeft .ctaPosterText {
    padding-inline-start: 128px;
    padding-inline-end: clamp(128px, calc(50vw - 520px), 280px);
  }
}

/* 1025px–1199px: 4rem all sides, 8rem on the outer (away-from-image) side */
@media (min-width: 1025px) and (max-width: 1199px) {
  .ctaPosterGridImageRight .ctaPosterText {
    padding: 4rem;
    padding-inline-start: 8rem;
  }
  .ctaPosterGridImageLeft .ctaPosterText {
    padding: 4rem;
    padding-inline-end: 8rem;
  }
}

/* Up to 1024px: 4rem all sides */
@media (max-width: 1024px) {
  .ctaPosterGridImageRight .ctaPosterText,
  .ctaPosterGridImageLeft .ctaPosterText {
    padding: 4rem;
  }
}

/* Up to 840px: 2rem all sides */
@media (max-width: 840px) {
  .ctaPosterGridImageRight .ctaPosterText,
  .ctaPosterGridImageLeft .ctaPosterText {
    padding: 2rem;
  }
}

/* Up to 600px: 1rem all sides */
@media (max-width: 600px) {
  .ctaPosterGridImageRight .ctaPosterText,
  .ctaPosterGridImageLeft .ctaPosterText {
    padding: 1rem;
  }
}

.ctaPosterRays {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ctaPosterTextContent {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.ctaPosterTitle {
  margin: 0;
}

.ctaPosterDesc {
  margin-top: 32px;
  margin-bottom: 0;
  font-weight: 400;
  hine-height: 1.6;
}

.ctaPosterCta {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 4px;
  background: #fff;
  color: var(--theme-white-button-text);
  width: max-content;
  transition: background-color ease 0.3s, color ease 0.3s;
}

.ctaPosterCta:hover {
  background-color: var(--theme-button-hover);
  color: var(--theme-button-hover-text);
}

.ctaPosterCta:active {
  background-color: var(--theme-button-click);
  color: var(--theme-button-hover-text);
}

/* === Image panel === */

.ctaPosterImageWrap {
  overflow: hidden;
}

.ctaPosterImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

cta-poster:hover .ctaPosterImage {
  transform: scale(1.05);
}

.ctaPosterGridImageRight .ctaPosterImage {
  border-radius: 0 4px 4px 0;
}

.ctaPosterGridImageLeft .ctaPosterImage {
  border-radius: 4px 0 0 4px;
}

/* Form inside CTAPoster */

.ctaPosterForm {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.ctaPosterFormLabel {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  display: block;
}

.ctaPosterFormInput {
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--unity-gray30);
  font-size: 16px;
  flex-grow: 1;
  max-width: 350px;
  box-sizing: content-box;
  color: var(--theme-primary);
}

.ctaPosterFormInput:focus {
  outline: 2px solid var(--unity-gray60);
}

.ctaPosterFormButton {
  padding: 8px 12px;
  border-radius: 4px;
  border: 0;
  background: #fff;
  color: var(--theme-white-button-text);
  cursor: pointer;
  min-height: 40px;
  transition: background-color ease .3s, color ease .3s;
  font-weight: 400;
  padding: 4px 16px;
  font-size: 1rem;
}

.ctaPosterFormButton:hover {
  background-color: var(--theme-button-hover);
  color: var(--theme-button-hover-text);
}

.ctaPosterFormButton:active {
  background-color: var(--theme-button-click);
  color: var(--theme-button-hover-text);
}


/* FAQ component */

.faq {
  margin: 8rem auto;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .faq {
    margin: 4rem 0;
  }
}

.faqPop {
  max-width: 64rem;
}

.faqRead {
  max-width: 42rem;
}

.faqEdge {
  max-width: 100%;
}

.faqTitle {
  /* inherits default heading styles */
}

.faqItem {
  border-bottom: 1px solid #ddd;
}

/* Remove default browser triangle */
.faqQuestion {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: inherit;
  user-select: none;
  transition: background-color 0.08s ease-out;
}

.faqQuestion::-webkit-details-marker {
  display: none;
}

.faqQuestion:hover {
  background-color: var(--unity-gray3, #eff0f0);
}

.faqQuestion:hover .faqQuestionText {
  text-decoration: underline;
  text-decoration-color: var(--unity-accent-color-link);
}

.faqQuestionText {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
}

.faqChevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary, #005A8B);
}

.faqChevron .icon {
  width: 24px;
  height: 24px;
}

.faqChevronOpen {
  display: none;
}

.faqChevronClosed {
  display: flex;
}

.faqItem[open] .faqChevronOpen {
  display: flex;
}

.faqItem[open] .faqChevronClosed {
  display: none;
}

.faqItem[open] .faqQuestion {
  margin-block-end: 1.5rem;
}

.faqAnswer {
  padding-block-end: 48px;
  padding-inline-start: 32px;
  padding-inline-end: 16px;
  line-height: 1.6;
  color: #444;
}

.faqAnswer p:first-child {
  margin-top: 0;
}

.faqAnswer p:last-child {
  margin-bottom: 0;
}

.faqMore {
  display: inline-block;
  margin-top: 32px;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 4px;
  background: var(--theme-primary);
  color: var(--theme-primary-button-text);
  transition: background-color ease 0.3s;
}

.faqMore:hover {
  background-color: var(--theme-button-hover);
}

.faqMore:active {
  background-color: var(--theme-button-click);
}

@media (max-width: 704px) {
  .faq {
    margin-inline: 16px;
  }
}

/* HeroBanner component */

.heroBanner {
  color: #fff;
  background: var(--theme-primary);
  margin-top: 2px;
}

.heroBannerInner {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 154px 1fr;
  gap: 32px;
  align-items: center;
  padding: 0 16px;
}

.heroBannerImageWrap {
  height: 95px;
  border-right: 2px solid #fff;
  overflow: hidden;
  position: relative;
}

.heroBannerImageWrap svg {
  position: absolute;
  top: 0;
}

.heroBannerImage {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 8 / 5;
}

.heroBannerBody {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.heroBannerPretitle {
  font-size: .875rem;
  line-height: 1.4;
  font-weight: 400;
}

.heroBannerDesc {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.heroBannerCta {
  display: inline-flex;
  padding: 4px 16px;
  border-radius: 4px;
  text-decoration: none;
  background: #fff;
  font-weight: 400;
  white-space: nowrap;
  color: var(--theme-white-button-text);
  min-height: 40px;
  align-items: center;
  transition: background-color ease 0.3s;
}

.heroBannerCta:hover {
  background-color: var(--theme-button-hover);
  color: var(--theme-button-hover-text);
}

.heroBannerCta:active {
  background-color: var(--theme-button-click);
  color: var(--theme-button-hover-text);
}

@media (max-width: 840px) {
  .heroBanner {
    margin-top: 4rem;
  }
}

/* Hero component */

.hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3.25;
}

.heroMediaWrapper {
  position: relative;
  height: 100%;
  min-height: 280px;
}

.heroImage,
.heroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video layered above image; hidden until playing */
.heroVideo {
  z-index: 1;
  opacity: 0;
}

/* First visit initial state: video still visible at frame 0 */
ccd-hero[data-state="still"] .heroVideo   { opacity: 1; }
/* Playing: show video over image */
ccd-hero[data-state="playing"] .heroVideo { opacity: 1; }

.heroOverlay {
  position: absolute;
  inset: 0;
}

.heroContentWrapper {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 2rem 0;
  align-items: end;
}

.heroContentInner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.heroContentInner.heroContentTop {
  align-items: flex-start;
}
.heroContentInner.heroContentMiddle {
  align-items: center;
}
.heroContentInner.heroContentBottom {
  align-items: flex-end;
}

.heroText {
  max-width: 70%;
  position: relative;
  z-index: 1;
}

.heroAlignLeft .heroText {
}
.heroAlignCenter .heroText {
  margin-inline: auto;
  text-align: center;
  width: calc(60% - 2rem);
}
.heroAlignRight .heroText {
  text-align: right;
}

/* When there is no play button (image-only hero), push content to the right end. */
ccd-hero:not(:has(.heroPlayBtn)) .heroAlignRight {
  justify-content: right;
}

.heroTextLight {
  color: #fff;
}

.heroTextDark {
  color: #111;
}

.heroBar {
  position: relative;
  z-index: 1;
  margin-bottom: 0.25rem;
  display: inline-block;
  width: 3.5rem;
  height: 0.25rem;
  background-color: var(--theme-primary);
}

.heroPretitle {
  font-size: 16px;
  margin-bottom: 4px;
}

.heroTitle {
  margin: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.35);
}

.heroSubtitle {
  margin-top: 8px;
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 400;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
}

.heroCta {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 4px;
  background: var(--theme-primary);
  color: var(--theme-primary-button-text);
  transition: background-color ease 0.3s;
}

.heroCta:hover {
  background-color: var(--theme-button-hover);
  color: var(--theme-button-hover-text);
}

.heroCta:active {
  background-color: var(--theme-button-click);
  color: var(--theme-button-hover-text);
}

.heroTextLight .heroCta {
  background: white;
  color: var(--theme-white-button-text);
}

.heroTextLight .heroCta:hover {
  background-color: var(--theme-button-hover);
  color: var(--theme-button-hover-text);
}

.heroTextLight .heroCta:active {
  background-color: var(--theme-button-click);
  color: var(--theme-button-hover-text);
}

/* ── Play / Pause button ─────────────────────────────────────────────────── */

.heroPlayBtn {
  align-self: end;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  transition: background-color ease 0.3s;
}

.heroPlayBtn:hover  { background: rgba(0, 0, 0, 0.7); }
.heroPlayBtn:active { background: rgba(0, 0, 0, 0.8); }

.heroPlayBtn .icon { width: 1rem; height: 1rem; display: block; color: white; }

/* Button side flips when text is right-aligned */
ccd-hero[data-align="right"] .heroPlayBtn {
  order: -1;
}

/* Show play icon when paused, pause icon when playing */
.heroPlayBtn .icon-pause { display: none; }
ccd-hero[data-state="playing"] .heroPlayBtn .icon-play  { display: none; }
ccd-hero[data-state="playing"] .heroPlayBtn .icon-pause { display: block; }

/* Mobile text block — shown only at ≤840px */
.heroMobileText {
  display: none;
}

@media (max-width: 840px) {
  .hero {
    aspect-ratio: unset;
    height: 30vh;
    min-height: 250px;
    max-height: 350px;
  }

  /* Overlay and desktop content wrapper are hidden */
  .heroOverlay,
  .heroContentWrapper {
    display: none;
  }

  .heroImage,
  .heroVideo {
    position: absolute;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
  }

  /* Show mobile text block below the image */
  .heroMobileText {
    display: block;
    margin: 16px 16px 0;
    color: #111;
    text-align: start;
  }

  /* Remove text shadows below the image */
  .heroMobileText .heroTitle {
    text-shadow: none;
  }

  .heroMobileText .heroSubtitle {
    text-shadow: none;
  }

  /* CTA uses primary colour at mobile regardless of image text color */
  .heroMobileText .heroCta {
    background: var(--theme-primary);
    color: var(--theme-primary-button-text);
    margin-top: 1rem;
  }

  .heroPlayBtn {
    display: none;
  }
}

@media (min-width: 1800px) {
  .heroContentInner {
    max-width: 1600px;
  }
}

@layer eden.atom {
  .eden-light-rays__vertical {
    display: block;
    width: 100%;

    &.eden-light-rays--bottom {
      transform: rotate(180deg);
    }
  }

  .eden-light-rays__horizontal {
    display: block;
    height: 100%;

    &.eden-light-rays--end {
      transform: rotate(180deg) scaleY(-1);
    }

    &:dir(rtl) {
      &.eden-light-rays--start {
        transform: rotate(180deg) scaleY(-1);
      }
      &.eden-light-rays--end {
        transform: none;
      }
    }
  }
}
/* PrimaryCollection component */

.primaryCollection {
  max-width: 64rem;
  padding: 0 16px;
  margin: 0 auto;
}

.primaryCollectionHeader {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.primaryCollectionHeaderLink,
.primaryCollectionHeaderStatic {
  display: flex;
  align-items: baseline;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}

.primaryCollectionHeaderLink:hover .primaryCollectionArrow {
  background: var(--theme-button-hover)
}

.primaryCollectionHeaderLink:active .primaryCollectionArrow {
  background: var(--theme-button-click)
}

.primaryCollectionTitle {
  margin: 0;
}

.primaryCollectionDesc {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 300;
}

.primaryCollectionArrow {
  display: flex;
  height: 24px;
  width: 24px;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: var(--theme-primary);
  color: var(--theme-primary-button-text);
  transition: background-color ease .3s;
}

.primaryCollectionArrow .icon {
  height: 1rem;
  width: 1rem;
}

.primaryCollectionTiles {
  display: flex;
  gap: 16px;
}

.primaryCollectionTile {
  display: flex;
  flex-direction: column;
  width: calc((100% - 32px) / 3);
  gap: 4px;
  text-decoration: none;
  color: inherit;
}

.primaryCollectionTile:hover .primaryCollectionTileImage {
  transform: scale(1.05);
}

.primaryCollectionTileImageWrapper {
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
}

.primaryCollectionTileImage {
  object-fit: cover;
  transition: transform ease 1s;
  height: 100%;
  width: 100%;
}

.primaryCollectionTileTitle {
  margin: 4px 0 0;
  color: #444;
}

.primaryCollectionTileDesc {
  margin: 4px 0 0;
  font-weight: 400;
  line-height: 1.6;
  color: var(--unity-text-color-primary);
}

/* ≤ 840px: tiles stack vertically; image and text share 50% each */
@media (max-width: 840px) {
  .primaryCollectionHeaderLink {
    flex-direction: column;
    gap: 8px;
  }

  .primaryCollectionTiles {
    flex-direction: column;
  }

  .primaryCollectionTile {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
  }

  .primaryCollectionTileImageWrapper {
    width: 50%;
    flex-shrink: 0;
    aspect-ratio: 16/9;
  }

  .primaryCollectionTileTitle,
  .primaryCollectionTileDesc {
    flex: 1;
    min-width: 0;
  }
}

/* ≤ 600px: square image ratio */
@media (max-width: 600px) {
  .primaryCollectionTileImageWrapper {
    aspect-ratio: 1/1;
  }
}

@media (min-width: 1800px) {
  .primaryCollection {
    max-width: 1600px;
  }
}

/* QuickLinks component */

.quickLinks {
  max-width: 64rem;
  margin: 128px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.quickLinksTitle {
  /* inherits default heading styles */
}

.quickLinksGrid {
  columns: 4;
  column-gap: 32px;
}

.quickLinksItem {
  display: block;
  color: #555;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.45;
}

/* SpotIllustrationActions component */

.spotIllustrationActions {
  max-width: 56rem;
  margin: 8rem auto;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

@media (max-width: 600px) {
  .spotIllustrationActions {
    margin: 4rem 0;
  }
}

.spotIllustrationActionsItem {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  box-sizing: content-box;
  padding: 8px 64px;
  border-inline-end: 1px solid var(--theme-primary);
}

.spotIllustrationActionsItem:last-of-type {
  border-inline-end: none;
}

.spotIllustrationActionsTitle {
  text-align: center;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 8px;
  color: var(--unity-text120);
}

.spotIllustrationActionsItem svg {
  stroke-width: 2;
}

@media (max-width: 840px) {
  .spotIllustrationActions {
    flex-direction: column;
    align-items: center;
  }

  .spotIllustrationActionsItem {
    padding: 2rem 0.5rem;
    border-inline-end: none;
    border-block-end: 1px solid var(--theme-primary);
  }

  .spotIllustrationActionsItem:last-of-type {
    border-block-end: none;
  }
}

/* SpotlightCollection component */

.spotlightCollection {
  max-width: 64rem;
  margin: 8rem auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .spotlightCollection {
    margin: 4rem 0;
  }
}

.spotlightCollectionTitle {
  text-align: center;
  margin: 0 0 32px;
}

.spotlightCollectionGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto auto;
  gap: 16px 32px;
}

.spotlightCollectionItem {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  text-align: center;
}

.spotlightCollectionImage {
  width: 100%;
  max-width: 18rem;
  margin: 0 auto 32px;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  align-self: start;
}

.spotlightCollectionItemTitle {
  margin: 0;
  color: #212225;
}

.spotlightCollectionItemDesc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.spotlightCollectionCta {
  display: inline-block;
  width: max-content;
  margin: 16px auto 0;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 4px;
  background: var(--theme-primary);
  color: var(--theme-primary-button-text);
  transition: background-color ease 0.3s;
}

.spotlightCollectionCta:hover {
  background-color: var(--theme-button-hover);
}

.spotlightCollectionCta:active {
  background-color: var(--theme-button-click);
}

@media (max-width: 840px) {
  .spotlightCollectionGrid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .spotlightCollectionItem {
    grid-row: span 1;
    grid-template-rows: auto;
  }
}

/* WidthWrapper component */

.widthWrapperEdge {
  width: 100%;
}

.widthWrapperPop {
  max-width: 64rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.widthWrapperPopzero {
  max-width: 56rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.widthWrapperRead {
  max-width: 42rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
