/* ===== Post-only header centering ===== */
.post-only-header {
  background: rgba(255,250,232);
  padding: 1rem 0;
  width: 100vw;
  position: relative;
  z-index: 10;
}
.post-only-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
}
.post-only-home-link img {
  max-height: 3rem;
  width: auto;
  height: auto;
  display: block;
}

/* ===== Post-footer sticky container ===== */

.post-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(255,250,232,0.9);
  z-index: 20;
  padding: 0.5rem 0;
}

/* ===== Flex row spacing for icons ===== */

.post-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  padding: 3rem;
  box-sizing: border-box;
}

/* ===== Icon sizing ===== */
.post-footer a img {
  width: 45px !important;    
  height: 45px !important;  
  object-fit: contain;
}

/* Center Title Pages */

.entry-title {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}