/* Palette Bioalaune.com */
:root {
  --bio-green: #39a935;
  --bio-green-light: #7db472;
  --bio-bg: #eeeeee;
  --bio-bg-alt: #f2f2f2;
  --bio-text: #4a4a4a;
  --bio-text-muted: #979797;
  --bio-white: #ffffff;
  --bio-border: #cacaca;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--bio-text);
  background-color: var(--bio-bg);
}

.site-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0;
  display: flex;
  justify-content: flex-end;
}

.logo {
  display: block;
  width: auto;
  max-width: 200px;
  height: auto;
}

@media (min-width: 768px) {
  .site-header {
    padding: 2rem 1.5rem 0;
  }

  .logo {
    max-width: 220px;
  }
}

.page {
  max-width: 820px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 4rem;
}

@media (min-width: 768px) {
  .page {
    padding: 1.5rem 1.5rem 5rem;
  }
}

.article {
  background-color: var(--bio-white);
  border-top: 5px solid var(--bio-green);
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .article {
    padding: 2.75rem 3rem 3.5rem;
  }
}

.article h1 {
  margin: 0 0 1.75rem;
  font-family: "Nunito", "Futura", "Century Gothic", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--bio-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.article h2 {
  margin: 2.25rem 0 1rem;
  font-family: "Nunito", "Futura", "Century Gothic", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--bio-green);
}

.article p {
  margin: 0 0 1.15rem;
}

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

.article .lead {
  font-size: 1.125rem;
  line-height: 1.75;
}

.article .signature {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--bio-border);
  font-family: "Nunito", "Futura", "Century Gothic", sans-serif;
  font-size: 1.1rem;
  color: var(--bio-green);
}

.article .signature p {
  margin: 0;
}
