:root {
    --pico-font-size: 100%;
}

html {
    background-color: #f4f7fa;
}

.container {
    padding: 0 40px;
}

.page-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-wrapper > header *{
    color: var(--pico-color-azure-50);
}

.header-wrapper > header *:hover{
    color: var(--pico-color-azure-950);
}

.logo {
    height: 40px;
}

.footer-wrapper {
    margin-top: 100px;
}

hgroup {
    text-align: center;
    margin-bottom: 40px;
    z-index: 9;
}

section.hero, section.title {
  position: relative;
  background-size: cover;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 -40px 40px;
}

section.title {
  height: 160px;
}

section.hero::before, section.title::before {
  content: "";
  position: absolute;;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

section.hero *, section.title * {
  color: white;
}

section.hero hgroup, section.title hgroup {
  margin: 0;
}

article img {
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 4px;
}

.grid h3 {
    margin: auto 0;
}

.two-one {
  grid-template-columns: 2fr 1fr;
}
.one-two {
  grid-template-columns: 1fr 2fr;
}

.iconslist li a {
  display: inline;
}
.iconslist li i {
  margin-right: 8px;
}