/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic (CALLED IN NORMALIZE.CSS)
	- Normalize
	- Box sizing
	- Media width
# Base
	- Typography
	- Elements
	- Links
# Components
	- Header
	- Main
	- Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
main section {
  margin: 0;
}

/* Typography
--------------------------------------------- */

/* Elements
--------------------------------------------- */

/* Links
--------------------------------------------- */

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Header
--------------------------------------------- */

/* Hero
--------------------------------------------- */

/* Main
--------------------------------------------- */
.site-wrapper {
  margin-top: 6rem;
}

.culture-content:not(:last-child) {
  margin-bottom: 5rem;
}

.culture-media {
  position: relative;
  margin: 1rem 0;
  display: flex;
  flex-direction: column-reverse;
}

.culture-img-layout {
  width: 100%;
  max-height: 25rem;
  object-fit: cover;
}

.culture-subtitle {
  margin-bottom: 1rem;
}

.culture-subtitle span {
  font-size: 2.5rem;
}

.culture-quote {
  max-width: 40rem;
  margin-bottom: 7rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.culture-quote-inner {
  font-size: 2rem;
  line-height: 3rem;
  font-style: italic;
}

.culture-quote-inner::before,
.culture-quote-inner::after {
  position: absolute;
  font-size: 6rem;
  line-height: 1;
  opacity: 0;
}

.culture-quote-inner::before {
  content: '“';
  top: -1.5rem;
  left: -2.5rem;
}

.culture-quote-inner::after {
  content: '”';
  bottom: -2rem;
}

@media (min-width: 48em) {
  .site-wrapper {
    margin: 7rem 3rem 0;
  }
}

@media (min-width: 60em) {
  .site-wrapper {
    margin-top: 10rem;
    margin-left: -1rem;
  }

  .culture-quote {
    margin: 1rem 0 10rem 3rem;
    max-width: 48rem;
  }

  .culture-quote-inner {
    font-style: normal;
  }

  .culture-quote-inner::before,
  .culture-quote-inner::after {
    opacity: 1;
  }

  .culture-content {
    display: flex;
    gap: 1rem;
    align-items: stretch;
  }

  .culture-content:not(:last-child) {
    margin-bottom: 0;
  }

  .culture-media {
    display: block;
    margin: 0;
    flex: 0 0 37.5rem;
  }

  .culture-img-layout {
    height: 100%;
    max-height: none;
  }

  .culture-subtitle {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0.5rem 0.75rem;
    background-color: #fff;
    white-space: nowrap;
  }

  .culture-inner {
    flex: 1;
    min-width: 0;
    padding-bottom: 4rem;
  }
}

@media (min-width: 90em) {
  .site-wrapper {
    margin-left: 0;
  }

  .culture-media {
    flex: 0 0 50rem;
  }

  .culture-subtitle {
    padding: 0;
    background-color: transparent;
    white-space: normal;
  }

  .culture-subtitle span {
    display: table;
    margin-left: auto;
    padding: 0.5rem 0.75rem;
    font-size: 5rem;
    line-height: normal;
    background-color: #fff;
  }

  .culture-inner {
    margin-top: 2rem;
    max-width: 31.25rem;
  }

  .culture-inner p:not(:last-child) {
    margin-bottom: 1rem;
  }
}

@media (min-width: 120em) {
  .culture-media {
    flex: 0 0 55rem;
  }

  .culture-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 25%);
    pointer-events: none;
  }
}

/* Footer
--------------------------------------------- */
