:root {
  --logo-col-min: 5.5rem;
  --center-max: 83rem;
}

* { box-sizing: border-box; }

img, video { max-width: 100%; }

p, h1, h2, h3 { overflow-wrap: break-word; }

body {
  margin: 0;

  color: #272727;
  font-family: "Noto Sans", system-ui, sans-serif;
}

ca-layout {
  display: grid;
  grid-template-columns:
    minmax(var(--logo-col-min), 1fr)
    minmax(0, var(--center-max))
    minmax(1rem, 1fr);
  min-height: 100vh;
}

[slot="layout-left"] {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 1.5rem;
  padding-inline: 1rem;
}

[slot="layout-center"] {
  padding: 1.5rem 1rem 2rem;
  min-width: 0;
  border-inline: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
}

.logo { 
  display: block; 
  width: clamp(43px, 37.6px + 1.35vw, 57px);
  height: auto;
}

main {
  max-width: 50rem;
  font-size: 1.125rem;
  line-height: clamp(1.6875rem, 0.5192vw + 1.5577rem, 2.025rem);
}

.header-text {
  display: inline-block;
  font-size: clamp(1.375rem, 1.327rem + 0.192vw, 1.5rem);
  font-weight: 600;
  text-decoration: none;
  color: inherit;

  color: #272727;
}

section {
  margin-block: clamp(2.5rem, 1.923rem + 2.308vw, 4rem);
}

footer {
  margin-top: auto;
  padding-top: 9rem;
  opacity: 0.85;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  column-gap: 2rem;
  row-gap: 1.5rem;
}

@media (min-width: 640px) {
  footer ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

footer a {
  color: #272727;
  font-size: 1rem;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  line-height: 180%; /* 1.8rem */
}

footer a:hover, footer a:active {
  text-decoration: underline;
} 

.button {
  display: inline-flex;
  padding: .75rem 1.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  background: #0075A9;
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
}

.button:hover, .button:active {
  background: #025585;
  text-decoration: none;
}

.site-title {
  font-size: clamp(2.25rem, 1.817rem + 1.731vw, 3.375rem);
  line-height: 120%;
  font-weight: 600;
  margin-top: clamp(4rem, 0.923rem + 12.308vw, 12rem);
}

.site-title-color {
  color: #025585;
}

h1 {
  margin-top: clamp(3rem, 4.6154vw + 1.8462rem, 6rem);
  font-size: clamp(2rem, 1.1538vw + 1.7115rem, 2.75rem);
  font-weight: 600;
  line-height: 120%;
}

h2 {
  font-size: clamp(1.75rem, 1.1538vw + 1.4615rem, 2.5rem);
  font-weight: 600;
  line-height: 120%;
}

ul {
  line-height: clamp(1.6875rem, 0.5192vw + 1.5577rem, 2.025rem);
}
