

.Page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.Page-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.Page-container {
  width: min(92vw, 68rem);
  margin: 0 auto;
}

.Page-container--narrow,
.Band-container.Page-container--narrow { width: min(92vw, 46rem); }

.Page-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}



.Band {
  padding: 5vh 4vw;
  background: #ffffff;
  color: #333333;
}

.Band--stone { background: #f4f2ef; }

.Band-wrapper { width: 100%; }

.Band-container {
  width: min(92vw, 68rem);
  margin: 0 auto;
}

.Band-content { width: 100%; }

.Band-head {
  max-width: 34rem;
  margin: 0 0 1.5rem;
}

.Band-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d98324;
  margin: 0 0 0.5rem;
}

.Band-lede {
  font-size: 1.0625rem;
  color: #4a4a4a;
  max-width: 34rem;
}



.Divider {
  position: relative;
  height: 0;
}

.Divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 28px;
  height: 28px;
  background: #f4f2ef;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.06);
}

.Divider--onStone::after { background: #ffffff; }



.Grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.Grid-cell { min-width: 0; }

.Split-cell { min-width: 0; }

.Split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}



.Newsblock {
  text-align: left;
  columns: 1;
  column-gap: 2rem;
  column-rule: 1px solid #ddd7cf;
  font-size: 1rem;
}

.Newsblock p { margin-bottom: 0.5rem; line-height: 1.5; }

.Newsblock p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.2rem;
  line-height: 0.8;
  float: left;
  padding: 0.2rem 0.5rem 0 0;
  color: #1f2f57;
}

@media (min-width: 768px) {
  .Band { padding: 7vh 4vw; }
  .Grid--two { grid-template-columns: repeat(2, 1fr); }
  .Split { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .Newsblock { columns: 2; }
}

@media (min-width: 1024px) {
  .Grid--three { grid-template-columns: repeat(3, 1fr); }
  .Split--wideLeft { grid-template-columns: 1.15fr 1fr; }
  .Newsblock--three { columns: 3; }
}
