:root {
  --font-serif: "Crimson Text", serif;
  --font-sans: "Figtree", sans-serif;
  --color-green-light: #a0ff80;
  --color-green-dark: #576d50;
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  min-height: 100dvh;
}
body {
  max-width: 1200px;
  margin-inline: auto;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.4;
}

main {
	padding: 3em 1.5em;
	
}
aside {
  padding: 0 1.5em 3em;
  display: flex;
  gap: 1.5em;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}



h1,h2,h3 {
  font-family: var(--font-serif);
  color: var(--color-green-dark);
  margin: 0;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.5em;
}

p,ul {
  margin-bottom: 0;
}
ul {
  padding-inline-start: 1.5em;
}
li {
  max-width: 50ch;
}
li + li {
  margin-top: .5em;
}

section + section {
  padding-top: 1.5em;
}

p + h2 {
  margin-top: 1em;
}

a {
  color: var(--color-green-dark);
}
a:focus-visible {
  outline: 0.15em solid;
  outline-offset: 0.05em;
  text-decoration: none;
  border-radius: 0.1em;
}




.page-header {
  grid-column: 1/-1;
  background-color: var(--color-green-dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5em 1.5em;
  position: relative;
}
.page-title {
  color: var(--color-green-light);
  margin: 0;
  font-size: 3em;
  line-height: 1;
}
.title-break {
  display: none;
}
.page-subtitle {
  font-family: var(--font-sans);
  font-size: 2em;
  line-height: 1;
  margin: .5em 0 0;
}
img.creia {
  border-radius: 50%;
  margin-top: 1.5em;
}

.hero {
  font-family: var(--font-serif);
  font-size: 2.5em;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: var(--color-green-dark);
  margin: 0 auto;
	padding: 0 0 .5em;
  max-width: 35ch;
}





/* ### Cover
-------------------------------------------------------------------------- */
.images {
  display: grid;
  gap: 1em;
  justify-content: center;
}

.cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  aspect-ratio: 1.43;
  max-width: 28.125em;
  background: var(--color-green-dark);
}
.cover img {
  position: absolute;
  /* z-index: -1; */
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.bkgnd {
	position: absolute;
	background: rgba( 0,0,0,0.535);
	inset: 0;
	/* z-index: -1; */
}
.cover .frgnd {
  z-index: 1;
}
.cover abbr {
  font-size: clamp(1.85em, calc(1.85rem + ((1vw - 0.2343em) * 4.4053)), 3.75em);  
  line-height: 1;
  text-decoration: none;
  margin: .2em 0 0 .15em;
}
.cover p {
  font-size: clamp(1.25em, calc(1.25rem + ((1vw - 0.2343em) * 2.6664)), 2.4em);
  text-align: center;
  width: 21ch;
  margin: 0 auto .25em;
}







/* ### CTA
-------------------------------------------------------------------------- */
.cta {
  font-weight: 700;
	background: var(--color-green-light);
  margin-block: 3em;
	padding: 2em;
}
.cta a {
  color: inherit  ;
}





/* ### Footer
-------------------------------------------------------------------------- */
.page-footer {
  grid-column: 1/-1;
  background-color: var(--color-green-dark);
  color: #fff;
  padding: 1.5em 3em;
}
.footer-title {
  color: #fff;
}
ul.contact {
  list-style: none;
  padding: 0;
}
.label {
  color: var(--color-green-light);
}
.label::after {
  content: ": ";
}
.page-footer a {
  color: #fff;
}
.copyright {
  text-align: center;
  margin-top: 3em;
}













/* ### Media Queries
-------------------------------------------------------------------------- */
@media (min-width: 45em) {
  /* body {
    display: grid;
    grid-template-columns: 1fr calc(140px + 3em);
  } */
  .page-header {
    padding-inline-end: calc(180px + 1em);
  }
  .page-title {
    font-size: 5em;
  }
  .page-subtitle {
    font-size: 2.5em;
  }
  img.creia {
    margin-top: 0;
    position: absolute;
    bottom:   .5em;
    right: .5em;
  }

  .images {
    grid-template-columns: 1fr 150px 1fr;
    grid-template-rows: 1fr 150px 1fr;
  }
  .cover {
    max-width: none;
  }
  .cover.c1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
  .cover.c2 {
    grid-column: 2 / 4;
    grid-row: 2 / 4;
    z-index: -2;
  }

  .page-footer {
    display: flex;
    flex-wrap: wrap;
  }
  .page-footer section {
    padding-top: 0;
    width: 50%;
  }
  .page-footer :last-child {
    width: 100%;
  }
}


@media (min-width: 31.1875em) and (max-width: 55.4375em) {
  .title-break {
    display: inline;
  }
}

