.featured-image img {
  width: 100%;
  height: auto;
}

.wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.post-navigation {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100%;
  gap: 10px;
  padding-top: 10px;
  padding-bottom: 9px;
  border-top: var(--border);
  border-bottom:  var(--border);
}

.post-navigation a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: #000;
  transition: color var(--color-transition);
  max-width: 100%;
  text-decoration: none;
  font-size: var(--font-size-default);
}

.post-navigation a:hover {
  color: var(--bncl-color);
}

.nav-arrow {
  color: var(--bncl-color);
  flex-shrink: 0;
}

.nav-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  line-height: var(--line-height);
  align-items: right;
}

.nav-next {
  width: 98%;
}
