@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Barlow+Condensed:wght@400;600;700;800&display=swap");

:root {
  color: #163e4c;
  font-family: "Barlow Condensed", sans-serif;
  font-synthesis: none;
  background: #78cce7;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #78cce7;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 248, 223, 0.28), transparent 28%),
    linear-gradient(145deg, rgba(255, 248, 223, 0.12), transparent 48%),
    #78cce7;
}

a {
  color: #126987;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(22px, calc((100vw - 980px) / 2));
  border-bottom: 1px solid rgba(20, 59, 74, 0.24);
  background: rgba(120, 204, 231, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  color: #fff8df;
  font-family: "Archivo Black", sans-serif;
  font-size: 19px;
  text-decoration: none;
  text-shadow: 2px 2px 0 #173f4d;
}

.language-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-picker select {
  padding: 7px 30px 7px 10px;
  color: #163e4c;
  border: 1px solid rgba(20, 59, 74, 0.45);
  border-radius: 3px;
  background: #fff8df;
  font: inherit;
}

.page-shell {
  width: min(100% - 32px, 980px);
  margin: 44px auto 60px;
  padding: clamp(26px, 5vw, 62px);
  border: 1px solid rgba(20, 59, 74, 0.28);
  background: rgba(255, 248, 223, 0.92);
  box-shadow: 12px 12px 0 rgba(20, 59, 74, 0.18);
}

.eyebrow {
  margin: 0 0 9px;
  color: #b92e2c;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  color: #fff8df;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-shadow: 4px 4px 0 #173f4d;
}

.lead {
  max-width: 760px;
  margin: 0 0 40px;
  color: #315a67;
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 600;
  line-height: 1.5;
}

.content-section {
  padding: 28px 0;
  border-top: 1px solid rgba(20, 59, 74, 0.17);
}

.content-section:first-of-type {
  border-top: 0;
}

h2 {
  margin: 0 0 13px;
  color: #173f4d;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: -0.035em;
}

h3 {
  margin: 22px 0 7px;
  color: #285968;
  font-size: 21px;
}

p,
li {
  font-size: 18px;
  line-height: 1.65;
}

p {
  margin: 9px 0;
}

ul {
  margin: 10px 0;
  padding-left: 24px;
}

kbd {
  display: inline-block;
  min-width: 30px;
  padding: 2px 7px;
  color: #fff8df;
  text-align: center;
  border-radius: 3px;
  background: #173f4d;
  box-shadow: 0 2px 0 #0b2832;
  font: 700 14px "Barlow Condensed", sans-serif;
}

.update-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(20, 59, 74, 0.14);
}

.update-item time {
  color: #b92e2c;
  font-weight: 800;
}

.update-item h2 {
  margin-bottom: 5px;
  font-size: 25px;
}

.site-footer {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 26px 0 38px;
  color: rgba(20, 59, 74, 0.78);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 16px;
}

.footer-links a {
  font-weight: 700;
}

.site-footer small {
  display: block;
  line-height: 1.5;
}

.noscript {
  margin: 40px auto;
  padding: 20px;
  max-width: 700px;
  color: #173f4d;
  background: #fff8df;
}

@media (max-width: 640px) {
  .site-header {
    padding: 11px 14px;
  }

  .brand {
    font-size: 15px;
  }

  .language-picker span {
    display: none;
  }

  .page-shell {
    width: calc(100% - 20px);
    margin: 18px auto 34px;
    padding: 25px 20px 34px;
    box-shadow: 6px 6px 0 rgba(20, 59, 74, 0.18);
  }

  .lead {
    margin-bottom: 26px;
  }

  p,
  li {
    font-size: 17px;
  }

  .update-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
