/**
Main css file, use this instead of /theme-root/style.css <- reserve this file for theme metadata.
*/
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

#top-bar {
  display: none;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--on-primary);
}
@media screen and (min-width: 960px) {
  #top-bar {
    display: block;
  }
}
#top-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
  padding: 0 15px;
}
#top-bar .menu {
  display: flex;
  align-items: center;
  padding-left: 10px;
  margin: 0;
  list-style-type: none;
  font-size: 10px;
  min-height: 36px;
}
#top-bar .menu a {
  color: #e9e9e9;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-decoration: none;
}
#top-bar .menu a::after {
  content: "|";
  padding-left: 10px;
  color: #666;
  font-size: 10px;
  font-weight: 800;
}
#top-bar .menu .menu-item:last-child a::after {
  content: "";
}
#top-bar .top-bar-socials {
  display: none;
}
@media screen and (min-width: 1200px) {
  #top-bar .top-bar-socials {
    display: flex;
    align-items: center;
  }
}
#top-bar .top-bar-socials > a {
  padding: 12px;
  color: #d9d9d9;
  transition: all 300ms ease;
}
#top-bar .top-bar-socials > a:hover.facebook {
  background: #3b5996;
}
#top-bar .top-bar-socials > a:hover.twitter {
  background: #FFF;
  color: #000;
}
#top-bar .top-bar-socials > a:hover.pinterest {
  background: #cb2027;
}
#top-bar .top-bar-socials > a:hover.instagram {
  background: #457399;
}
#top-bar .top-bar-socials .icon {
  height: 100%;
}
#top-bar .top-bar-socials .icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.site-header {
  position: relative;
  height: 90px;
  z-index: 1000;
}
.site-header .wrap {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(250px, 1fr) 3fr;
  max-width: var(--wp--style--global--content-size);
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.site-header .wrap > * {
  min-width: 0;
}
.site-header .site-branding {
  padding: 0 15px;
}
.site-header .site-branding img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .site-header {
    height: auto;
    padding-top: 15px;
  }
  .site-header .wrap {
    grid-template-columns: 1fr;
  }
  .site-header .main-navigation {
    width: 100%;
  }
  .site-header .main-navigation .menu-toggle {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .site-header.sticky {
    position: fixed;
    top: calc(0px + var(--wp-admin--admin-bar--height, 0px));
    left: 0;
    height: 64px;
    width: 100%;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: 4px solid #000;
    animation: sticky-header-anim 200ms ease 250ms both;
    transition: background 150ms ease-in-out;
  }
  .site-header.sticky .wrap {
    grid-template-columns: auto 1fr;
  }
  .site-header.sticky #site-navigation {
    padding: 0;
  }
  .site-header.sticky .site-branding img {
    max-height: 40px;
    width: auto;
  }
}

#site-navigation {
  position: relative;
  justify-self: end;
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 20px;
}
#site-navigation .menu-toggle {
  display: flex;
  align-items: center;
  justify-content: start;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--on-primary);
  padding: 6px 12px;
  cursor: pointer;
  border: none;
  font-size: 16px;
  gap: 10px;
}
#site-navigation .menu-toggle > svg {
  display: block;
}
#site-navigation .menu-toggle > span {
  color: rgba(255, 255, 255, 0.7);
}
#site-navigation .menu-toggle > span > small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
#site-navigation .search-toggle {
  padding: 8px;
  border-radius: 50px;
  border: 1px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
  background: none;
  outline: none;
  cursor: pointer;
}
#site-navigation .search-toggle > svg {
  display: block;
  height: 11px;
  width: 11px;
}
#site-navigation .subscribe-button {
  display: none;
  text-decoration: none;
  color: #FFFFFF;
  background-color: var(--wp--preset--color--secondary);
  border: 2px solid var(--wp--preset--color--secondary);
  font-size: 0.9375rem;
  text-align: center;
  padding: 12px 24px;
  line-height: 1;
  border-radius: 6px;
  transition: all 300ms ease;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  #site-navigation .subscribe-button {
    display: block;
  }
}
#site-navigation .subscribe-button:hover {
  background: transparent;
  color: var(--wp--preset--color--primary);
}
@media screen and (min-width: 960px) {
  #site-navigation .menu-toggle {
    display: none;
  }
}
#site-navigation .search-form {
  display: none;
  position: relative;
  z-index: 1001;
}
@media screen and (min-width: 960px) {
  #site-navigation .search-form {
    display: block;
  }
}
#site-navigation .search-form .search-form-container {
  background-color: red;
}
#site-navigation .search-form .search-form-container .icon {
  position: absolute;
  color: #a2a7b1;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
}
#site-navigation .search-form .search-form-container .icon > svg {
  display: block;
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 768px) {
  #site-navigation .search-form .search-form-container {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: calc(-50% - 1px);
  }
  #site-navigation .search-form .search-form-container.open {
    display: block;
  }
  #site-navigation .search-form .search-form-container .search-input {
    background-size: 16px 16px;
    border: 3px solid #a2a7b1;
    box-shadow: none;
    color: transparent;
    cursor: text;
    font-size: 13px;
    color: #444;
    min-height: 38px;
    height: 38px;
    line-height: 18px;
    padding: 7px 5px 8px 30px;
    transition: all 0.3s ease-in-out 0s;
    width: 1px;
    min-width: 210px;
    outline: none;
  }
  #site-navigation .search-form .search-form-container::before {
    content: "";
    display: block;
    position: absolute;
    right: 19px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px;
    top: -14px;
    border-color: transparent transparent #a2a7b1 transparent;
  }
}
#site-navigation #main-menu-wrap {
  /* Mobile first styles are a pain in the ass for such different styles */
  /* Mobile menu */
  /* Desktop menu */
  /* Large desktop */
}
#site-navigation #main-menu-wrap .menu-item-has-children > a {
  display: flex !important;
  align-items: center;
  gap: 5px;
}
#site-navigation #main-menu-wrap .menu-item > a {
  color: inherit;
}
#site-navigation #main-menu-wrap .current-menu-item:not(.nav-button) > a {
  color: var(--wp--preset--color--accent) !important;
}
@media screen and (max-width: 960px) {
  #site-navigation #main-menu-wrap {
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    min-width: 280px;
    background: #FFF;
    transform-origin: top left;
    opacity: 0;
    transform: scale(0);
    z-index: 1000;
    transition: opacity 300ms;
    border: 1px solid #d2d2d2;
    padding: 5px;
  }
  #site-navigation #main-menu-wrap .menu,
  #site-navigation #main-menu-wrap .sub-menu {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
  }
  #site-navigation #main-menu-wrap .menu {
    color: #525559;
  }
  #site-navigation #main-menu-wrap .menu .menu-item > a {
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    padding: 10px 20px;
    line-height: 1.25rem;
  }
  #site-navigation #main-menu-wrap .menu .menu-item > a:hover, #site-navigation #main-menu-wrap .menu .menu-item.submenu-open > a {
    background: #55595c;
    color: #FFF;
  }
  #site-navigation #main-menu-wrap .sub-menu {
    overflow: hidden;
  }
  #site-navigation #main-menu-wrap .sub-menu:not(.open) {
    height: 0;
  }
  #site-navigation #main-menu-wrap .sub-menu.open {
    height: auto;
  }
  #site-navigation #main-menu-wrap .sub-menu .menu-item > a {
    font-size: 0.6875rem;
  }
}
@media screen and (min-width: 960px) {
  #site-navigation #main-menu-wrap {
    position: relative;
  }
  #site-navigation #main-menu-wrap .sub-menu .menu-item-has-children .sub-arrow {
    transform: rotate(-90deg);
  }
  #site-navigation #main-menu-wrap .menu,
  #site-navigation #main-menu-wrap .sub-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
    flex-wrap: wrap;
  }
  #site-navigation #main-menu-wrap .menu {
    font-size: 0.9375rem;
  }
  #site-navigation #main-menu-wrap .menu .menu-item {
    position: relative;
  }
  #site-navigation #main-menu-wrap .menu .menu-item > a {
    display: block;
    text-decoration: none;
    padding: 20px 12px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 200ms ease;
    color: #232425;
  }
  #site-navigation #main-menu-wrap .menu .menu-item > a:hover {
    color: var(--wp--preset--color--accent);
  }
  #site-navigation #main-menu-wrap .menu .menu-item:hover .sub-menu {
    display: block;
  }
  #site-navigation #main-menu-wrap .sub-menu {
    display: none;
    position: absolute;
    flex-direction: column;
    top: 100%;
    left: 0;
    min-width: 210px;
    padding: 10px 0;
    width: auto;
    background: #FFF;
    border: 4px solid var(--wp--preset--color--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.5rem;
  }
  #site-navigation #main-menu-wrap .sub-menu .menu-item {
    background: transparent;
    border-bottom: 1px solid #f0f0f0;
  }
  #site-navigation #main-menu-wrap .sub-menu .menu-item:hover {
    background: #fafafa;
  }
  #site-navigation #main-menu-wrap .sub-menu .menu-item:last-child {
    border: none;
  }
  #site-navigation #main-menu-wrap .sub-menu .menu-item > a {
    display: block;
    padding: 11px 4px 10px 19px !important;
  }
}
@media screen and (min-width: 1200px) {
  #site-navigation #main-menu-wrap .menu .menu-item > a {
    padding: 20px;
  }
}
#site-navigation.toggled #main-menu-wrap {
  opacity: 1;
  transform: scale(1);
}
#site-navigation .nav-button > a {
  display: block;
  outline: 0;
  opacity: 1;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px !important;
  padding: 0 17px 2px !important;
  border-radius: 20px;
  border: 1px solid #333;
  transition: all 0.15s ease-in-out;
}
#site-navigation .nav-button > a:hover {
  background: #333;
  color: #FFF !important;
}

@keyframes sticky-header-anim {
  from {
    opacity: 0.5;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.single-post #primary {
  padding-top: 35px;
  padding-bottom: 100px;
}
.single-post #primary .entry-header {
  padding: 0 15px;
}
.single-post #primary .site-main {
  padding-bottom: 50px;
}
.single-post #primary h1 {
  margin-top: 25px;
  color: #1f2123;
  font-weight: 800;
  font-size: 33px;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: -3px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .single-post #primary h1 {
    font-size: 51px;
    margin-bottom: 30px;
  }
}
.single-post #primary p {
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
  font-family: "Lora", "Open Sans", sans-serif;
}
.single-post #primary .postmeta {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #a1a1a1;
  position: relative;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.single-post #primary .postmeta h6 {
  letter-spacing: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  padding-right: 4px;
  text-transform: capitalize;
  margin-bottom: 0;
}
.single-post #primary .postmeta a {
  color: #a1a1a1;
  text-decoration: none;
}
.single-post #primary .postmeta a:hover {
  text-decoration: underline;
  color: var(--wp--preset--color--accent);
}
.single-post #primary .authormeta {
  display: flex;
  align-items: center;
  gap: 15px;
}
.single-post #primary .post-author-img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.single-post #primary .post-author-img img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.single-post #primary .post-date {
  align-self: end;
  margin-left: auto;
  font-size: 0.8125rem;
}
.single-post #primary .post-date strong {
  font-weight: 600;
}
.single-post #primary .share-post .share-text {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  margin: 0;
  margin-bottom: 1rem;
  padding-top: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.single-post #primary .share-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.single-post #primary .share-buttons .share-email a {
  background: #e9e9e9;
  color: #656565;
}
.single-post #primary .share-buttons .share-facebook a {
  background: #1877F2;
  color: #FFF;
}
.single-post #primary .share-buttons .share-reddit a {
  background: #cee3f8;
  color: #555;
}
.single-post #primary .share-buttons .share-twitter a {
  background: #000;
  color: #FFF;
}
.single-post #primary .share-buttons .share-linkedin a {
  background: #0077b5;
  color: #FFF;
}
.single-post #primary .share-buttons .share-pinterest a {
  background: #ca1f27;
  color: #FFF;
}
.single-post #primary .share-buttons a {
  display: inline-block;
  padding: 7px;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
}
.single-post #primary .share-buttons a:hover, .single-post #primary .share-buttons a:focus {
  opacity: 0.6;
}
.single-post #primary .share-buttons a > * {
  display: block;
  width: 18px;
  height: 18px;
}
.single-post #primary .entry-footer {
  margin-top: 10px;
  padding: 0 15px;
}

.category-grid {
  display: grid;
  max-width: var(--wp--style--global--content-size);
  grid-template-areas: "headline" "content" "pagination" "sidebar";
  column-gap: 40px;
  row-gap: 35px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 100px;
}
@media screen and (min-width: 960px) {
  .category-grid {
    grid-template-areas: "headline headline" "content sidebar" "pagination pagination";
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}
@media screen and (min-width: 1200px) {
  .category-grid {
    padding: 0;
  }
}
.category-grid article {
  margin-bottom: 55px;
}
.category-grid .headline {
  display: block;
  margin: 0 16px;
  grid-area: headline;
  padding-top: 14px;
  padding-bottom: 7px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.category-grid .headline > h3 {
  position: relative;
  font-size: 1.6875rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.3;
  text-transform: uppercase;
  padding-left: 15px;
  color: #000;
}
.category-grid .headline > h3 > small {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #a1a1a1;
  margin-left: 10px;
  letter-spacing: 0;
  text-transform: none;
}
.category-grid > * {
  min-width: 0;
}
.category-grid .content {
  grid-area: content;
}
.category-grid .sidebar {
  grid-area: sidebar;
}
.category-grid .navigation.pagination {
  grid-area: pagination;
}
.category-grid .content img {
  max-width: 100%;
}
.category-grid .content .featured-image {
  margin-bottom: 13px;
}
.category-grid .content .postmeta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a1a1a1;
  position: relative;
}
.category-grid .content .postmeta h6 {
  letter-spacing: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  padding-right: 4px;
  text-transform: capitalize;
  margin-bottom: 0;
}
.category-grid .content .postmeta a {
  color: #a1a1a1;
  text-decoration: none;
}
.category-grid .content .postmeta a:hover {
  text-decoration: underline;
  color: var(--wp--preset--color--accent);
}
.category-grid .content .post-author-img {
  width: 50px;
  height: 50px;
}
.category-grid .content .post-author-img img {
  border-radius: 50%;
}
.category-grid .content .post-date {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.8125rem;
}
.category-grid .content .post-date strong {
  font-weight: 600;
}
.category-grid .content .entry-content .post-title {
  font-size: 1.6875rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
}
.category-grid .content .entry-content .post-title a {
  color: #1f2123;
  transition: color 300ms ease;
}
.category-grid .content .entry-content .post-title a:hover {
  color: var(--wp--preset--color--accent);
}
.category-grid .content .entry-content p {
  font-family: "Lora", serif;
  margin-bottom: 24px;
  font-size: 0.9375rem;
  color: #444;
  margin-top: 10px;
  letter-spacing: 0.2px;
  font-weight: 400;
  line-height: 1.6;
}
.category-grid .content .search-entry {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  border-bottom: 4px solid #efefef;
  margin-bottom: 40px;
}
.category-grid .content .search-entry .featured-image {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .category-grid .content .search-entry {
    grid-template-columns: 2fr 1fr;
  }
  .category-grid .content .search-entry .featured-image {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

.archive.author #primary.author-archive {
  background: #f3f3f3;
  max-width: 100%;
  padding: 45px 0;
}
.archive.author #primary.author-archive > * {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto !important;
  margin-right: auto !important;
}
.archive.author #primary.author-archive .headline {
  background: #fff;
  padding: 30px;
  border: 2px solid #eee;
  min-height: 150px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.018);
  margin-bottom: 15px;
}
.archive.author #primary.author-archive .headline img {
  float: left;
  margin-right: 30px;
}
.archive.author #primary.author-archive .author-name {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #333;
}
.archive.author #primary.author-archive .content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  padding: 0 15px;
}
.archive.author #primary.author-archive .content > * {
  min-width: 0;
}
.archive.author #primary.author-archive .content .img {
  width: 100%;
}
.archive.author #primary.author-archive .content .img img {
  max-width: 100%;
}
.archive.author #primary.author-archive .post-card {
  background: #FFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.33);
}
.archive.author #primary.author-archive .post-card .desc {
  padding: 0 20px 2px 24px;
}
.archive.author #primary.author-archive .post-card .title {
  font-size: 21px;
  margin-bottom: 5px;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: -1px;
  text-transform: none;
}
.archive.author #primary.author-archive .post-card .title a {
  color: #2e373d;
}
.archive.author #primary.author-archive .post-card .title a:hover {
  color: var(--wp--preset--color--accent);
}
.archive.author #primary.author-archive .post-card p {
  font-size: 13px;
  line-height: 1.6;
  padding-top: 10px;
  margin-bottom: 10px;
  color: #8e8e8e;
}
.archive.author #primary.author-archive .post-card .categories {
  margin-top: 25px;
  margin-bottom: 8px;
  color: #a1a1a1;
  font-size: 13px;
}
.archive.author #primary.author-archive .post-card .categories a {
  color: #a1a1a1;
}
.archive.author #primary.author-archive .post-card .categories a:hover {
  text-decoration: underline;
}
.archive.author #primary.author-archive .navigation.pagination {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 480px) {
  .landing-weekly-releases {
    flex-wrap: wrap !important;
  }
  .landing-weekly-releases > figure {
    width: 100% !important;
    height: auto !important;
  }
  .landing-weekly-releases > * {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

.secondary-interview li:last-child .secondary-interview-item {
  border-bottom: none !important;
}

.sitepost .featured-books.recommendations .book {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding-bottom: 20px;
}
.sitepost .featured-books.recommendations .book img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
.sitepost .featured-books.recommendations .book > * {
  min-width: 0;
}
.sitepost .featured-books.recommendations .book .feature-button {
  display: inline-block;
  border-radius: 1px;
  padding: 9px 16px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  background: #128abc;
  color: #FFF;
}
@media screen and (min-width: 960px) {
  .sitepost .featured-books.recommendations .book {
    grid-template-columns: 1fr 3fr;
  }
  .sitepost .featured-books.recommendations .book img {
    width: 100%;
  }
}
.sitepost .featured-books.default {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 15px;
  padding-top: 35px;
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .sitepost .featured-books.default {
    grid-template-columns: repeat(6, 1fr);
  }
}
.sitepost .featured-books.default > * {
  min-width: 0;
}
.sitepost .featured-books.default .book {
  width: 100%;
}
.sitepost .featured-books.default .book img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.sitepost .featured-books.default .book .feature-button {
  display: inline-block;
  margin-top: 10px;
  border-radius: 1px;
  padding: 9px 16px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  border: 2px solid #128abc;
  color: #128abc;
  background: none;
}

@media screen and (max-width: 480px) {
  .fa-main-title {
    font-size: 60px !important;
  }
  .fa-main-subtitle {
    font-size: 25px !important;
  }
  .fa-banner p {
    font-size: 18px !important;
  }
}
/* This is WPs "mobile" breakpoint for columns */
@media screen and (max-width: 782px) {
  .fa-table-head {
    column-gap: 0;
  }
  .fa-table-head .wp-block-column:nth-child(2) {
    margin-left: 48%;
  }
  .fa-table-head .wp-block-column:nth-child(2),
  .fa-table-head .wp-block-column:nth-child(3) {
    flex-basis: 25% !important;
    padding: 0 5px;
  }
  .fa-table-head .wp-block-column:nth-child(2) > h4,
  .fa-table-head .wp-block-column:nth-child(3) > h4 {
    white-space: nowrap;
  }
  .fa-second-button {
    display: none !important;
  }
}
.customer-reviews {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .customer-reviews {
    padding: 5%;
  }
}
.customer-reviews .review {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF;
  height: 100%;
}
.customer-reviews .review .screenshot {
  display: none;
}
.customer-reviews .review .image {
  padding: 10px;
}
.customer-reviews .review img {
  display: block;
  width: 100%;
  height: auto;
}
.customer-reviews .review .quote p {
  font-size: 17px;
  line-height: 23px;
  font-style: italic;
}
.customer-reviews .review .author-name {
  font-size: 29px;
}
.customer-reviews .review .author-tagline {
  font-size: 16px;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .customer-reviews .review {
    flex-direction: row;
  }
  .customer-reviews .review .screenshot {
    display: block;
  }
  .customer-reviews .review .image {
    width: 20%;
  }
  .customer-reviews .review .quote {
    width: 30%;
    padding-left: 8px;
    padding-right: 30px;
  }
  .customer-reviews .review .screenshot-small {
    width: 18%;
  }
  .customer-reviews .review .screenshot-large {
    width: 32%;
    padding: 0 10px;
  }
}
.customer-reviews .splide__pagination {
  gap: 10px;
}
.customer-reviews .splide__pagination__page {
  background: #9D9D9D;
  width: 12px;
  height: 12px;
  outline: none;
  border: none;
  border-radius: 100%;
}
.customer-reviews .splide__pagination__page.is-active {
  background: #EEFF82;
}

.accordion .accordion-item > *:first-child {
  cursor: pointer;
}
.accordion .accordion-item .accordion-content {
  overflow: hidden;
  height: 0;
}
.accordion .accordion-item .chevron {
  transition: all 250ms ease;
  transform: rotate(0);
}
.accordion .accordion-item .chevron > svg {
  display: block;
  width: 16px;
  height: 16px;
}
.accordion .accordion-item.open {
  height: auto;
}
.accordion .accordion-item.open .chevron {
  transform: rotate(90deg);
}
.accordion .check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--on-primary);
  margin: 0 auto;
}
.accordion .check-icon > svg {
  display: block;
  width: 16px;
  height: 16px;
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: bold;
  text-decoration: none;
  background: #fff;
  border: 1px solid #d1d7dc;
  line-height: 1;
  padding: 10px 14px;
  margin: 3px 4px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  color: #0093d0;
}
.pagination .page-numbers:hover, .pagination .page-numbers:focus {
  color: #e84c3d;
}

.legacy-icon {
  vertical-align: baseline;
}

.legacy-line {
  border: solid #e1e1e1;
  border-width: 1px 0 0;
  clear: both;
  margin: 15px 0 35px;
  height: 0;
  width: auto;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .legacy-line {
    margin-right: 10px;
    margin-left: 10px;
  }
}

a.legacy-button,
.legacy a.button {
  text-align: center;
  position: relative;
  border-radius: 1px;
  display: inline-block;
  font-size: 15px;
  text-transform: none;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 600 !important;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 21px;
  margin-right: 10px;
  line-height: 1;
  letter-spacing: 0;
  padding: 14px 20px;
  transition: all 0.28s ease;
  text-transform: uppercase;
  background: #128abc;
  color: #FFF;
}
a.legacy-button.small,
.legacy a.button.small {
  font-size: 13px;
  letter-spacing: 0;
  padding: 9px 16px;
  text-transform: none;
}
a.legacy-button.border, a.legacy-button.bordered-bot,
.legacy a.button.border,
.legacy a.button.bordered-bot {
  border: 2px solid #128abc;
  background: none;
  color: #128abc;
}

/*
 * The amount of styling inconsistencies in the legacy site are
 * driving me crazy.
 */
main.single-post .legacy a {
  text-decoration: none;
  outline: none;
  font-weight: normal;
}
main.single-post .legacy a:visited {
  color: #0093d0;
}
main.single-post .legacy a:hover, main.single-post .legacy a:focus {
  color: #e84c3d;
}

.legacy.distance,
.legacy .distance1,
.legacy .distance2,
.legacy .distance3,
.legacy .distance4,
.legacy .distance5 {
  display: block;
  width: 100%;
  margin: 0;
  clear: both;
  border: 0 none;
  height: 20px;
}
.legacy .distance2 {
  height: 35px;
}
.legacy .distance3 {
  height: 60px;
}
.legacy .distance4 {
  height: 80px;
}
.legacy .distance5 {
  height: 100px;
}
.legacy.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.legacy[class*=col-] img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.legacy.col-md-1, .legacy.col-md-2, .legacy.col-md-3, .legacy.col-md-4, .legacy.col-md-5, .legacy.col-md-6, .legacy.col-md-7, .legacy.col-md-8, .legacy.col-md-9, .legacy.col-md-10, .legacy.col-md-11, .legacy.col-md-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.legacy.col-md-1 p:empty, .legacy.col-md-2 p:empty, .legacy.col-md-3 p:empty, .legacy.col-md-4 p:empty, .legacy.col-md-5 p:empty, .legacy.col-md-6 p:empty, .legacy.col-md-7 p:empty, .legacy.col-md-8 p:empty, .legacy.col-md-9 p:empty, .legacy.col-md-10 p:empty, .legacy.col-md-11 p:empty, .legacy.col-md-12 p:empty {
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .legacy.col-md-1, .legacy.col-md-2, .legacy.col-md-3, .legacy.col-md-4, .legacy.col-md-5, .legacy.col-md-6, .legacy.col-md-7, .legacy.col-md-8, .legacy.col-md-9, .legacy.col-md-10, .legacy.col-md-11, .legacy.col-md-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 768px) {
  .legacy.col-md-1, .legacy.col-md-2, .legacy.col-md-3, .legacy.col-md-4, .legacy.col-md-5, .legacy.col-md-6, .legacy.col-md-7, .legacy.col-md-8, .legacy.col-md-9, .legacy.col-md-10, .legacy.col-md-11, .legacy.col-md-12 {
    float: left;
  }
  .legacy.col-md-12 {
    width: 100%;
  }
  .legacy.col-md-11 {
    width: 91.6666666667%;
  }
  .legacy.col-md-10 {
    width: 83.3333333333%;
  }
  .legacy.col-md-9 {
    width: 75%;
  }
  .legacy.col-md-8 {
    width: 66.6666666667%;
  }
  .legacy.col-md-7 {
    width: 58.3333333333%;
  }
  .legacy.col-md-6 {
    width: 50%;
  }
  .legacy.col-md-5 {
    width: 41.6666666667%;
  }
  .legacy.col-md-4 {
    width: 33.3333333333%;
  }
  .legacy.col-md-3 {
    width: 25%;
  }
  .legacy.col-md-2 {
    width: 16.6666666667%;
  }
  .legacy.col-md-1 {
    width: 8.3333333333%;
  }
}

.posts-gallery .post {
  position: relative;
}
.posts-gallery .splide__arrows .splide__arrow {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  transform: translateY(-50%);
  background: none;
  transition: all 300ms ease;
  opacity: 0.28;
  cursor: pointer;
  z-index: 10;
  border: 3px solid #FFF;
  color: #FFF;
  outline: none;
}
.posts-gallery .splide__arrows .splide__arrow:hover {
  opacity: 0.65;
}
.posts-gallery .splide__arrows .splide__arrow--prev {
  left: 10px;
}
.posts-gallery .splide__arrows .splide__arrow--next {
  right: 10px;
}
.posts-gallery .featured-image {
  width: 100%;
}
.posts-gallery .featured-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 20/7;
  object-fit: cover;
}
.posts-gallery .post-info {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px 50px 30px 60px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.9));
  /* Excerpt */
}
@media screen and (min-width: 768px) {
  .posts-gallery .post-info {
    display: block;
  }
}
.posts-gallery .post-info > p {
  display: none;
}
@media screen and (min-width: 960px) {
  .posts-gallery .post-info > p {
    display: block;
  }
}
.posts-gallery .post-info .meta {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.posts-gallery .post-info .meta .category {
  color: #FFF;
}
.posts-gallery .post-info .meta .category:hover {
  color: var(--wp--preset--color--accent);
  text-decoration: underline;
}
.posts-gallery .post-info .post-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.posts-gallery .post-info .post-title a {
  color: #FFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.posts-gallery .post-info p {
  font-size: 14px;
  font-weight: 400;
  color: #d9d9d9;
  margin-bottom: 10px;
  text-shadow: 0 1px 0 #000;
}

#sailthru-signup-form {
  color: #3C3C3C;
  padding-top: 20px;
}
#sailthru-signup-form span.ttl {
  font-size: 13px;
  font-weight: 700;
}
#sailthru-signup-form input[type=email],
#sailthru-signup-form .mt-3 > input {
  display: block;
  min-width: 210px;
  max-width: 100%;
  min-height: 36px;
  padding: 5px;
  color: #444;
  border: 1px solid #777;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 1px;
  outline: 0;
  margin: 0;
  margin-bottom: 20px;
}
#sailthru-signup-form input[type=email]:focus,
#sailthru-signup-form .mt-3 > input:focus {
  border: 1px solid #aaa;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
#sailthru-signup-form input[type=email]:hover,
#sailthru-signup-form .mt-3 > input:hover {
  border-color: #c1dfed;
}
#sailthru-signup-form .question-wrapper {
  display: flex;
  gap: 15px;
  margin: 0;
  margin-top: 20px;
  font-weight: 400;
}
#sailthru-signup-form .question-wrapper .select-all {
  font-size: 13px;
  font-weight: bold;
  color: var(--wp--preset--color--accent);
}
#sailthru-signup-form .option-wrapper {
  display: flex;
  flex-direction: row;
}
#sailthru-signup-form .option-wrapper .option-check-input {
  font-weight: normal;
  font-size: 0.8125rem;
  color: #444;
  margin: 3px;
  margin-right: 6px;
  cursor: pointer;
}
#sailthru-signup-form .option-wrapper .option-label {
  font-size: 13px;
  font-weight: 400;
  padding: 2px 0;
  cursor: pointer;
}
#sailthru-signup-form .additional-newsletters {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 15px;
  font-size: 15px;
}
#sailthru-signup-form .additional-newsletters .input {
  font-weight: normal;
  font-size: 0.8125rem;
  color: #444;
  margin: 3px;
  margin-right: 6px;
}
#sailthru-signup-form .button {
  border: none;
  outline: none;
  display: inline-block;
  background: var(--wp--preset--color--primary);
  color: #FFF;
  border-radius: 2px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 80px;
  cursor: pointer;
  transition: all 0.28s ease;
}
#sailthru-signup-form .button:hover, #sailthru-signup-form .button:focus {
  background: #292929;
}

.footer {
  width: 100%;
  background: #0c0c0c;
  padding: 50px 0;
  text-align: left;
}
.footer .footer-wrap {
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  row-gap: 20px;
  grid-template-areas: "left" "middle" "right";
}
@media screen and (min-width: 960px) {
  .footer .footer-wrap {
    grid-template-areas: "left middle right";
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer .left,
.footer .middle,
.footer .right {
  padding: 0 15px;
}
.footer .left {
  grid-area: left;
}
.footer .middle {
  grid-area: middle;
}
.footer .right {
  grid-area: right;
}
.footer p {
  font-size: 0.8125rem;
  line-height: 19px;
  color: #a9a9a9;
}
.footer .subtitle {
  color: #fff;
  display: block;
  padding-bottom: 6px;
  margin: 0;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: 800;
  text-shadow: 0 1px 0 #000;
}
.footer .socials {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.footer .socials > .social-link {
  padding: 10px;
  transition: all 300ms ease;
  border-radius: 2px;
}
.footer .socials > .social-link > svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: #FFF;
  transition: all 300ms ease;
}
.footer .socials > .social-link:hover.twitter {
  background: #00acee;
}
.footer .socials > .social-link:hover.facebook {
  background: #3b5996;
}
.footer .socials > .social-link:hover.pinterest {
  background: #cb2027;
}
.footer .socials > .social-link:hover.instagram {
  background: #457399;
}
.footer .widget-area li:last-child .footer-post-item {
  border: none;
}

.editorial-review-wrapper {
  /* Headline inline style from your HTML */
  /* Optional spacing defaults (Elementor usually adds spacing via global styles) */
  /* Icon list (covers the Elementor icon-list CSS you pasted, simplified) */
  /* If you ever use SVG icons, this mirrors Elementor sizing behavior */
  /* Drop cap support (Elementor text-editor CSS you pasted) */
  /* Image container (Elementor typically makes images responsive) */
}
.editorial-review-wrapper h1 {
  color: #000000;
  font-family: "Open Sans", Sans-serif;
  font-size: 80px;
  font-weight: 700;
  margin: 0 0 40px 0;
}
.editorial-review-wrapper h2 {
  font-size: 34px;
  font-weight: 700;
}
.editorial-review-wrapper .flex {
  display: flex;
  gap: 2rem;
}
.editorial-review-wrapper .promo-title {
  color: #000;
}
.editorial-review-wrapper .promo > * + * {
  margin-top: 0.75rem;
}
.editorial-review-wrapper .promo-subtitle {
  margin-top: 1rem;
}
.editorial-review-wrapper .icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.editorial-review-wrapper .icon-list-item {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.25rem 0;
}
.editorial-review-wrapper .icon-list-icon {
  display: flex;
}
.editorial-review-wrapper .icon-list-text {
  align-self: center;
  padding-left: 5px;
  /* matches Elementor */
}
.editorial-review-wrapper .icon-list-icon svg {
  color: black;
  width: var(--icon-list-icon-size, 2em);
  height: var(--icon-list-icon-size, 2em);
}
.editorial-review-wrapper .icon-list-icon i {
  width: 1.25em;
  /* matches Elementor */
  font-size: var(--icon-list-icon-size, 1em);
}
.editorial-review-wrapper .drop-cap {
  float: left;
  text-align: center;
  line-height: 1;
  font-size: 50px;
}
.editorial-review-wrapper .drop-cap-letter {
  display: inline-block;
  width: 1em;
  height: 1em;
}
.editorial-review-wrapper .drop-cap.stacked {
  background-color: #818a91;
  color: #fff;
}
.editorial-review-wrapper .drop-cap.framed {
  color: #818a91;
  border: 3px solid currentColor;
  background-color: transparent;
}
.editorial-review-wrapper .drop-cap:not(.default) {
  margin-top: 8px;
}
.editorial-review-wrapper .promo-image img {
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.editorial-review-wrapper .editorial-review-header {
  text-align: center;
  margin-bottom: 3rem;
}
.editorial-review-wrapper .editorial-review-header .editorial-review-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .editorial-review-wrapper .editorial-review-header .editorial-review-title {
    font-size: 2rem;
  }
}
.editorial-review-wrapper .editorial-review-header .editorial-review-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin: 0;
}
.editorial-review-wrapper .editorial-review-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.editorial-review-wrapper .editorial-review-process .process-step {
  text-align: center;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
}
.editorial-review-wrapper .editorial-review-process .process-step .step-number {
  width: 50px;
  height: 50px;
  background: #0073aa;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}
.editorial-review-wrapper .editorial-review-process .process-step .step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.editorial-review-wrapper .editorial-review-process .process-step .step-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}
.editorial-review-wrapper .editorial-review-form {
  background: #bdd7ec;
  padding: 28px;
  width: 400px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.editorial-review-wrapper .editorial-review-form .form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}
.editorial-review-wrapper .editorial-review-form .form-section:last-of-type {
  border-bottom: none;
}
.editorial-review-wrapper .editorial-review-form .form-section .form-section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}
.editorial-review-wrapper .editorial-review-form .form-field {
  margin-bottom: 0.75rem;
}
.editorial-review-wrapper .editorial-review-form .form-field .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}
.editorial-review-wrapper .editorial-review-form .form-field .form-label .required {
  color: #d63638;
}
.editorial-review-wrapper .editorial-review-form .form-field .form-input,
.editorial-review-wrapper .editorial-review-form .form-field .form-select,
.editorial-review-wrapper .editorial-review-form .form-field .form-textarea {
  width: 100%;
  padding: 0.75rem 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.editorial-review-wrapper .editorial-review-form .form-field .form-input:focus,
.editorial-review-wrapper .editorial-review-form .form-field .form-select:focus,
.editorial-review-wrapper .editorial-review-form .form-field .form-textarea:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 1px #0073aa;
}
.editorial-review-wrapper .editorial-review-form .form-field .form-textarea {
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
}
.editorial-review-wrapper .editorial-review-form .form-field .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}
.editorial-review-wrapper .editorial-review-form .form-field.form-field-checkbox .form-checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: normal;
}
.editorial-review-wrapper .editorial-review-form .form-field.form-field-checkbox .form-checkbox-label .form-checkbox {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  cursor: pointer;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.editorial-review-wrapper .editorial-review-form .form-field.form-field-checkbox .form-checkbox-label span {
  flex: 1;
}
.editorial-review-wrapper .editorial-review-form .form-field.form-field-checkbox .form-checkbox-label span .required {
  color: #d63638;
}
.editorial-review-wrapper .editorial-review-form .form-disclaimer {
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f0f0f0;
  border-radius: 4px;
}
.editorial-review-wrapper .editorial-review-form .form-disclaimer p {
  margin: 0;
  color: #666;
}
.editorial-review-wrapper .editorial-review-form .form-submit-wrapper {
  text-align: center;
}
.editorial-review-wrapper .editorial-review-form .form-submit-wrapper .form-submit-button {
  background: #319813;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  width: 100%;
  padding: 10px;
}
.editorial-review-wrapper .editorial-review-success-message,
.editorial-review-wrapper .editorial-review-error-message {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  text-align: center;
}
.editorial-review-wrapper .editorial-review-success-message p,
.editorial-review-wrapper .editorial-review-error-message p {
  margin: 0.5rem 0;
}
.editorial-review-wrapper .editorial-review-success-message p:first-child,
.editorial-review-wrapper .editorial-review-error-message p:first-child {
  font-weight: bold;
  font-size: 1.25rem;
}
.editorial-review-wrapper .editorial-review-success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.editorial-review-wrapper .editorial-review-error-message {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.editorial-review-wrapper .form-disclaimer {
  font-style: italic;
  text-align: center;
  font-size: 12px;
  color: #7A7A7A;
  width: 68%;
  margin: 20px auto;
}
@media screen and (max-width: 1050px) {
  .editorial-review-wrapper .flex {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .editorial-review-wrapper form {
    width: 100%;
    max-width: unset;
  }
  .editorial-review-wrapper h1 {
    font-size: 35px;
    margin-bottom: 8px;
  }
  .editorial-review-wrapper h2 {
    font-size: 25px;
    margin-bottom: 6px;
  }
  .editorial-review-wrapper h3 {
    font-size: 20px;
    margin-bottom: 4px;
  }
}

.submission-confirmation {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 16px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111;
}

.submission-confirmation h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.submission-confirmation .hero-image {
  display: block;
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 18px auto 28px;
}

.submission-confirmation .lead {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 16px;
}

.submission-confirmation h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 22px 0 12px;
}

.submission-confirmation ul {
  margin: 0;
  padding-left: 22px;
}

.submission-confirmation li {
  font-size: 18px;
  line-height: 1.5;
  margin: 10px 0;
}

.submission-confirmation a {
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
}

.submission-confirmation a:hover {
  opacity: 0.85;
}

/* Optional: make the bullet list feel a bit tighter on mobile */
@media (max-width: 520px) {
  .submission-confirmation h2 {
    font-size: 30px;
  }
  .submission-confirmation .lead {
    font-size: 20px;
  }
  .submission-confirmation li {
    font-size: 16px;
  }
}
#author-interview-container h2 {
  font-weight: bold;
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
  font-family: "Lora", "Open Sans", sans-serif;
}
#author-interview-container p {
  margin: 0;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
  font-family: "Lora", "Open Sans", sans-serif;
}
#author-interview-container .button.blue {
  border-color: #128abc;
  color: #128abc;
  background: none !important;
  border: 2px solid #dedede;
  text-shadow: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 20px;
  margin-top: 20px;
}
#author-interview-container hr {
  margin: 40px auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background: #e4744f;
  color: #FFF;
}

body {
  background-color: #2b1100;
  background-image: url("/wp-content/themes/wwm-newinbooks-theme/assets/img/site-bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

#page {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  background: #FFF;
}

#wpadminbar .wwm-flush-cache {
  background: rgb(40, 27, 151);
}

#primary:not(.not-found-page, .full-width-content) {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 2%;
  padding-right: 2%;
}
@media screen and (min-width: 768px) {
  #primary:not(.not-found-page, .full-width-content) {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.landing-page {
  padding-top: 35px;
}

/* https://make.wordpress.org/core/2021/06/29/on-layout-and-content-width-in-wordpress-5-8/ */
.entry-content {
  padding: 0 15px;
}

#primary.full-width-content .entry-content {
  padding: 0;
}

.entry-content > *,
.entry-header > * {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto !important;
  margin-right: auto !important;
}

.entry-content > .alignwide {
  max-width: 100%;
}

.entry-content > .alignfull {
  max-width: none;
}

.entry-content > .alignleft {
  float: left;
  margin-right: 2em;
}

.entry-content > .alignright {
  float: right;
  margin-right: 2em;
}

/* === Shared global styles === */
.underline-subtitle {
  line-height: 1.8;
}
.underline-subtitle::after {
  content: "";
  margin: 4px 0 20px;
  height: 0;
  display: block;
  position: relative;
  width: 38px;
  border-bottom: 5px solid #ff6c6d;
}

.sidebar-post-item figure {
  padding: 0 !important;
}
.sidebar-post-item img {
  background: #e5e5e5;
  padding: 3px;
}
.sidebar-post-item:hover {
  background: #fafafa;
}
.sidebar-post-item:hover img {
  background: #ff6c6d;
}

.footer-post-item figure {
  padding: 0 !important;
}
.footer-post-item img {
  background: #454545;
  padding: 3px;
}
.footer-post-item:hover {
  border-color: #444 !important;
}
.footer-post-item:hover img {
  background: #ff6c6d;
}

.searchform-input-wrap {
  position: relative;
  display: inline-block;
  width: 50%;
  min-width: 210px;
}
.searchform-input-wrap .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.searchform-input-wrap .icon > svg {
  display: block;
  width: 100%;
  height: 100%;
}
.searchform-input-wrap > input {
  width: 100%;
  min-height: 36px;
  margin: 0;
  color: #888;
  border: 1px solid #777;
  padding: 6px 4px;
  outline: none;
  border-radius: 1px;
}

.no-results.not-found .page-header {
  margin-bottom: 35px;
}

.has-inline-color {
  font-weight: 600;
}

.icon-divider {
  display: flex;
  margin: 25px auto 30px;
  position: relative;
  height: 1px;
  gap: 5px;
}
.icon-divider .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #d7d7d7;
  position: relative;
  top: -26px;
  border-radius: 100px;
  font-size: 16px;
  color: #b5b9bc;
}
.icon-divider .icon > svg {
  display: block;
  width: 16px;
  height: 16px;
}
.icon-divider::before, .icon-divider::after {
  display: block;
  flex: 1;
  content: "";
  height: 1px;
  background: #d7d7d7;
}

.max-title {
  text-align: center;
  margin: 25px auto 20px;
  font-weight: 400;
  letter-spacing: 1.6px;
}
.max-title h2 {
  line-height: 100px;
}
.max-title::before {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: auto;
  width: 100px;
  margin: 8px auto 20px;
  margin-left: -50px;
  margin-top: 80px;
  height: 0;
  border-bottom: 1px solid #d9d9d9;
}
.max-title::after {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  margin: 8px auto 20px;
  border-radius: 3px;
  background: #ff6c6d;
  border: none;
}
.max-title * {
  color: #3b454d;
  position: relative;
  display: inline-block;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.2px;
  text-transform: none;
  margin-top: 20px;
  margin-bottom: 45px;
  line-height: 1.3;
  font-family: "Lora", serif;
}

/* Can't be set in theme.json for whatever reason */
p {
  margin: 0;
  margin-bottom: 20px;
}

.readmore {
  display: inline-block;
  position: relative;
  font-family: "Open Sans", sans-serif;
  margin-top: 20px;
  transition: all 0.15s ease-in-out;
  border: 1px solid #c8c8c8;
  border-radius: 22px;
  padding: 6px 32px 6px 22px;
  color: #363f46;
  font-size: 12px;
  text-transform: capitalize;
  cursor: pointer;
}
.readmore .chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 14px;
  height: 14px;
}
.readmore:hover {
  color: var(--wp--preset--color--accent);
  border-color: var(--wp--preset--color--accent);
}

/*# sourceMappingURL=styles.css.map */
