/**
Main css file, use this instead of /theme-root/style.css <- reserve this file for theme metadata.
*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

hr {
  border: solid #eee;
  border-width: 1px 0 0;
  clear: both;
  margin: 1.875em 0 1.8125em;
  height: 0;
}

.legacy-button {
  border: 0;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  font-family: inherit;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 5px;
  position: relative;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  display: inline-block;
  padding-top: 0.75rem;
  padding-bottom: 0.8125em;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  font-size: 1rem;
  background-color: #bc2b2b;
  border-color: #bc2b2b;
  color: #fff;
}

.site-header {
  position: relative;
  background: var(--wp--preset--color--primary);
}
.site-header .header-wrap {
  display: grid;
  grid-template-columns: minmax(0, 350px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--wp--style--global--content-size);
  padding: 15px 10px;
  margin: 0 auto;
}
.site-header .site-branding {
  width: 100%;
}
.site-header .site-branding img {
  display: block;
  width: 100%;
}

#site-navigation {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 20px;
}
#site-navigation .subscribe-button {
  display: none;
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--on-secondary);
  border-radius: 30px;
  text-decoration: none;
  padding: 15px 25px;
}
#site-navigation .subscribe-button:hover, #site-navigation .subscribe-button:visited {
  color: var(--wp--preset--color--on-secondary);
}
@media screen and (min-width: 768px) {
  #site-navigation .subscribe-button {
    display: block;
  }
}
#site-navigation .subscribe-button:hover {
  text-decoration: underline;
}
#site-navigation .menu-toggle,
#site-navigation .search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--on-primary, #FFF);
  background: none;
  padding: 0.25em;
  cursor: pointer;
  border: none;
  border-radius: 3px;
}
#site-navigation .menu-toggle > svg,
#site-navigation .search-toggle > svg {
  display: block;
}
@media screen and (min-width: 768px) {
  #site-navigation .menu-toggle {
    display: none;
  }
}
#site-navigation .search-form {
  /* Put it on top of .main-menu-wrap */
  z-index: 1001;
}
#site-navigation .search-form .search-form-container {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 1001;
  padding: 0 15%;
  transform-origin: center center;
  transform: scale(0);
  transition: transform 300ms ease;
}
#site-navigation .search-form .search-form-container.open {
  transform: scale(1);
}
#site-navigation .search-form .search-form-container .search-input {
  border-radius: 3px;
  border: 1px solid #FFF;
  color: #252525;
  text-align: center;
  line-height: 1.5;
  font-size: 0.875rem;
  min-width: 0;
  flex: 1;
  font-family: inherit;
  box-shadow: 0 0 5px #999999;
  height: 32px;
  outline: none;
}
#site-navigation .search-form .search-form-container .close-button {
  display: flex;
  cursor: pointer;
  position: absolute;
  right: 0.75em;
  padding: 0.25em;
  z-index: 2;
  line-height: 1;
  border: none;
  background: none;
}
#site-navigation #main-menu-wrap {
  /* Mobile and desktop styles are so different that mobile first makes no sense. */
  /* MOBILE MENU */
  /* DESKTOP MENU */
}
#site-navigation #main-menu-wrap .menu-item > a {
  gap: 16px;
}
@media screen and (max-width: 767px) {
  #site-navigation #main-menu-wrap {
    position: absolute;
    left: 0;
    top: 85px;
    width: 100%;
    background: #FFF;
    transform-origin: top left;
    transform: scaleY(0);
    z-index: 1000;
    transition: transform 200ms;
  }
  #site-navigation #main-menu-wrap .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;
    color: #494c4f;
  }
  #site-navigation #main-menu-wrap .menu .menu-item > a > img {
    display: none;
  }
  #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;
  }
}
@media screen and (min-width: 768px) {
  #site-navigation #main-menu-wrap {
    position: relative;
    color: var(--wp--preset--color--on-primary, #FFF);
  }
  #site-navigation #main-menu-wrap .menu {
    display: flex;
    padding: 0;
  }
  #site-navigation #main-menu-wrap .menu .menu-item {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    line-height: normal;
    font-size: 0.8125rem;
    font-weight: 500;
  }
  #site-navigation #main-menu-wrap .menu .menu-item a {
    display: flex;
    align-items: center;
    padding: 8px;
    transition: all 350ms ease;
  }
  #site-navigation #main-menu-wrap .menu .menu-item a > img {
    display: block;
    width: 40px;
    height: auto;
  }
}
@media screen and (min-width: 960px) {
  #site-navigation #main-menu-wrap .menu .menu-item a {
    padding: 13px 20px;
    font-size: 1rem;
  }
}
#site-navigation.toggled #main-menu-wrap {
  transform: scaleY(1);
}

.home .site-title {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .home .site-title {
    font-size: 40px !important;
    line-height: 1 !important;
    width: 350px;
    margin: 0 auto;
  }
}
.home .hero-left {
  width: 100%;
}
.home .hero-right {
  width: 350px;
  margin: 0 auto;
  margin-bottom: -30px;
}
.home .round-point {
  width: 80px;
  height: 80px;
}
.home .step-text {
  max-width: 250px;
  margin: 0 auto;
}
.home .hot-image {
  display: none;
}
@media screen and (min-width: 768px) {
  .home .hero-left {
    width: 60%;
  }
  .home .hero-right {
    width: 40%;
  }
  .home .hot-image {
    display: block;
  }
}

#blog {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0;
}
#blog > .content,
#blog > .sidebar {
  padding: 0 15px;
}
#blog > .sidebar {
  padding-top: 30px;
}
#blog .blog-card {
  padding: 0 8px;
  border-top: 0;
  margin-bottom: 15px;
  width: 100%;
  float: left;
}
#blog .blog-card .content {
  border: 1px solid #eee;
}
#blog .blog-card .cover {
  display: block;
  position: relative;
}
#blog .blog-card .cover img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
#blog .blog-card .cover .post-date {
  position: absolute;
  top: 20px;
  left: -9px;
  width: 55px;
  height: 55px;
  padding-top: 11px;
  background: #ffffff;
  border: 2px solid #bc2b2b;
  font-size: 1.0625rem;
  line-height: 14px;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}
#blog .blog-card .cover .post-date .day {
  font-size: 1.0625rem;
  font-weight: bold;
}
#blog .blog-card .cover .post-date .month {
  font-size: 0.8125rem;
  text-transform: uppercase;
}
#blog .blog-card .cover .post-date .day,
#blog .blog-card .cover .post-date .month {
  display: block;
  color: #bc2b2b;
}
#blog .blog-card .info {
  padding: 15px;
}
#blog .blog-card .info .category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #999999;
}
#blog .blog-card .info .title {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}
#blog .blog-card .info .title > a {
  font-size: 0.9375rem;
  margin: 5px 0;
  color: #2d60c6;
}
#blog .blog-card .info .title:hover, #blog .blog-card .info .title:focus {
  color: #000;
}
#blog .blog-card .info .excerpt {
  font-size: 0.875rem;
  color: #444;
}
#blog .blog-card .info .h-divider {
  height: 3px;
  width: 30px;
  background-color: #000;
  opacity: 0.1;
  margin: 15px 0;
}
#blog .nav-wrap {
  float: right;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #blog {
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  }
  #blog > .content {
    border-right: 1px solid #eee;
  }
  #blog > .content,
  #blog > .sidebar {
    padding: 0 30px;
  }
  #blog .blog-card {
    width: 33%;
  }
}

.search-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0;
}
.search-results-grid .results-text {
  text-align: center;
  color: #777;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 1.2rem;
}
.search-results-grid > .content,
.search-results-grid > .sidebar {
  padding: 0 15px;
}
.search-results-grid > .sidebar {
  padding-top: 30px;
}
.search-results-grid .result-card {
  padding: 0 8px;
  border-top: 0;
  margin-bottom: 15px;
  width: 100%;
  float: left;
}
.search-results-grid .result-card .content {
  border: 1px solid #eee;
}
.search-results-grid .result-card .cover {
  display: block;
  position: relative;
}
.search-results-grid .result-card .cover img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.search-results-grid .result-card .cover .post-date {
  position: absolute;
  top: 20px;
  left: -9px;
  width: 55px;
  height: 55px;
  padding-top: 11px;
  background: #ffffff;
  border: 2px solid #bc2b2b;
  font-size: 1.0625rem;
  line-height: 14px;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}
.search-results-grid .result-card .cover .post-date .day {
  font-size: 1.0625rem;
  font-weight: bold;
}
.search-results-grid .result-card .cover .post-date .month {
  font-size: 0.8125rem;
  text-transform: uppercase;
}
.search-results-grid .result-card .cover .post-date .day,
.search-results-grid .result-card .cover .post-date .month {
  display: block;
  color: #bc2b2b;
}
.search-results-grid .result-card .info {
  padding: 15px;
}
.search-results-grid .result-card .info .category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #999999;
}
.search-results-grid .result-card .info .title {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}
.search-results-grid .result-card .info .title > a {
  font-size: 0.9375rem;
  margin: 5px 0;
  color: #2d60c6;
}
.search-results-grid .result-card .info .title:hover, .search-results-grid .result-card .info .title:focus {
  color: #000;
}
.search-results-grid .result-card .info .excerpt {
  font-size: 0.875rem;
  color: #444;
}
.search-results-grid .result-card .info .h-divider {
  height: 3px;
  width: 30px;
  background-color: #000;
  opacity: 0.1;
  margin: 15px 0;
}
.search-results-grid .nav-wrap {
  float: right;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .search-results-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  }
  .search-results-grid > .content {
    border-right: 1px solid #eee;
  }
  .search-results-grid > .content,
  .search-results-grid > .sidebar {
    padding: 0 30px;
  }
  .search-results-grid .result-card {
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  .search-results-grid .result-card {
    width: 33%;
  }
}

footer.footer {
  padding-top: 170px;
  padding-bottom: 50px;
  background-image: url("/wp-content/uploads/2025/10/contur-scaled.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFF;
  font-weight: 100;
}
footer.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
  align-items: center;
}
@media screen and (min-width: 480px) {
  footer.footer .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  }
}
footer.footer .footer-content .footer-section:first-child {
  padding: 20px;
  color: #DDD;
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  footer.footer .footer-content .footer-section:first-child {
    margin: 0;
  }
}
footer.footer .footer-content .footer-section:first-child p {
  color: #DDD;
}
footer.footer .footer-content .footer-copyright {
  padding: 0 20px;
  grid-column: 1/-1;
}
footer.footer .footer-content .footer-copyright > p {
  text-align: center;
  color: #DDD;
}
footer.footer .footer-content .footer-copyright > p > a {
  color: #2d60c6;
}
footer.footer .footer-content .footer-section {
  font-size: 0.875rem;
}
footer.footer .footer-content .footer-social {
  padding: 20px;
  line-height: 19px;
}
footer.footer .footer-content .footer-social .sign-up {
  color: #ccc;
}
footer.footer .footer-content .footer-social .sign-up a {
  color: #2d60c6;
}
footer.footer .footer-content .footer-social .social-links {
  display: flex;
  gap: 12px;
}
footer.footer .footer-content .footer-social .social-links .icon {
  width: 30px;
}
footer.footer .footer-content .footer-social .social-links .icon svg {
  display: block;
  width: 100%;
  fill: currentColor;
}
@media screen and (min-width: 768px) {
  footer.footer .footer-content .footer-section {
    padding: 30px;
  }
}
footer.footer .logo-wrap {
  margin-bottom: 20px;
}
footer.footer .logo img {
  display: block;
  width: 100%;
}
footer.footer #footer-menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 0;
  color: #F2D6D4;
}
footer.footer #footer-menu .menu-item {
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer.footer #footer-menu .menu-item a {
  display: flex;
  padding: 5px 20px;
}

:is(.single-post, .single-wwm_feature) .share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
:is(.single-post, .single-wwm_feature) .share-links .icon {
  width: 32px;
}
:is(.single-post, .single-wwm_feature) .share-links .icon a {
  color: #cccccc;
}
:is(.single-post, .single-wwm_feature) .share-links .icon svg {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
}
:is(.single-post, .single-wwm_feature) .retailers {
  clear: none;
  padding: 1em 0;
}
:is(.single-post, .single-wwm_feature) .retailers .retailer-button {
  display: inline-block;
  border: 0;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  font-family: inherit;
  font-weight: normal;
  line-height: 1;
  position: relative;
  text-decoration: none;
  text-align: center;
  transition: all 200ms ease-out;
  padding: 12px 24px;
  font-size: 1em;
  color: #fff !important;
  background: #bc2b2b;
  border-color: #bc2b2b;
  margin-bottom: 5px;
}
:is(.single-post, .single-wwm_feature) .retailers .retailer-button:hover, :is(.single-post, .single-wwm_feature) .retailers .retailer-button:focus {
  background-color: #962222;
}
:is(.single-post, .single-wwm_feature) .retailers .retailer-button:hover, :is(.single-post, .single-wwm_feature) .retailers .retailer-button:visited {
  color: #FFF;
}

#archive {
  padding: 0 10px;
}
#archive .archive-title {
  text-align: center;
  margin: 4px 0 30px;
  color: #777;
  text-transform: uppercase;
  font-size: 2rem;
}

.archive-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-template-rows: repeat(2, auto);
  align-items: start;
  margin-bottom: 30px;
}
.archive-grid .archive-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.4);
  background: #FFF;
}
.archive-grid .archive-card .cover {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
}
.archive-grid .archive-card .cover img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.archive-grid .archive-card .info {
  padding: 5px 15px 12px;
  text-align: center;
}
.archive-grid .archive-card .info .category {
  color: #999;
  font-size: 0.5625rem;
}
.archive-grid .archive-card .info .category:hover, .archive-grid .archive-card .info .category:focus, .archive-grid .archive-card .info .category:visited {
  color: #999;
}
.archive-grid .archive-card .info .title {
  font-size: 0.75rem;
  margin: 5px 0;
  color: #444;
}
.archive-grid .archive-card .info .title:hover, .archive-grid .archive-card .info .title:focus, .archive-grid .archive-card .info .title:visited {
  color: #444;
}
.archive-grid .archive-card .info .price {
  font-size: 0.9375rem;
}
.archive-grid .archive-card:hover {
  box-shadow: 2px 2px 6px 0 rgba(197, 4, 4, 0.7);
}
.archive-grid .h-divider {
  display: block;
  height: 3px;
  background-color: #000000;
  opacity: 0.1;
  width: 20px;
  margin: 3px auto;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.share-buttons .share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-decoration: none;
  width: 45px;
  height: 45px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  transition: all 250ms ease;
}
.share-buttons .share-button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent);
}
.share-buttons .share-button:hover, .share-buttons .share-button:focus {
  filter: saturate(1.5) brightness(1.2);
}
.share-buttons .share-button.facebook {
  background: #3b5998;
}
.share-buttons .share-button.twitter {
  background: #1da1f2;
}
.share-buttons .icon > svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

#landing-signup-form {
  display: flex;
  align-items: center;
  border-radius: 50px;
  max-width: 340px;
  width: 100%;
  background-color: #FFF;
  padding: 5px;
}
#landing-signup-form .email {
  display: inline-block;
  flex: 1;
  min-width: 0;
  border: none;
  margin-bottom: 0;
  width: 100%;
  background: none;
  padding: 7px;
  color: #888;
  font-family: var(--wp--preset--font-family--sofia-pro, "Arial");
  font-size: 0.875rem;
  outline: none;
}
#landing-signup-form .submit-wrap {
  position: relative;
  flex: 0;
  display: flex;
  align-items: center;
}
#landing-signup-form .submit-wrap .icon {
  display: none;
}
#landing-signup-form .submit {
  display: inline-block;
  padding: 8px;
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--on-secondary);
  font-weight: 600;
  font-size: 13px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.blog-sitepost {
  max-width: none !important;
  margin: 0 !important;
}
.blog-sitepost p {
  line-height: 150%;
}
.blog-sitepost .books,
.blog-sitepost .readers-list-info {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
}
.blog-sitepost .blog-header {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 70px;
  margin-bottom: 80px;
  background: linear-gradient(180deg, #F5E7EA 90%, #FFFFFF 100%);
}
@media screen and (min-width: 768px) {
  .blog-sitepost .blog-header {
    grid-template-columns: 60% 1fr;
  }
}
.blog-sitepost .blog-header .title {
  color: var(--wp--preset--color--secondary);
  letter-spacing: -0.04em;
  margin: 0;
  margin-bottom: 12px;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1.2;
}
.blog-sitepost .blog-header .desc {
  margin: 0;
  margin-bottom: 30px;
}
.blog-sitepost .blog-header .description {
  padding: 0 10%;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 100;
}
.blog-sitepost .blog-header .description p {
  color: #444;
}
.blog-sitepost .blog-header .readers-list a,
.blog-sitepost .blog-header .readers-list a:hover {
  color: #0056b3;
}
.blog-sitepost .blog-header .featured-image {
  padding: 10px;
}
.blog-sitepost .blog-header .featured-image > img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.blog-sitepost .readers-list-info {
  font-weight: 20px;
  margin-top: 80px;
  margin-bottom: 80px;
  color: #444;
  line-height: 1.5;
}
.blog-sitepost .readers-list-info a,
.blog-sitepost .readers-list-info a:hover {
  color: #0056b3;
}
.blog-sitepost .book {
  display: grid;
  align-items: center;
  row-gap: 20px;
  column-gap: 10px;
  padding: 0 15px;
  margin: 80px 0;
}
@media screen and (min-width: 768px) {
  .blog-sitepost .book {
    grid-template-columns: 330px 2fr;
  }
}
.blog-sitepost .book .img {
  display: block;
  width: 100%;
  max-width: 330px;
  padding: 0 30px;
}
.blog-sitepost .book .img > img {
  display: block;
  width: 100%;
  box-shadow: -6px 5px 10px 0px rgba(0, 0, 0, 0.25);
}
.blog-sitepost .book .description {
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
}
.blog-sitepost .book .genre {
  margin: 0;
  margin-bottom: 8px;
}
.blog-sitepost .book .title {
  color: #222;
  letter-spacing: 0px;
  margin: 0;
  margin-bottom: 10px;
}
.blog-sitepost .book .title > a {
  color: inherit;
}
.blog-sitepost .book .title > a:visited {
  color: inherit;
}
.blog-sitepost .book .author {
  margin: 0;
  margin-bottom: 16px;
  font-size: 1.4375rem;
  font-weight: 100;
  color: #222;
}
.blog-sitepost .book .author > a {
  color: inherit;
}
.blog-sitepost .book .author > a:visited {
  color: inherit;
}
.blog-sitepost .book .desc {
  color: #212529;
  margin: 0;
  padding: 15px 0;
  font-size: 1.125rem;
}
.blog-sitepost .book .retailers {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.blog-sitepost .book .retailers .retailer-button {
  margin: 0;
  font-size: 0.875rem;
}

.latest-featured-books {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(0, 235px) auto;
  gap: 30px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .latest-featured-books {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .latest-featured-books {
    grid-template-columns: repeat(6, 1fr);
  }
}
.latest-featured-books .book {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  text-align: center;
  row-gap: 0;
}
.latest-featured-books .book .image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.latest-featured-books .book .image img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .latest-featured-books .book .image {
    width: 100%;
  }
  .latest-featured-books .book .image img {
    max-height: 230px;
  }
}
.latest-featured-books .book .category,
.latest-featured-books .book .title {
  color: #282729;
}
.latest-featured-books .book .category {
  text-transform: uppercase;
  font-size: 0.5rem;
}
.latest-featured-books .book .title {
  font-size: 0.875rem;
}
.latest-featured-books .book .price {
  font-size: 14px;
  margin-top: 10px;
}
.latest-featured-books .book .details {
  margin-top: 15px;
}

.latest-blog-entries {
  display: grid;
  gap: 20px;
}
.latest-blog-entries .blog-entry {
  height: 100%;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  outline: none;
  height: 380px;
}
.latest-blog-entries .blog-entry.main .title {
  font-size: 1.5rem;
}
.latest-blog-entries .blog-entry.entry-1 .img::after {
  background: linear-gradient(180deg, #FF5959 0%, #2E0063 100%);
}
.latest-blog-entries .blog-entry.entry-2 .img::after {
  background: linear-gradient(180deg, rgba(203, 203, 203, 0) 0%, #f2295b 100%);
}
.latest-blog-entries .blog-entry.entry-4 .img::after {
  background: linear-gradient(180deg, rgba(126, 126, 126, 0) 0%, #8A8A8A 100%);
  opacity: 0.16;
}
.latest-blog-entries .blog-entry.entry-4 .img > img {
  transform-origin: center center;
  transform: scale(1.4);
}
.latest-blog-entries .blog-entry .img {
  width: 100%;
  height: 100%;
}
.latest-blog-entries .blog-entry .img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.latest-blog-entries .blog-entry .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  opacity: 0.5;
}
.latest-blog-entries .blog-entry .blog-meta {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: calc(100% - 20px);
  padding: 20px 20px 10px;
  z-index: 2;
  font-weight: 400;
  color: #FFF;
}
.latest-blog-entries .blog-entry .date {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.75rem;
}
.latest-blog-entries .blog-entry .title {
  color: #FFF;
  line-height: 1.2em;
  font-size: 0.9375rem;
  margin: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .latest-blog-entries {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .latest-blog-entries .blog-entry .blog-meta {
    width: 90%;
  }
  .latest-blog-entries .main {
    min-height: 560px;
    grid-row: 1/span 2;
  }
  .latest-blog-entries .blog-entry {
    height: auto;
  }
}
@media screen and (min-width: 960px) {
  .latest-blog-entries .blog-entry.main .blog-meta {
    width: 45%;
  }
}

.featured-book {
  padding: 0 20px;
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  color: #777;
  row-gap: 30px;
}
.featured-book p {
  line-height: 1.5;
  color: #444444;
}
.featured-book .description-panel {
  font-size: 1.4375rem;
  margin-bottom: 1.25em;
}
.featured-book .description-panel .heading {
  display: inline-block;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  border-top: 4px solid #333;
  font-size: 0.75rem;
  padding: 10px 0;
  margin-bottom: 10px;
}
.featured-book .description-panel .description {
  margin: 15px 0;
}
.featured-book .book-title {
  color: #555;
  font-size: 1.625rem;
  text-rendering: optimizeLegibility;
  margin-top: 0.2em;
  margin-bottom: 0.5em;
  line-height: 1.2125em;
}
.featured-book .author a,
.featured-book .author a:visited,
.featured-book .details a,
.featured-book .details a:visited {
  color: #2d60c6;
  text-decoration: none;
}
.featured-book .author a:hover,
.featured-book .author a:focus,
.featured-book .details a:hover,
.featured-book .details a:focus {
  color: #000;
  text-decoration: none;
}
.featured-book .author {
  font-size: 1.4375rem;
}
.featured-book .details .info {
  line-height: 150%;
  text-transform: capitalize;
}
.featured-book .left,
.featured-book .right {
  padding: 0 15px;
  width: 100%;
}
.featured-book .v-divider {
  display: block;
  height: 3px;
  background-color: #000000;
  opacity: 0.1;
  margin: 15px 0;
  width: 30px;
}
.featured-book .cover {
  position: relative;
  width: 100%;
}
.featured-book .cover img {
  width: 100%;
  height: auto;
}
.featured-book .price {
  font-size: 120%;
  color: #000000;
  font-weight: bold;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .featured-book {
    grid-template-columns: 1fr 2fr;
  }
  .featured-book .description-panel {
    grid-column: span 2;
  }
}

.wwm-genres {
  color: #000;
  --muted: #000;
  border: 1px dotted var(--border);
  padding: 0;
}
.wwm-genres .grid--head {
  background: #eeeeee;
  align-items: stretch;
}
.wwm-genres .grid--head .column:not(.genre) {
  border-left: 1px dotted var(--border);
}
.wwm-genres .grid--head h3, .wwm-genres .grid--head h6 {
  line-height: 16px;
  margin-top: 3px;
  margin-bottom: 8px;
}
.wwm-genres .grid--head h3 {
  margin: 0;
  font-size: 1rem;
}
.wwm-genres .grid--head h6 {
  font-size: 0.75rem;
  color: #555;
}
.wwm-genres .grid {
  align-items: stretch;
  grid-template-columns: minmax(400px, 1fr) repeat(3, minmax(0, 170px));
}
@media screen and (max-width: 780px) {
  .wwm-genres .grid {
    grid-template-columns: 1fr;
  }
}
.wwm-genres .cell {
  font-size: 1rem;
  line-height: 1.125rem;
  padding: 8px;
  border-left: 1px dotted var(--border);
}
.wwm-genres .cell.genre-name {
  color: #000;
}
@media screen and (min-width: 780px) {
  .wwm-genres .cell.genre-name {
    border: none;
  }
}
.wwm-genres .cell .price {
  color: #222;
}
.wwm-genres .cell a {
  color: #2d60c6;
  grid-column: 2;
}
.wwm-genres .cell a:hover, .wwm-genres .cell a:focus {
  color: #000;
}

#sailthru-signup-form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 15px;
}
#sailthru-signup-form .email-wrap,
#sailthru-signup-form .inputs-wrap {
  width: 100%;
}
#sailthru-signup-form span.ttl {
  font-size: 1rem;
  font-weight: 700;
}
#sailthru-signup-form input[type=email],
#sailthru-signup-form .mt-3 > input {
  display: block;
  min-width: 210px;
  width: 100%;
  max-width: 250px;
  min-height: 36px;
  padding: 7px;
  color: #444;
  border: 1px solid #c1dfed;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 50px;
  outline: 0;
  margin: 0;
  margin-top: 10px;
  font-style: italic;
  font-size: 0.875rem;
}
#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]:placeholder-shown,
#sailthru-signup-form .mt-3 > input:placeholder-shown {
  font-style: italic;
}
#sailthru-signup-form input[type=email]::placeholder,
#sailthru-signup-form .mt-3 > input::placeholder {
  color: #444;
}
#sailthru-signup-form .question-wrapper {
  margin: 0;
  margin-top: 20px;
  font-weight: 400;
}
#sailthru-signup-form .options-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 20px 0;
  gap: 10px 20px;
}
@media screen and (min-width: 768px) {
  #sailthru-signup-form .options-list {
    max-height: 400px;
  }
}
#sailthru-signup-form .option-wrapper {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 15px 0;
}
#sailthru-signup-form .option-wrapper .option-check-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
#sailthru-signup-form .option-wrapper .option-label {
  order: 2;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 2px 0;
}
#sailthru-signup-form .option-wrapper .option-check {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #FFF;
}
#sailthru-signup-form .option-wrapper .option-check > svg {
  position: relative;
  top: -1px;
  left: -2px;
  width: 100%;
  height: 100%;
  color: #FFF;
}
#sailthru-signup-form .option-wrapper.activated .option-check {
  background: var(--wp--preset--color--secondary);
}
#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: 0px 40px 0 25px;
}
#sailthru-signup-form .button {
  border: none;
  outline: none;
  display: block;
  margin: 0 auto;
  color: #FFF;
  border-radius: 30px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.28s ease;
  background: #D53644;
}
#sailthru-signup-form .button:hover, #sailthru-signup-form .button:focus {
  background: var(--wp--preset--color--secondary);
}

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

body.page,
body.single,
body.error404 {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

p {
  color: #444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #555;
}

/* https://make.wordpress.org/core/2021/06/29/on-layout-and-content-width-in-wordpress-5-8/ */
.entry-content > * {
  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;
}

.non-rl-blog-wrap {
  font-family: Sofia, Sans-serif;
}
.non-rl-blog-wrap p {
  line-height: 150%;
  font-size: 23px;
  color: #444444;
}
.non-rl-blog-wrap a:not(.legacy-button) {
  color: #2d60c6;
}
.non-rl-blog-wrap h2 {
  font-size: 1.5rem;
}
.non-rl-blog-wrap h1,
.non-rl-blog-wrap h2,
.non-rl-blog-wrap h3,
.non-rl-blog-wrap h4,
.non-rl-blog-wrap h5 {
  color: #222;
}

.thank-you-hero::after {
  content: "";
  position: absolute;
  transform: rotate(180deg);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='%23FFF' opacity='0.33' d='M473,67.3c-203.9,88.3-263.1-34-320.3,0C66,119.1,0,59.7,0,59.7V0h1000v59.7 c0,0-62.1,26.1-94.9,29.3c-32.8,3.3-62.8-12.3-75.8-22.1C806,49.6,745.3,8.7,694.9,4.7S492.4,59,473,67.3z'%3E%3C/path%3E%3Cpath fill='%23FFF' opacity='0.66' d='M734,67.3c-45.5,0-77.2-23.2-129.1-39.1c-28.6-8.7-150.3-10.1-254,39.1 s-91.7-34.4-149.2,0C115.7,118.3,0,39.8,0,39.8V0h1000v36.5c0,0-28.2-18.5-92.1-18.5C810.2,18.1,775.7,67.3,734,67.3z'%3E%3C/path%3E%3Cpath fill='%23FFF' d='M766.1,28.9c-200-57.5-266,65.5-395.1,19.5C242,1.8,242,5.4,184.8,20.6C128,35.8,132.3,44.9,89.9,52.5C28.6,63.7,0,0,0,0 h1000c0,0-9.9,40.9-83.6,48.1S829.6,47,766.1,28.9z'%3E%3C/path%3E%3C/svg%3E");
}

.thank-you-grid {
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .thank-you-grid {
    grid-template-columns: 240px 1fr !important;
  }
}
.thank-you-grid figure {
  width: 100px !important;
  height: 100px !important;
}

.wwm-button {
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--on-secondary);
  border-radius: 30px;
  text-decoration: none;
  padding: 15px 25px;
  border: none;
  cursor: pointer;
}
.wwm-button:hover, .wwm-button:visited {
  color: var(--wp--preset--color--on-secondary);
}
.wwm-button:hover {
  text-decoration: underline;
}

.landing-join-button > a:hover, .landing-join-button > a:focus {
  text-decoration: underline;
}

.widget-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  background-color: #000000;
  opacity: 0.1;
  margin: 15px 0 15px;
}

.sidebar-search {
  /* WTF wordpress? */
  position: relative;
}
.sidebar-search input {
  display: block;
  background-color: #fff;
  font-family: inherit;
  border-radius: 0;
  border: 1px solid #cccccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  font-size: 0.875em;
  margin: 0;
  padding: 0.5em;
  height: 2.3125em;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
}
.sidebar-search button {
  padding: 0;
  border-radius: 0;
  background: #d1544b;
  border: none;
  margin-left: 2px;
  width: 50px;
}

.sidebar .wp-block-categories-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 13px;
  font-weight: 100;
}
.sidebar .wp-block-categories-list a {
  display: inline-block;
  color: #2d60c6;
  padding-bottom: 5px;
}
.sidebar .wp-block-categories-list a:hover {
  color: #000;
}

.item-fixed-width {
  flex-shrink: 0;
}

.navigation.pagination {
  text-align: center;
  padding: 20px 10px 30px;
  border-top: 1px solid #EEE;
}
.navigation.pagination .nav-links .page-numbers {
  display: inline-block;
  padding: 6px 12px;
  border: 2px solid #bc2b2b;
  color: #bc2b2b;
  font-size: 0.75rem;
  transition: all 350ms ease;
}
.navigation.pagination .nav-links .page-numbers:hover, .navigation.pagination .nav-links .page-numbers:focus, .navigation.pagination .nav-links .page-numbers.current, .navigation.pagination .nav-links .page-numbers.dots {
  background: #bc2b2b;
  color: #FFF;
}
.navigation.pagination .nav-links .page-numbers:hover, .navigation.pagination .nav-links .page-numbers:focus {
  text-decoration: none;
}

.navigation.posts-navigation {
  padding: 0;
  border: none;
}
.navigation.posts-navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navigation.posts-navigation .nav-links .nav-previous > a,
.navigation.posts-navigation .nav-links .nav-next > a {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 2px solid #bc2b2b;
  color: #bc2b2b;
  transition: all 350ms ease;
}
.navigation.posts-navigation .nav-links .nav-previous > a:hover, .navigation.posts-navigation .nav-links .nav-previous > a:focus,
.navigation.posts-navigation .nav-links .nav-next > a:hover,
.navigation.posts-navigation .nav-links .nav-next > a:focus {
  background: #bc2b2b;
  color: #FFF;
  text-decoration: none;
}

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