@charset "UTF-8";
html {
  min-height: 100%; }

body {
  display: flex;
  flex-direction: column;
  font-family: system-ui,  sans-serif;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh; }

a {
  color: #0079c1; }

h1 {
  font-size: 2.5em;
  line-height: 1.2;
  margin: 0.5em 0;
  text-wrap: pretty; }

h2 {
  font-size: 1.5em;
  line-height: 1.3;
  margin: 2em 0 0.75em;
  text-wrap: pretty; }
  h2:first-child {
    margin-top: 0; }

h3 {
  font-size: 1.125em;
  line-height: 1.3;
  margin: 1em 0 0.5em;
  text-wrap: pretty; }
  h3:first-child {
    margin-top: 0; }

p {
  margin: 0 0 1.5em; }

/**
 * Layout
 */
.site-header {
  min-height: 3em;
  padding: 2em 0; }
  .site-header .container {
    align-items: center;
    display: flex;
    gap: 2em; }
    .site-header .container p {
      flex: 1;
      margin: 0; }
    .site-header .container::before {
      aspect-ratio: 1 / 1;
      background: #eee;
      border-radius: 50%;
      color: #555;
      content: 'Logo';
      display: grid;
      padding: 1em;
      place-items: center;
      width: 3em; }
    .site-header .container::after {
      background: #eee;
      border-radius: 1.25em;
      color: #555;
      content: 'Search';
      min-width: 12em;
      padding: 0.5em 1em; }

.site-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0; }
  .site-main > :last-child {
    flex: 1; }

.site-footer {
  background: #004369;
  color: #fff;
  display: flex;
  min-height: 14em;
  padding: 2em 0; }
  .site-footer .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    .site-footer .container::after {
      content: '© Copyright. Please don’t steal our stuff.';
      font-size: 0.75rem;
      display: block; }

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 2em;
  width: 100%; }

.content-section {
  padding-bottom: 4em;
  padding-top: 4em; }

.grid-layout-container {
  column-gap: 3em;
  display: grid;
  grid-template-areas: '. m .';
  grid-template-columns: 1fr 2fr 1fr;
  width: 100%; }
  .grid-layout-container:has(> .left-sidebar) {
    grid-template-areas: 'l m .'; }
  .grid-layout-container:has(> .right-sidebar) {
    grid-template-areas: '. m r'; }
  .grid-layout-container > .left-sidebar {
    grid-area: l; }
  .grid-layout-container > .main-content {
    grid-area: m; }
  .grid-layout-container > .right-sidebar {
    grid-area: r; }

/**
 * Components
 */
a.button {
  background: #0079c1;
  border: 2px solid #0079c1;
  border-radius: 0.375em;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  line-height: 1.3;
  padding: 0.5em 0.75em;
  text-decoration: none; }
  a.button.light, a.button.outline {
    background: #fff;
    border-color: #fff;
    color: #0079c1; }
  a.button.outline {
    border-color: #0079c1; }

.intro {
  font-size: 1.25em; }
  .intro p {
    margin-bottom: 1em; }

.publish-date {
  color: #757575; }

.banner {
  background: #0079c1;
  box-sizing: border-box;
  color: #fff;
  padding: 2em 0;
  position: relative; }
  .banner a {
    color: inherit; }
  .banner:is(.variant-home, .variant-directional) {
    --min-height: 24em;
    min-height: var(--min-height);
    overflow: hidden; }
    .banner:is(.variant-home, .variant-directional) :is(h1, h2, p) {
      max-width: 50%; }
    .banner:is(.variant-home, .variant-directional)::after {
      background-color: #0001;
      border-radius: 50%;
      content: '';
      height: 60em;
      left: calc(50% + 2em);
      position: absolute;
      top: calc(-30em + (var(--min-height) / 2));
      width: 60em; }
  .banner.variant-directional {
    --min-height: 18em; }

.breadcrumbs ul {
  display: flex;
  list-style-type: none;
  padding: 0; }
  .breadcrumbs ul li::after {
    content: '›';
    margin: 0 0.5em; }
  .breadcrumbs ul li:last-child::after {
    content: none; }

.breadcrumbs a {
  text-decoration: none; }

.callout {
  background: #0079c1;
  color: #fff;
  padding: 3em 0; }
  .callout a {
    color: inherit; }

.subnav h2 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 1em;
  text-transform: uppercase; }

.subnav ul {
  list-style-type: none;
  margin: 1em 0 0;
  padding: 0; }
  .subnav ul li {
    margin: 0.5em 0; }
    .subnav ul li a {
      font-weight: 500;
      text-decoration: none; }

.subnav a.active {
  color: #444; }

ul.links {
  list-style-type: none;
  padding: 0; }

.grid {
  --grid-gap: 2.5em;
  --grid-rule-color: #d5d5d5;
  display: grid;
  gap: var(--grid-gap);
  position: relative; }
  .grid.columns-3 {
    --grid-content-columns: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid.vertical-rules::before {
    background: repeating-linear-gradient(90deg, transparent 0 calc(100% / var(--grid-content-columns) - 1px), var(--grid-rule-color) calc(100% / var(--grid-content-columns) - 1px) calc(100% / var(--grid-content-columns)));
    clip-path: inset(0 calc(var(--grid-gap) / 2));
    content: '';
    display: block;
    inset: 0 calc(var(--grid-gap) * -1 / 2);
    pointer-events: none;
    position: absolute;
    z-index: -1; }

.card {
  background: #fff;
  border-radius: 0.5em;
  padding: 40px; }
  .card :is(h2, h3) a {
    text-decoration: none; }
  .card > :first-child {
    margin-top: 0; }
  .card > :last-child {
    margin-bottom: 0; }

.article-preview {
  margin: 1em 0;
  position: relative; }
  .article-preview::before {
    aspect-ratio: 4 / 3;
    background: #ccc;
    content: "";
    display: block;
    margin: 0 0 1em; }
  .article-preview .date {
    margin: 0; }
  .article-preview h3 {
    margin: 0; }
    .article-preview h3 a {
      text-decoration: none; }

.widget {
  border: 1px solid #ccc;
  border-radius: 0.5em;
  margin: 1.5em 0;
  padding: 40px; }
  .widget:first-child {
    margin-top: 0; }
  .widget > :first-child {
    margin-top: 0; }
  .widget > :last-child {
    margin-bottom: 0; }

.highlight pre {
  padding: 0.75em; }
  .highlight pre code span[style*='background-color:'] {
    background-color: transparent !important; }

/**
 * Utilities
 */
.background-light-blue {
  background-color: #e7f2f8; }
