.page-wrapper-default {
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

@media screen and (min-width: 768px) {
  .page-wrapper-default {
    padding: 0 2.5rem;
    max-width: calc(1200px + 5rem);
  }
}

.article-card-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article-card-list oc-article-card:not(:last-child) {
  border-bottom: 1px solid
    color-mix(in srgb, var(--brand-charcoal) 15%, transparent);
  padding-bottom: 0.75rem;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.overflow-hidden {
  overflow: hidden;
}

.inline-block {
  display: inline-block;
}

.shrink-0 {
  flex-shrink: 0;
}

.visually-hidden {
  border: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

.force-hide {
  display: none !important;
}

@media (pointer: fine) {
  .fine-pointer {
    display: inherit;
  }

  .coarse-pointer {
    display: none;
  }
}

@media (pointer: coarse) {
  .fine-pointer {
    display: none;
  }

  .coarse-pointer {
    display: inherit;
  }
}
