```css
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Jost:wght@300;400;500&display=swap');

/* GLOBAL FOOTER */

.site-footer {
  background-color: #ffffff !important;
}

/* PUBLICATIONS TABS */

div.entry-content div.pw-tabs {
  display: block !important;
  width: 100% !important;
  margin: 8px 0 32px !important;
  text-align: center !important;
}

div.entry-content div.pw-tabs div.pw-tabs-inner {
  display: inline-flex !important;
  float: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

/* PAGE-SPECIFIC WORDPRESS TITLES */

.home .entry-title,
.page-id-1622 .entry-title,
.page-id-1733 .entry-title,
.page-id-1733 .page-title,
.page-id-1733 h1.entry-title,
.page-id-1733 .post-title,
.page-id-1733 header.entry-header,
.page-id-1733 header .entry-title,
.page-id-1733 header h1,
.page-id-21 header .entry-title,
.page-id-21 header h1 {
  display: none !important;
}

/* PHOTOS PAGE */

.blog .site-main {
  width: calc(100% - 48px);
  max-width: 1100px;
  margin: 30px auto 80px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}

.blog .site-main > header {
  grid-column: 1 / -1;
  margin: 0 0 22px;
  padding: 0 0 20px;
  border-bottom: 1px solid #d6d2cb;
}

.blog .site-main > header .entry-title,
.blog .site-main > header .page-title {
  display: block !important;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(42px, 5vw, 70px) !important;
  font-weight: 600 !important;
  line-height: 1.02 !important;
  color: #1a1916 !important;
  text-align: left !important;
}

.blog .site-main article {
  min-width: 0;
  margin: 0;
}

.blog .site-main article .container {
  overflow: hidden;
  padding-bottom: 100%;
  background: #f7f6f4;
  border-radius: 3px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
}

.blog .site-main article .container a {
  background: #ffffff !important;
}

.blog .site-main article .container a img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition:
    opacity 180ms ease,
    transform 250ms ease;
}

.blog .site-main article .container a:hover img,
.blog .site-main article .container a:focus img {
  opacity: 0.86;
  transform: scale(1.015);
}

.blog .site-main article .container a:focus-visible {
  outline: 2px solid rgba(192, 57, 43, 0.4);
  outline-offset: -3px;
}

.blog .posts-navigation {
  grid-column: 1 / -1;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #d6d2cb;
}

.blog .posts-navigation .nav-links {
  margin: 0;
  padding: 0;
  border: 0;
  text-align: center;
}

.blog .comments-area,
.blog .comment-respond,
.blog #respond,
.blog .site-info {
  display: none !important;
}

/* TABLET */

@media screen and (max-width: 820px) {
  .blog .site-main {
    width: calc(100% - 36px);
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

/* MOBILE */

@media screen and (max-width: 520px) {
  .blog .site-main {
    width: calc(100% - 36px);
    margin-top: 18px;
    margin-bottom: 56px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog .site-main > header {
    margin-bottom: 8px;
  }

  .blog .site-main > header .entry-title,
  .blog .site-main > header .page-title {
    font-size: clamp(40px, 12vw, 56px) !important;
  }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  .blog .site-main article .container a img {
    transition: none;
  }
}
.site-footer .site-info,
.site-info {
  display: none !important;
}
footer.site-footer,
#colophon.site-footer,
.site-footer {
  display: none !important;
}