.h {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: var(--element-space);
  position: relative;
  height: calc(100svh - 3rem);
  box-sizing: border-box;
}
.h::before {
  content: "";
  position: absolute;
  background-color: var(--blue-light);
  inset: 0;
  height: 40%;
  z-index: -1;
}
.h h1 {
  margin-bottom: var(--space);
  font-size: 2rem;
  font-family: var(--roboto);
  text-transform: uppercase;
}
.h h1 + p {
  margin-bottom: 0.5rem;
  font-style: italic;
  font-weight: 300;
}
.h .date {
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 2rem;
  color: var(--red);
  text-align: center;
  width: fit-content;
  line-height: 1;
}
.h .date span {
  font-size: 4rem;
  display: block;
}
.h .img {
  margin-block: calc(-1 * var(--section-space));
  margin-right: calc(-1 * var(--container-space));
  height: calc(100% + 2 * var(--section-space));
}
.h .img img {
  max-height: 100%;
  min-height: 100%;
  border-bottom-left-radius: var(--border-radius);
}
@media (max-width: 640px) {
  .h {
    grid-template-columns: 1fr;
  }
  .h h1 {
    font-size: 1.5rem;
  }
  .h .img {
    margin-block: unset;
    margin-left: calc(-1 * var(--container-space));
    height: 100%;
  }
  .h .img img {
    border-bottom-left-radius: 0;
  }
}

.p {
  margin-inline: var(--container-space);
}
.p h2 {
  margin: unset;
  padding: unset;
  margin-bottom: var(--space);
  text-align: unset;
  font-size: 1.5rem;
}
.p h2::before {
  content: unset;
}
.p * + h2 {
  margin-top: var(--element-space);
}
.p ul {
  list-style: disc;
  padding-left: 1.25rem;
}
