:root {
  --srt-red: #c93333;
  --srt-red-dark: #8f1f1f;
  --srt-gold: #f5c542;
  --srt-black: #101010;
  --srt-ink: #171717;
  --srt-muted: #666;
  --srt-soft: #f7f4ef;
  --srt-white: #fff;
  --srt-radius: 20px;
  --srt-shadow: 0 18px 45px rgba(0, 0, 0, .12);
  --srt-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--srt-ink);
  background: #fff;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(var(--srt-container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  z-index: 9999;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--srt-shadow);
}

/* Buttons */

.button,
.search-submit,
.comment-form input[type="submit"] {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--srt-red), #ee2f2f);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  box-shadow: 0 10px 25px rgba(201, 51, 51, .25);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: #111;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111;
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--srt-red), var(--srt-red-dark));
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(201, 51, 51, .25);
  position: relative;
}

.brand-icon::before {
  content: "";
  width: 28px;
  height: 22px;
  border-radius: 4px;
  background: var(--srt-gold);
  display: block;
}

.brand-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 22px;
  background: rgba(255, 255, 255, .7);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.brand-name {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-tagline {
  margin-top: 5px;
  font-size: .67rem;
  font-weight: 800;
  color: #333;
  letter-spacing: .01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav {
  margin-left: auto;
}

.primary-menu,
.primary-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-menu > li {
  position: relative;
}

.primary-menu > li > a {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 0 13px;
  color: #111;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -.01em;
  position: relative;
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a {
  color: var(--srt-red);
}

.primary-menu > li > a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 19px;
  height: 3px;
  border-radius: 999px;
  background: var(--srt-red);
  opacity: 0;
  transform: scaleX(.6);
  transition: .18s ease;
}

.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after,
.primary-menu > li.current-menu-ancestor > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.primary-menu .menu-item-has-children > a {
  gap: 10px;
}

.primary-menu .menu-item-has-children > a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  order: 2;
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 235px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
  display: block;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-menu .sub-menu li,
.primary-menu .sub-menu a {
  display: block;
  width: 100%;
}

.primary-menu .sub-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #111;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: none;
  white-space: normal;
}

.primary-menu .sub-menu a:hover {
  background: var(--srt-soft);
  color: var(--srt-red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.search-toggle,
.social-nav a,
.mobile-social-nav a {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.search-toggle {
  cursor: pointer;
}

.search-toggle img,
.social-nav a img,
.mobile-social-nav a img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0);
}

.search-toggle:hover img,
.social-nav a:hover img,
.mobile-social-nav a:hover img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(79%) saturate(2114%) hue-rotate(342deg) brightness(88%) contrast(91%);
}

.search-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  width: 310px;
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
  display: flex;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}

.search-form.is-open .search-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-field {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 11px 14px;
  font-family: inherit;
}

.search-submit {
  box-shadow: none;
  padding: 0 15px;
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-social-nav {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 0;
  background: #111;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  margin: 3px 0;
}

/* Homepage */

.book-hero {
  position: relative;
  padding: 58px 0 42px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 38%, rgba(246,235,218,.72) 100%),
    radial-gradient(circle at 50% 12%, rgba(245,197,66,.22), transparent 34%),
    var(--srt-soft);
}

.book-hero::before,
.book-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  pointer-events: none;
}

.book-hero::before {
  background: linear-gradient(135deg, transparent 0 38%, rgba(159,112,72,.28) 38.2% 100%);
  clip-path: polygon(0 42%, 19% 73%, 40% 56%, 61% 72%, 80% 49%, 100% 67%, 100% 100%, 0 100%);
}

.book-hero::after {
  background: linear-gradient(135deg, rgba(151,98,61,.18), rgba(93,59,38,.24));
  clip-path: polygon(0 68%, 23% 44%, 42% 70%, 63% 45%, 80% 64%, 100% 38%, 100% 100%, 0 100%);
}

.book-hero__inner {
  position: relative;
  z-index: 1;
}

.book-hero__intro {
  max-width: 790px;
  margin: 0 auto 30px;
  text-align: center;
}

.book-hero__intro .eyebrow {
  color: #b48612;
  margin-bottom: 8px;
}

.book-hero__title {
  margin: 0;
  color: #111;
  font-size: clamp(2.15rem, 4.5vw, 3.85rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.06em;
}

.book-hero__subtitle {
  max-width: 660px;
  margin: 14px auto 0;
  color: #222;
  font-size: 1.02rem;
  line-height: 1.55;
}

.book-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.book-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(125px, 190px) 1fr;
  gap: 28px;
  align-items: center;
  min-height: 300px;
  padding: 22px 30px;
  overflow: hidden;
  color: #111;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.13);
  backdrop-filter: blur(8px);
}

.book-feature::before {
  content: none;
}

.book-feature > * {
  position: relative;
  z-index: 1;
}

.book-feature__cover {
  width: 100%;
  max-width: 190px;
  justify-self: center;
  border-radius: 4px;
  box-shadow: 0 18px 28px rgba(0,0,0,.24);
}

.book-feature__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.book-feature__cover-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 2 / 3;
  padding: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #fdf7e7, #e9d8a9);
  color: #111;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
}

.book-feature__body {
  max-width: 330px;
}

.book-feature h2 {
  margin: 0 0 12px;
  color: var(--srt-red);
  font-size: 1.17rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.book-feature p {
  max-width: 100%;
  margin: 0 0 20px;
  color: #222;
  font-size: .96rem;
  line-height: 1.6;
}

.book-feature .button {
  border-radius: 5px;
  padding: 13px 22px;
  box-shadow: 0 10px 20px rgba(201,51,51,.22);
}

.book-feature__visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: #111;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.book-feature__visit strong {
  color: #b48612;
}

.book-feature__visit:hover {
  color: var(--srt-red);
}

.book-feature__visit span {
  color: #b48612;
  font-weight: 900;
}

.eyebrow {
  color: var(--srt-red);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 8px;
}

.section {
  padding: 70px 0;
}

.section-soft {
  background: var(--srt-soft);
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading h2,
.about-band h2,
.newsletter-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  margin: 0;
  font-weight: 900;
  letter-spacing: -.04em;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  background: var(--srt-gold);
  border-radius: 999px;
  margin: 16px auto 0;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.article-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .09);
  overflow: hidden;
  transition: .2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--srt-shadow);
}

.article-card__image {
  display: block;
  aspect-ratio: 1.45 / 1;
  background: #eee;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__body {
  padding: 18px;
}

.article-card__meta {
  font-size: .75rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--srt-red);
  margin: 0 0 8px;
}

.article-card h3 {
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 0 0 8px;
}

.article-card a {
  color: #111;
  text-decoration: none;
}

.article-card p {
  font-size: .9rem;
  color: var(--srt-muted);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.topic-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--srt-shadow);
  text-decoration: none;
  color: #111;
  border-top: 6px solid var(--srt-red);
}

.topic-card h3 {
  font-size: 1.7rem;
  margin: 0 0 8px;
}

.about-band {
  background: linear-gradient(135deg, rgba(0, 0, 0, .76), rgba(80, 0, 0, .62)), var(--srt-red);
  color: #fff;
  text-align: center;
}

.about-band .eyebrow {
  color: var(--srt-gold);
}

.quote-band {
  background: #111;
  color: #fff;
  text-align: center;
}

.quote-band blockquote {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin: 0;
  font-weight: 900;
  font-style: italic;
}

.newsletter-card {
  width: min(var(--srt-container), calc(100% - 40px));
  margin: 60px auto;
  padding: 36px;
  border-radius: 26px;
  background: #fff6dc;
  box-shadow: var(--srt-shadow);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  align-items: center;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 14px 18px;
}

/* Archive and single pages */

.archive-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 197, 66, .22), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(201, 51, 51, .16), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f7f4ef 52%, #efe6d8 100%);
  text-align: center;
}

.archive-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 80%);
  pointer-events: none;
}

.archive-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -90px;
  width: 520px;
  height: 180px;
  transform: translateX(-50%);
  background: rgba(201, 51, 51, .10);
  filter: blur(50px);
  border-radius: 999px;
  pointer-events: none;
}

.archive-hero .container {
  position: relative;
  z-index: 2;
}

.archive-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  color: #101010;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.archive-hero .breadcrumbs {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 34px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
  backdrop-filter: blur(8px);
}

.archive-description {
  max-width: 760px;
  margin: 24px auto 0;
  color: #333;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.6;
}

.breadcrumbs {
  font-size: .86rem;
  margin-bottom: 20px;
  color: #666;
}

.breadcrumbs a {
  color: var(--srt-red);
  font-weight: 800;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--srt-red-dark);
}

.breadcrumbs span {
  margin: 0 7px;
}

.post-meta {
  color: #666;
  font-weight: 700;
}

.article-content {
  font-size: 1.08rem;
}

.article-content blockquote {
  border-left: 7px solid var(--srt-red);
  padding: 24px 28px;
  background: var(--srt-soft);
  border-radius: 18px;
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: 900;
  font-style: italic;
  margin: 36px 0;
}

.article-content .bible-verse,
.wp-block-quote.is-style-bible-verse {
  font-weight: 800;
  font-style: italic;
  background: #fff8df;
  border-left: 6px solid var(--srt-gold);
  padding: 20px;
  border-radius: 16px;
}

.article-content .application-box {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 26px;
  border-top: 6px solid var(--srt-red);
}

.single-footer {
  padding: 20px 0 70px;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 35px 0;
}

.post-nav a {
  font-weight: 900;
  color: var(--srt-red);
  text-decoration: none;
}

.author-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--srt-shadow);
  padding: 24px;
  margin: 35px 0;
}

.author-card img {
  border-radius: 999px;
}

.page-content {
  padding: 60px 0;
}

.comments-area {
  margin-top: 40px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 12px;
}

/* Footer */

.site-footer {
  background: #0f0f0f;
  color: #ddd;
}

.footer-top {
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.footer-widget__title {
  color: var(--srt-gold);
  font-size: 1rem;
  text-transform: uppercase;
}

.site-footer a {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-menu {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Responsive */

@media (max-width: 1120px) {
  .header-inner {
    gap: 16px;
  }

  .primary-menu > li > a {
    padding-left: 9px;
    padding-right: 9px;
    font-size: .76rem;
  }

  .social-nav {
    gap: 8px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 78px;
    gap: 12px;
  }

  .site-brand {
    flex-shrink: 1;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-tagline {
    font-size: .58rem;
  }

  .header-actions {
    margin-left: auto;
    order: 2;
  }

  .header-actions > .social-nav {
    display: none !important;
  }

  .header-actions .search-form {
    display: flex !important;
  }

  .nav-toggle {
    order: 3;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    margin-left: 0;
  }

.primary-nav {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;

    margin-left: 0;

    background: #fff;

    padding: 14px 20px 28px;

    box-shadow: 0 18px 45px rgba(0,0,0,.16);

    overflow-y: auto;
    overflow-x: hidden;

    -webkit-overflow-scrolling: touch;

    overscroll-behavior: contain;

    z-index: 999;
}

  .primary-nav.is-open {
    display: block;
  }

  .primary-menu {
    display: block;
  }

  .primary-menu > li > a {
    min-height: auto;
    padding: 13px 4px;
    border-bottom: 1px solid #eee;
  }

  .primary-menu > li > a::after {
    display: none;
  }

  .primary-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 8px 14px;
    border-radius: 0;
  }

  .primary-menu .sub-menu a {
    padding: 8px 10px;
  }

  .primary-nav.is-open .mobile-social-nav,
  .mobile-social-nav {
    display: flex !important;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding-top: 22px;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
  }

  .mobile-social-nav a {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    padding: 0;
  }

  .mobile-social-nav a img {
    width: 24px;
    height: 24px;
  }

  .book-hero__grid,
  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topic-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--srt-container));
  }

  .post-grid,
  .topic-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .book-feature {
    padding: 30px;
    min-height: 320px;
  }

  .newsletter-form {
    display: grid;
  }

  .footer-bottom__inner {
    display: block;
  }

  .footer-menu {
    display: block;
  }
}

@media (max-width: 560px) {
  .brand-tagline {
    font-size: .50rem
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .search-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 88px;
    width: auto;
  }
}

@media (max-width: 430px) {
  .header-inner {
    gap: 9px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
    flex-basis: 38px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .search-toggle,
  .social-nav a,
  .mobile-social-nav a {
    width: 20px;
    height: 20px;
  }

  .search-toggle img,
  .social-nav a img {
    width: 19px;
    height: 19px;
  }

  .nav-toggle {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 860px) {
  .book-hero {
    padding: 42px 0 34px;
  }

  .book-hero__grid {
    grid-template-columns: 1fr;
  }

  .book-feature {
    grid-template-columns: 135px 1fr;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .book-hero__title {
    font-size: 2.1rem;
  }

  .book-feature {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: center;
  }

  .book-feature__body {
    max-width: none;
  }

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

.latest-posts-section {
  padding: 54px 0 64px;
  background: #fff;
}

.latest-posts-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.latest-posts-header .eyebrow {
  color: #b98712;
  margin-bottom: 2px;
}

.latest-posts-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.latest-posts-header h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--srt-gold);
}

.view-all-posts {
  color: var(--srt-red);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.home-post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
}

.home-post-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1.48 / 1;
  background: #eee;
  overflow: hidden;
}

.home-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-post-card__date {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--srt-red);
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 0 0 4px 0;
}

.home-post-card__body {
  padding: 18px 18px 16px;
}

.home-post-card__category {
  color: var(--srt-red);
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 900;
  margin-bottom: 7px;
}

.home-post-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.home-post-card h3 a {
  color: #111;
  text-decoration: none;
}

.home-post-card h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--srt-gold);
}

.home-post-card__meta {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #777;
  font-size: .72rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .latest-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .latest-posts-header {
    align-items: start;
    flex-direction: column;
  }

  .latest-posts-grid {
    grid-template-columns: 1fr;
  }
}

.popular-topics-section {
  padding: 34px 0 58px;
  background: #fff;
}

.popular-topics-header {
  margin-bottom: 24px;
}

.popular-topics-header .eyebrow {
  color: #b98712;
  margin-bottom: 3px;
}

.popular-topics-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.popular-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.popular-topic-card {
  min-height: 245px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px 28px 28px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
  background-size: cover;
  background-position: center;
}

.popular-topic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .64);
  z-index: 0;
}

.popular-topic-card > * {
  position: relative;
  z-index: 1;
}

.popular-topic-card--men {
    background-image: url("../images/topic-mens-ministry.webp");
}

.popular-topic-card--apologetics {
    background-image: url("../images/topic-apologetics.webp");
}

.popular-topic-card--faith {
    background-image: url("../images/topic-faith.webp");
}

.popular-topic-card__icon {
  color: var(--srt-gold);
  font-size: 3.1rem;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 900;
}

.popular-topic-card h3 {
  margin: 0 0 8px;
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.popular-topic-card p {
  max-width: 290px;
  margin: 0 auto 20px;
  font-size: .94rem;
  line-height: 1.35;
  font-weight: 600;
}

.popular-topic-card__button {
  padding: 11px 19px;
  font-size: .78rem;
  box-shadow: 0 8px 18px rgba(201, 51, 51, .32);
  gap: 8px;
}

.popular-topic-card__icon {
  width: 86px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--srt-gold);
  margin-bottom: 14px;
}

.popular-topic-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.popular-topic-card__icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  .popular-topics-grid {
    grid-template-columns: 1fr;
  }

  .popular-topic-card {
    min-height: 230px;
  }
}

.home-about-section {
  padding: 58px 0 70px;
  background: #fff;
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 62px;
  align-items: center;
}

.home-about-image {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

.home-about-image img {
  display: block;
  width: 100%;
  height: auto;
}

.home-about-content {
  max-width: 680px;
}

.home-about-content .eyebrow {
  color: #b98712;
  margin-bottom: 2px;
}

.home-about-content h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.home-about-content h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 13px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--srt-gold);
}

.home-about-content p {
  max-width: 660px;
  margin: 0 0 16px;
  color: #222;
  font-size: .98rem;
  line-height: 1.65;
  font-weight: 600;
}

.home-about-content .eyebrow {
  font-weight: 900;
  font-size: .78rem;
}

.home-about-button {
  margin-top: 8px;
  gap: 8px;
  padding: 13px 20px;
  font-size: .78rem;
}

@media (max-width: 860px) {
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-about-content {
    max-width: none;
  }
}

.home-quote-band {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  display: flex;
  align-items: center;
  background: #080808;
  color: #fff;
}

.home-quote-band__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .86) 34%, rgba(0, 0, 0, .66) 56%, rgba(0, 0, 0, .66) 100%),
    url("../images/quote-bible-bg.webp");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.home-quote-band::before,
.home-quote-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, .08);
  z-index: 2;
}

.home-quote-band::before {
  top: 0;
}

.home-quote-band::after {
  bottom: 0;
}

.home-quote-band__inner {
  position: relative;
  z-index: 2;
  min-height: 142px;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 18px;
  padding: 40px;
}

.home-quote-band__mark {
  color: var(--srt-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8rem;
  line-height: .7;
  font-weight: 900;
  opacity: .85;
  text-align: right;
  transform: translateY(10px);
}

.home-quote-band__mark::before {
    content: "\201C";
}

.home-quote-band__quote {
  margin: 0;
  text-align: center;
}

.home-quote-band__quote p {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.2vw, 2.65rem);
  line-height: 1.1;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .65);
}

.home-quote-band__quote cite {
  display: block;
  margin-top: 13px;
  color: var(--srt-gold);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.1;
  font-style: normal;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .65);
}

.home-quote-band__quote cite::before {
  content: "– ";
}

@media (max-width: 780px) {
  .home-quote-band {
    min-height: 165px;
  }

  .home-quote-band__inner {
    min-height: 165px;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .home-quote-band__mark {
    text-align: center;
    font-size: 5rem;
    transform: none;
    height: 42px;
  }
}

.home-link-columns {
  padding: 44px 0 48px;
  background: #fff;
}

.home-link-columns__grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr 1.25fr 1fr;
  gap: 58px;
  align-items: start;
}

.home-link-column h2 {
  margin: 0 0 20px;
  color: #b98712;
  font-size: .98rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.footer-project-list,
.footer-recent-list {
  display: grid;
  gap: 13px;
}

.footer-project-item,
.footer-recent-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 13px;
  align-items: center;
  color: #111;
  text-decoration: none;
}

.footer-project-item img,
.footer-recent-item img,
.footer-recent-item__placeholder {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  object-fit: cover;
  background: #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .10);
}

.footer-project-item strong,
.footer-recent-item strong {
  display: block;
  color: #111;
  font-size: .9rem;
  line-height: 1.18;
  font-weight: 900;
}

.footer-project-item small,
.footer-recent-item small {
  display: block;
  margin-top: 2px;
  color: #666;
  font-size: .78rem;
  line-height: 1.25;
  font-weight: 600;
}

.home-simple-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-simple-list li {
  margin-bottom: 0px;
}

.home-simple-list a {
  color: #444;
  text-decoration: none;
  font-size: .95rem;
  line-height: 1.25;
  font-weight: 600;
}

.home-simple-list a:hover,
.footer-project-item:hover strong,
.footer-recent-item:hover strong {
  color: var(--srt-red);
}

.home-link-columns__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #b98712;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .home-link-columns__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .home-link-columns__grid {
    grid-template-columns: 1fr;
  }
}

.footer-bottom {

    background:#121212;

    border-top:1px solid rgba(255,255,255,.08);

    padding:34px 0;

}

.footer-bottom-grid{

    display:grid;

    grid-template-columns:1.3fr auto 1fr;

    gap:40px;

    align-items:center;

}









.footer-copyright{

    text-align:right;

    color:#ddd;

    line-height:1.8;

    font-size:.93rem;

}

.footer-copyright strong{

    color:#fff;

    font-weight:700;

}

@media (max-width:900px){

    .footer-bottom-grid{

        grid-template-columns:1fr;

        text-align:center;

        gap:30px;

    }

    .footer-brand {
        justify-content: center;
        text-align: center;
    }

    .footer-copyright{

        text-align:center;

    }

}


.newsletter-card {
    position: relative;
    overflow: hidden;
    padding: 42px 48px;
    border-radius: 12px;

    background:
        linear-gradient(
            rgba(255,249,231,.90),
            rgba(255,248,225,.90)
        ),
         url("../images/newsletter-card-bk.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 1px solid rgba(188,150,53,.18);

    box-shadow:
        0 12px 30px rgba(0,0,0,.08),
        inset 0 1px 0 rgba(255,255,255,.65);
}

.newsletter-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            ellipse at top left,
            rgba(255,255,255,.35),
            transparent 55%
        );

    pointer-events: none;
}

.newsletter-card > * {
    position: relative;
    z-index: 2;
}

.newsletter-card {
  position: relative;
  overflow: hidden;
  padding: 42px 48px;
  border-radius: 12px;

  background:
    linear-gradient(rgba(255, 249, 231, .30), rgba(255, 248, 225, .70)),
    url("../images/newsletter-card-bk.webp") !important;

  background-size: 160% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;

  border: 1px solid rgba(188, 150, 53, .18);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .08),
    inset 0 1px 0 rgba(255,255,255,.65);
}

.newsletter-hp {
  position: absolute;
  left: -9999px;
}

.newsletter-message {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  font-size: .9rem;
  font-weight: 800;
  color: #111;
}

@media (max-width: 470px) {
    .newsletter-card {
        padding: 30px 24px;
        background-size: auto 115% !important;
        background-position: center center !important;
        background-repeat: no-repeat;
    }
}

/* Single article layout */

.single-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 760px) 300px;
    column-gap: 72px;
    row-gap: 0;
    align-items: start;
}

.single-page-main {
  min-width: 0;
}

.single-article-header {
  padding: 38px 0 24px;
  background: #fff;
}

.single-article-header .breadcrumbs {
  margin: 0 0 34px;
  color: #777;
  font-size: .82rem;
  font-weight: 600;
}

.single-article-header .breadcrumbs a {
  color: #777;
  font-weight: 600;
}

.single-article-header .breadcrumbs a:hover {
  color: var(--srt-red);
}

.single-article-header .breadcrumbs span {
  margin: 0 8px;
  color: #aaa;
}

.single-topic {
  margin-bottom: 8px;
}

.single-topic-label {
  color: var(--srt-red);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
}

.single-topic-label:hover {
  color: var(--srt-red-dark);
}

.single-article-title {
  max-width: none;
  margin: 0 0 18px;
  color: #101010;
  font-size: clamp(2.3rem, 4.6vw, 4.05rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.06em;
}

.single-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: #555;
  font-size: .88rem;
  font-weight: 700;
}

.single-meta-item,
.single-share-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.single-meta-item a {
  color: #333;
  text-decoration: none;
  font-weight: 800;
}

.single-meta-item a:hover {
  color: var(--srt-red);
}

.single-meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1rem;
  line-height: 1;
}

.single-share-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #555;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
}

.single-share-button:hover {
  color: var(--srt-red);
}

.single-featured-grid {
  margin-bottom: 42px;
}

.single-featured-grid::after {
  content: "";
}

.single-image {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.single-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.single-content-grid {
  margin-top: 0;
}

.single-sidebar {
  min-width: 0;
}

.sidebar-block {
  margin-bottom: 42px;
}

.sidebar-title {
  margin: 0 0 18px;
  color: #111;
  font-size: 1.28rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.035em;
}

.sidebar-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--srt-red);
}

.sidebar-author__image {
  margin-bottom: 20px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.sidebar-author__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 9px;
}

.sidebar-author h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.035em;
}

.sidebar-author p,
.sidebar-newsletter p {
  margin: 0 0 18px;
  color: #222;
  font-size: .92rem;
  line-height: 1.55;
  font-weight: 500;
}

.sidebar-outline-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--srt-red);
  border-radius: 5px;
  color: var(--srt-red);
  background: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
}

.sidebar-outline-button:hover {
  background: var(--srt-red);
  color: #fff;
}

.sidebar-outline-button--small {
  min-height: 36px;
  padding: 0 15px;
  font-size: .72rem;
}

.sidebar-book {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.sidebar-book__cover {
  display: block;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.sidebar-book__cover img {
  display: block;
  width: 100%;
  height: auto;
}

.sidebar-book h3 {
  margin: 0 0 4px;
  color: #111;
  font-size: 1.02rem;
  line-height: 1.15;
  font-weight: 900;
}

.sidebar-book p {
  margin: 0 0 12px;
  color: #333;
  font-size: .82rem;
  line-height: 1.35;
  font-weight: 500;
}

.sidebar-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 8px;
}

.sidebar-newsletter-form input {
  min-width: 0;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0 11px;
  font-family: inherit;
  font-size: .78rem;
}

.sidebar-newsletter-form button {
  height: 38px;
  border: 0;
  border-radius: 5px;
  padding: 0 14px;
  background: linear-gradient(135deg, var(--srt-red), #e33232);
  color: #fff;
  font-family: inherit;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.sidebar-newsletter small {
  display: block;
  color: #888;
  font-size: .74rem;
  line-height: 1.35;
}

.sidebar-share-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.sidebar-share-icons a,
.sidebar-share-icons button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #111;
  padding: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.sidebar-share-icons a:hover,
.sidebar-share-icons button:hover {
  color: var(--srt-red);
}

.sidebar-related-list {
  display: grid;
  gap: 18px;
}

.sidebar-related-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 13px;
  align-items: center;
  color: #111;
  text-decoration: none;
}

.sidebar-related-item__image {
  display: block;
  width: 76px;
  height: 58px;
  overflow: hidden;
  border-radius: 4px;
  background: #eee;
}

.sidebar-related-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-related-item strong {
  display: block;
  color: #111;
  font-size: .78rem;
  line-height: 1.25;
  font-weight: 900;
}

.sidebar-related-item small {
  display: block;
  margin-top: 4px;
  color: #777;
  font-size: .72rem;
  line-height: 1;
  font-weight: 600;
}

.sidebar-related-item:hover strong {
  color: var(--srt-red);
}

@media (max-width: 980px) {
  .single-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .single-featured-grid::after {
    display: none;
  }

  .single-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .sidebar-block {
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .single-article-header {
    padding: 28px 0 20px;
  }

  .single-article-header .breadcrumbs {
    margin-bottom: 24px;
    font-size: .78rem;
  }

  .single-article-title {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .single-article-meta {
    gap: 12px 18px;
    font-size: .82rem;
  }
}

@media (max-width: 640px) {
  .single-sidebar {
    display: block;
  }

  .sidebar-block {
    margin-bottom: 36px;
  }

  .sidebar-newsletter-form {
    grid-template-columns: 1fr;
  }
}

.single-page-full {
  grid-column: 1 / -1;
  min-width: 0;
}

.single-page-full .single-article-title {
  max-width: 1050px;
}

.single-page-full .single-image {
  width: 100%;
  max-width: none;
  margin: 0;
}

.single-featured-grid .single-image img {
  width: 100%;
  display: block;
}

.single-article-header {
    padding: 40px 0 24px;
}

.single-featured-grid {
    margin-bottom: 42px;
}

.single-content-grid {
    margin-top: 0;
}

.sidebar-newsletter-form .newsletter-message {
  grid-column: 1 / -1;
  margin: 4px 0 0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    margin-top: 1rem;
}

.footer-social__title {
    margin: 0;
    color: #f5c542;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.footer-social__icons {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.footer-social__link {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer-social__link svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

.footer-social__link:hover,
.footer-social__link:focus {
    color: #f5c542;
    transform: translateY(-2px);
}

@media (max-width: 900px) {

    .footer-social {
        align-items: center;
        text-align: center;
    }

    .footer-social__icons {
        justify-content: center;
        flex-wrap: wrap;
    }

}

.footer-brand {
    color: #fff;
}

.footer-brand .brand-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
}

.footer-brand .brand-icon::before {
    width: 34px;
    height: 26px;
}

.footer-brand .brand-icon::after {
    height: 26px;
}

.footer-brand .brand-name {
    color: #fff;
    font-size: 2rem;
    text-shadow: 3px 3px 0 rgba(17, 78, 141, .75);
}

.footer-brand .brand-tagline {
    color: #cfcfcf;
    font-size: .92rem;
    text-transform: none;
}


/* Page content typography */

.page-content {
  padding: 76px 0 5rem;
}

.page-content .container,
.entry-content .container {
  max-width: 760px;
}

.page-content h1 {
  margin: 0 0 1.65rem;
  color: #101010;
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.07em;
  text-wrap: balance;
}

.page-content h1::after {
  content: "";
  display: block;
  width: 84px;
  height: 6px;
  margin-top: 1rem;
  border-radius: 999px;
  background: var(--srt-gold);
}

.page-content h2,
.entry-content h2 {
  margin: 3.25rem 0 1.15rem;
  color: #111;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.page-content h2::after,
.entry-content h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-top: .8rem;
  border-radius: 999px;
  background: var(--srt-gold);
}

.page-content h3,
.entry-content h3 {
  margin: 2.5rem 0 1rem;
  color: #111;
  font-size: 1.75rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.035em;
}

.page-content h4,
.entry-content h4 {
  margin: 2.25rem 0 .85rem;
  color: var(--srt-red);
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.page-content p,
.entry-content p {
  margin: 0 0 1.75rem;
  color: #2d2d2d;
  font-size: 1.18rem;
  line-height: 1.9;
}

.page-content h1 + p,
.entry-content h1 + p {
  margin-top: .3rem;
  color: #444;
  font-size: 1.38rem;
  line-height: 1.75;
  font-weight: 500;
}

.page-content p strong,
.entry-content p strong {
  color: #111;
  font-weight: 900;
}

.page-content a,
.article-content a,
.entry-content a {
  color: var(--srt-red);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(201, 51, 51, .25);
  transition: color .2s ease, border-color .2s ease;
}

.page-content a:hover,
.article-content a:hover,
.entry-content a:hover,
.page-content a:focus,
.article-content a:focus,
.entry-content a:focus {
  color: var(--srt-red-dark);
  border-color: var(--srt-red);
}

.page-content ul,
.page-content ol,
.entry-content ul,
.entry-content ol {
  margin: 0 0 2rem 1.5rem;
  padding-left: 1rem;
  color: #2d2d2d;
  font-size: 1.15rem;
  line-height: 1.9;
}

.page-content li,
.entry-content li {
  margin-bottom: .6rem;
}

.page-content li::marker,
.entry-content li::marker {
  color: var(--srt-red);
  font-weight: 900;
}

.page-content blockquote,
.entry-content blockquote {
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  border-left: 6px solid var(--srt-red);
  background: #faf7f1;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  color: #181818;
  font-size: 1.45rem;
  line-height: 1.55;
  font-weight: 800;
  font-style: italic;
}

.page-content blockquote p,
.entry-content blockquote p {
  margin-bottom: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.page-content hr,
.entry-content hr {
  margin: 4rem 0;
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,.18), transparent);
}

.page-content img,
.entry-content img {
  border-radius: 16px;
}

.page-content figure,
.entry-content figure {
  margin: 2.5rem 0;
}

.page-content figcaption,
.entry-content figcaption {
  margin-top: .75rem;
  color: #666;
  font-size: .9rem;
  line-height: 1.45;
  text-align: center;
}

.page-content .breadcrumbs {
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .page-content {
    padding: 52px 0 4rem;
  }

  .page-content h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  .page-content h2,
  .entry-content h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .page-content p,
  .entry-content p {
    font-size: 1.08rem;
    line-height: 1.8;
  }

  .page-content h1 + p,
  .entry-content h1 + p {
    font-size: 1.2rem;
  }

  .page-content blockquote,
  .entry-content blockquote {
    padding: 1.5rem;
    font-size: 1.24rem;
  }
}

.error-404 {
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at 18% 20%, rgba(245, 197, 66, .24), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(201, 51, 51, .16), transparent 30%),
        linear-gradient(135deg, #fff 0%, #f7f4ef 52%, #efe6d8 100%);
    text-align: center;
}

.error-404::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 80%);
    pointer-events: none;
}

.error-404::after {
    content: "404";
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    color: rgba(201, 51, 51, .055);
    font-size: clamp(9rem, 23vw, 24rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.08em;
    pointer-events: none;
}

.error-404__inner {
    position: relative;
    z-index: 2;
}

.error-404 .eyebrow {
    color: #b98712;
}

.error-404 h1 {
    max-width: 920px;
    margin: 0 auto 24px;
    color: #101010;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: .92;
    font-weight: 900;
    letter-spacing: -.075em;
    text-wrap: balance;
}

.error-404__text {
    max-width: 680px;
    margin: 0 auto 32px;
    color: #333;
    font-size: 1.16rem;
    line-height: 1.7;
    font-weight: 600;
}

.error-404__search {
    max-width: 620px;
    margin: 0 auto 26px;
}

.error-404__search .search-form {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
    backdrop-filter: blur(8px);
}

.error-404__search .search-field {
    height: 48px;
    border: 0;
    background: #fff;
}

.error-404__search .search-submit {
    min-width: 120px;
    height: 48px;
}

.error-404__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.error-404__posts {
    margin-top: 70px;
    text-align: left;
}

.error-404__posts h2 {
    margin: 0 0 24px;
    color: #111;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.055em;
    text-align: center;
}

.latest-posts-grid--compact {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 780px) {
    .error-404 {
        padding: 78px 0 70px;
    }

    .error-404__search .search-form {
        border-radius: 18px;
        flex-direction: column;
    }

    .error-404__search .search-submit {
        width: 100%;
    }

    .latest-posts-grid--compact {
        grid-template-columns: 1fr;
    }
}

.search-empty {
    padding: 70px 0 90px;
    background: #fff;
    text-align: center;
}

.search-empty__inner {
    padding: 46px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 15% 20%, rgba(245, 197, 66, .20), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(201, 51, 51, .12), transparent 32%),
        #fff;
    box-shadow: var(--srt-shadow);
}

.search-empty h2 {
    margin: 0 0 16px;
    color: #111;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.06em;
}

.search-empty p {
    max-width: 620px;
    margin: 0 auto 26px;
    color: #333;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.65;
}

.search-empty__form {
    max-width: 560px;
    margin: 0 auto 28px;
}

.search-empty__form .search-form {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: #f7f4ef;
}

.search-empty__form .search-field {
    height: 48px;
    border: 0;
    background: #fff;
}

.search-empty__form .search-submit {
    min-width: 115px;
    height: 48px;
}

.search-empty__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 640px) {
    .search-empty__inner {
        padding: 32px 22px;
    }

    .search-empty__form .search-form {
        border-radius: 18px;
        flex-direction: column;
    }

    .search-empty__form .search-submit {
        width: 100%;
    }
}

.search-no-results {
    min-height: calc(100vh - 86px);
}

.search-no-results::after {
    content: "Search";
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    color: rgba(201, 51, 51, .055);
    font-size: clamp(6rem, 16vw, 18rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.08em;
    pointer-events: none;
}

.search-no-results__form {
    width: min(640px, 100%);
    margin: 0 auto 28px;
    padding: 10px;
    display: flex;
    gap: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
    backdrop-filter: blur(8px);
}

.search-no-results__field {
    flex: 1;
    min-width: 0;
    height: 50px;
    border: 0;
    border-radius: 999px;
    padding: 0 20px;
    background: #fff;
    color: #111;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
}

.search-no-results__field:focus {
    outline: 3px solid rgba(245, 197, 66, .55);
    outline-offset: 2px;
}

.search-no-results__submit {
    min-width: 125px;
    height: 50px;
}

@media (max-width: 640px) {
    .search-no-results__form {
        border-radius: 20px;
        flex-direction: column;
    }

    .search-no-results__submit {
        width: 100%;
    }
}

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 96px;
    background:
        radial-gradient(circle at 18% 20%, rgba(245, 197, 66, .22), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(201, 51, 51, .16), transparent 30%),
        linear-gradient(135deg, #fff 0%, #f7f4ef 52%, #efe6d8 100%);
    text-align: center;
}

.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 80%);
    pointer-events: none;
}

.blog-hero::after {
    content: "Blog";
    position: absolute;
    left: 50%;
    top: 32px;
    transform: translateX(-50%);
    color: rgba(201, 51, 51, .055);
    font-size: clamp(7rem, 18vw, 19rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.08em;
    pointer-events: none;
}

.blog-hero__inner {
    position: relative;
    z-index: 2;
}

.blog-hero .breadcrumbs {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 34px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 10px 28px rgba(0,0,0,.07);
    backdrop-filter: blur(8px);
}

.blog-hero h1 {
    max-width: 980px;
    margin: 0 auto;
    color: #101010;
    font-size: clamp(3rem, 7vw, 6.6rem);
    line-height: .92;
    font-weight: 900;
    letter-spacing: -.075em;
    text-wrap: balance;
}

.blog-hero__text {
    max-width: 760px;
    margin: 24px auto 0;
    color: #333;
    font-size: 1.14rem;
    font-weight: 600;
    line-height: 1.65;
}

.blog-index-section {
    padding: 64px 0 80px;
    background: #fff;
}

.blog-index-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 32px;
}

.blog-index-header h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.055em;
}

.blog-index-header h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 4px;
    margin-top: 14px;
    border-radius: 999px;
    background: var(--srt-gold);
}

.blog-index-search {
    width: min(430px, 100%);
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: #f7f4ef;
}

.blog-index-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    background: #fff;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
}

.blog-index-search button {
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    background: linear-gradient(135deg, var(--srt-red), #e33232);
    color: #fff;
    font-family: inherit;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.blog-pagination {
    margin-top: 54px;
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.blog-pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f7f4ef;
    color: #111;
    font-weight: 900;
    text-decoration: none;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--srt-red);
    color: #fff;
}

.blog-empty {
    padding: 48px;
    border-radius: 24px;
    background: #f7f4ef;
    text-align: center;
}

.blog-empty h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.06em;
}

@media (max-width: 780px) {
    .blog-hero {
        padding: 72px 0 76px;
    }

    .blog-index-header {
        align-items: start;
        flex-direction: column;
    }

    .blog-index-search {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .blog-index-search {
        border-radius: 18px;
        flex-direction: column;
    }

    .blog-index-search input,
    .blog-index-search button {
        height: 46px;
    }
}

.single-topic {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.single-topic-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(201, 51, 51, .10);
    color: var(--srt-red);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.single-topic-link:hover,
.single-topic-link:focus {
    background: var(--srt-red);
    color: #fff;
    transform: translateY(-2px);
}

.category-landing {
    padding: 70px 0;
    background: #fff;
}

.category-landing__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 52px;
    align-items: start;
}

.category-landing__content {
    padding: 42px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 14% 18%, rgba(245, 197, 66, .18), transparent 32%),
        linear-gradient(135deg, #fff, #f7f4ef);
    box-shadow: var(--srt-shadow);
}

.category-landing__content h2 {
    margin: 0 0 22px;
    color: #111;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -.06em;
}

.category-landing__content h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 5px;
    margin-top: 18px;
    border-radius: 999px;
    background: var(--srt-gold);
}

.category-landing__content p {
    margin: 0 0 18px;
    color: #2d2d2d;
    font-size: 1.08rem;
    line-height: 1.75;
    font-weight: 600;
}

.category-landing__popular {
    padding: 30px;
    border-radius: 22px;
    background: #111;
    color: #fff;
    box-shadow: var(--srt-shadow);
}

.category-landing__popular h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.04em;
}

.category-landing__popular h3::after {
    content: "";
    display: block;
    width: 46px;
    height: 4px;
    margin-top: 13px;
    border-radius: 999px;
    background: var(--srt-gold);
}

.category-popular-list {
    margin: 0;
    padding-left: 1.25rem;
}

.category-popular-list li {
    margin-bottom: 14px;
    color: var(--srt-gold);
    font-weight: 900;
}

.category-popular-list a {
    color: #fff;
    text-decoration: none;
    font-size: .96rem;
    line-height: 1.35;
    font-weight: 800;
}

.category-popular-list a:hover {
    color: var(--srt-gold);
}

@media (max-width: 900px) {
    .category-landing__grid {
        grid-template-columns: 1fr;
    }
}

.category-landing__sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.category-book-promo {
    display: flex;
    gap: 20px;
    padding: 26px;
    border-radius: 22px;
    background: linear-gradient(135deg, #faf7f1, #fff);
    box-shadow: var(--srt-shadow);
    align-items: flex-start;
}

.category-book-promo img {
    width: 90px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
    flex-shrink: 0;
}

.category-book-promo__content {
    flex: 1;
}

.category-book-promo__content h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    line-height: 1.05;
    font-weight: 900;
    color: #111;
}

.category-book-promo__content h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--srt-gold);
}

.category-book-promo__content p {
    margin: 0 0 18px;
    font-size: .95rem;
    line-height: 1.6;
    color: #444;
}

.category-book-promo .button {
    width: 100%;
}

.category-landing {
    padding: 70px 0 38px;
}

.category-posts-section {
    padding: 24px 0 80px;
    background: #fff;
}

.category-posts-header {
    margin-bottom: 34px;
    text-align: center;
}

.category-posts-header h2 {
    max-width: 900px;
    margin: 0 auto;
    color: #111;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -.06em;
}

.category-posts-header h2::after {
    content: "";
    display: block;
    width: 76px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: var(--srt-gold);
}

.category-posts-section .pagination,
.blog-pagination,
.navigation.pagination {
    margin-top: 52px;
    display: flex;
    justify-content: center;
}

.category-posts-section .nav-links,
.blog-pagination .nav-links,
.navigation.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-posts-section .page-numbers,
.blog-pagination .page-numbers,
.navigation.pagination .page-numbers {
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f7f4ef;
    color: #111;
    font-size: .92rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.category-posts-section .page-numbers.current,
.blog-pagination .page-numbers.current,
.navigation.pagination .page-numbers.current {
    background: var(--srt-red);
    color: #fff;
}

.category-posts-section a.page-numbers:hover,
.blog-pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:hover {
    background: var(--srt-red);
    color: #fff;
    transform: translateY(-2px);
}

.category-posts-section .page-numbers.dots,
.blog-pagination .page-numbers.dots,
.navigation.pagination .page-numbers.dots {
    background: transparent;
    box-shadow: none;
    color: #777;
    min-width: 28px;
    padding: 0 4px;
}

.category-posts-section .page-numbers.next,
.category-posts-section .page-numbers.prev,
.blog-pagination .page-numbers.next,
.blog-pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next,
.navigation.pagination .page-numbers.prev {
    min-width: 92px;
}

.single-footer .newsletter-card {
	display: flex;
    flex-direction: column;
}

/* Single post previous/next navigation */

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 46px 0;
}

.post-nav-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 118px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  color: #111;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.09);
  border-top: 5px solid var(--srt-red);
  transition: transform .2s ease, box-shadow .2s ease;
}

.post-nav-card:hover,
.post-nav-card:focus {
  transform: translateY(-2px);
  box-shadow: var(--srt-shadow);
}

.post-nav-card--next {
  text-align: right;
  align-items: flex-end;
}

.post-nav-label {
  color: var(--srt-red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.post-nav-title {
  color: #111;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -.025em;
}

/* Comments */

.comments-area {
  margin-top: 56px;
  padding-top: 42px;
  border-top: 1px solid rgba(0,0,0,.09);
}

.comments-title,
.comment-reply-title {
  margin: 0 0 22px;
  color: #111;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.045em;
}

.comments-title::after,
.comment-reply-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--srt-gold);
}

.comment-list {
  list-style: none;
  margin: 0 0 42px;
  padding: 0;
}

.comment-list .comment {
  margin-bottom: 22px;
}

.comment-body {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.comment-meta {
  margin-bottom: 12px;
  color: #666;
  font-size: .86rem;
  font-weight: 700;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111;
  font-weight: 900;
}

.comment-author .avatar {
  border-radius: 999px;
}

.comment-author a,
.comment-metadata a {
  color: #111;
  text-decoration: none;
}

.comment-author a:hover,
.comment-metadata a:hover {
  color: var(--srt-red);
}

.comment-content {
  color: #2d2d2d;
  font-size: 1rem;
  line-height: 1.75;
}

.comment-content p:last-child {
  margin-bottom: 0;
}

.reply a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--srt-red);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.reply a:hover {
  color: var(--srt-red-dark);
}

.comment-respond {
  margin-top: 36px;
  padding: 34px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 18%, rgba(245,197,66,.16), transparent 32%),
    linear-gradient(135deg, #fff, #f7f4ef);
  box-shadow: var(--srt-shadow);
}

.comment-notes,
.logged-in-as {
  margin: 0 0 22px;
  color: #444;
  font-size: .98rem;
  line-height: 1.6;
  font-weight: 600;
}

.logged-in-as a {
  color: var(--srt-red);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(201,51,51,.22);
}

.logged-in-as a:hover {
  color: var(--srt-red-dark);
  border-color: var(--srt-red);
}

.comment-form label {
  display: block;
  margin: 0 0 8px;
  color: #111;
  font-size: .9rem;
  font-weight: 900;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.13);
  border-radius: 14px;
  background: #fff;
  color: #111;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.comment-form textarea {
  min-height: 190px;
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: 3px solid rgba(245,197,66,.55);
  border-color: var(--srt-gold);
}

.comment-form .form-submit {
  margin: 22px 0 0;
}

.comment-form input[type="submit"] {
  min-height: 52px;
  width: 100%;
  border-radius: 999px;
  font-size: .9rem;
}

@media (max-width: 640px) {
  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav-card--next {
    text-align: left;
    align-items: flex-start;
  }

  .comment-respond {
    padding: 26px 20px;
  }
}

.people-page .single-image {
    max-width: 550px;
}

.alignright {
    float: right;
    display: block;
    margin: 0 0 1.75rem 2rem;
    max-width: 50%;
}

.alignleft {
    float: left;
    display: block;
    margin: 0 2rem 1.75rem 0;
    max-width: 50%;
}

.aligncenter {
    display: block;
    margin: 2rem auto;
}

.alignnone {
    display: block;
    margin: 2rem 0;
}

.wp-caption.alignright,
.wp-block-image.alignright {
    float: right;
    margin: 0 0 1.75rem 2rem;
    max-width: 50%;
}

.wp-caption.alignleft,
.wp-block-image.alignleft {
    float: left;
    margin: 0 2rem 1.75rem 0;
    max-width: 50%;
}

.article-content::after,
.entry-content::after {
    content: "";
    display: block;
    clear: both;
}

@media (max-width: 640px) {

    .alignleft,
    .alignright,
    .wp-caption.alignleft,
    .wp-caption.alignright,
    .wp-block-image.alignleft,
    .wp-block-image.alignright {
        float: none;
        display: block;
        max-width: 100%;
        margin: 2rem auto;
    }

}

h2, h3 {
	font-weight:900;
}

.srt-books-feature {
  margin: 4rem 0;
}

/* ==========================================================
   Books by Scott Roberts
   ========================================================== */

.srt-books-feature {
    margin: 4rem 0;
}

.srt-books-feature h2 {
    margin-bottom: 2rem;
}

.srt-books-feature__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.srt-book-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: center;

    padding: 2rem;

    border-radius: 22px;

    background:
        radial-gradient(circle at top left,
            rgba(245,197,66,.16),
            transparent 30%),
        linear-gradient(135deg,#ffffff,#faf8f2);

    box-shadow: var(--srt-shadow);
}

.srt-book-card__cover {
    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    border: 0 !important;
}

.srt-book-card__cover img {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;

    border-radius: 8px;

    box-shadow: 0 14px 30px rgba(0,0,0,.20);
}

.srt-book-card__content {
    min-width: 0;
}

.srt-book-card__eyebrow {
    margin: 0 0 .6rem;

    color: var(--srt-gold);

    font-size: .78rem;
    font-weight: 900;

    letter-spacing: .06em;
    text-transform: uppercase;
}

.srt-book-card h3 {
    margin: 0 0 .8rem;

    font-size: 2rem;
    font-weight: 900;
    line-height: 1.05;
}

.srt-book-card p {
    margin-bottom: 1.4rem;
}

.srt-book-card__button,
.srt-book-card__button:link,
.srt-book-card__button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;

    color: #fff !important;
    text-decoration: none;

    border-bottom: 0 !important;
}

.srt-book-card__button:hover,
.srt-book-card__button:focus {
    color: #fff !important;
}

@media (max-width: 700px) {

    .srt-book-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .srt-book-card__cover {
        margin: 0 auto;
    }

}

.srt-book-card > br,
.srt-book-card > p:empty,
.srt-book-card__cover br {
    display: none !important;
}

.srt-book-card__cover {
    grid-column: 1;
}

.srt-book-card__content {
    grid-column: 2;
}

@media (max-width: 700px) {
    .srt-book-card__cover,
    .srt-book-card__content {
        grid-column: 1;
    }

    .srt-book-card__cover {
        display: flex !important;
        margin: 0 auto 1.5rem;
    }
}