*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #444;
  z-index: 0;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
.header-banner {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-size: cover;
  opacity: 0.15;
}
.header-banner img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.pagination-wrapper .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 20px auto 60px auto;
  height: 128px;
}
.pagination-wrapper .pagination a {
  height: 64px;
  width: 64px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 32px 16px 32px;
  color: white;
}
.pagination-wrapper .pagination a.arrow {
  position: relative;
  top: 8px;
}
.pagination-wrapper .pagination a.arrow:hover {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
}
.pagination-wrapper .pagination a.page-counter {
  transition: all .3s;
  background-color: #f45145;
  border: 2px solid #f45145;
  border-radius: 50%;
  font-weight: bold;
  margin: 0 16px;
}
.pagination-wrapper .pagination a.page-counter:hover,
.pagination-wrapper .pagination a.page-counter.page-current {
  color: #f45145;
  background-color: white;
  box-shadow: 2px 2px 20px #aaa;
}
.empty {
  display: none !important;
}
.empty-page {
  min-height: 80vh;
}
.error-page h1 {
  text-align: center;
  margin: 20px auto;
}
a {
  text-decoration: none;
  color: #f45145;
}
a:hover {
  transition: color .3s;
}
p {
  font-size: 18px;
  line-height: 24px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}
.error-404,
.error-502 {
  text-align: center;
}
.error-404 h1,
.error-502 h1,
.error-404 h2,
.error-502 h2 {
  font-size: 96px;
  font-family: 'Poppins', sans-serif;
  color: #f45145;
}
.error-404 h2,
.error-502 h2 {
  font-size: 48px;
  text-transform: uppercase;
}
p.error-page-hint {
  font-size: 24px;
  text-align: center;
}
.img-wrapper,
.posts .popular-wrapper .popular-posts .popular-post .img-wrapper,
.single > .posts > .post .featured-image-wrapper .img-wrapper,
.inline-posts .post .featured-image-wrapper .img-wrapper,
.posts .recent-posts .post .featured-image-wrapper .img-wrapper,
.posts .latest-post .post .featured-image-wrapper .img-wrapper {
  position: relative;
}
.img-wrapper .pin-btn,
.posts .popular-wrapper .popular-posts .popular-post .img-wrapper .pin-btn,
.single > .posts > .post .featured-image-wrapper .img-wrapper .pin-btn,
.inline-posts .post .featured-image-wrapper .img-wrapper .pin-btn,
.posts .recent-posts .post .featured-image-wrapper .img-wrapper .pin-btn,
.posts .latest-post .post .featured-image-wrapper .img-wrapper .pin-btn {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 5px;
  cursor: pointer;
}
.img-wrapper .pin-btn img,
.posts .popular-wrapper .popular-posts .popular-post .img-wrapper .pin-btn img,
.single > .posts > .post .featured-image-wrapper .img-wrapper .pin-btn img,
.inline-posts .post .featured-image-wrapper .img-wrapper .pin-btn img,
.posts .recent-posts .post .featured-image-wrapper .img-wrapper .pin-btn img,
.posts .latest-post .post .featured-image-wrapper .img-wrapper .pin-btn img,
.img-wrapper .pin-btn img.featured,
.posts .popular-wrapper .popular-posts .popular-post .img-wrapper .pin-btn img.featured,
.single > .posts > .post .featured-image-wrapper .img-wrapper .pin-btn img.featured,
.inline-posts .post .featured-image-wrapper .img-wrapper .pin-btn img.featured,
.posts .recent-posts .post .featured-image-wrapper .img-wrapper .pin-btn img.featured,
.posts .latest-post .post .featured-image-wrapper .img-wrapper .pin-btn img.featured {
  opacity: 0.75;
  min-width: 50px;
  min-height: 50px;
  width: 50px;
  height: 50px;
  object-fit: initial;
  object-position: initial;
  border-radius: 50%;
}
.img-wrapper .pin-btn:hover img,
.posts .popular-wrapper .popular-posts .popular-post .img-wrapper .pin-btn:hover img,
.single > .posts > .post .featured-image-wrapper .img-wrapper .pin-btn:hover img,
.inline-posts .post .featured-image-wrapper .img-wrapper .pin-btn:hover img,
.posts .recent-posts .post .featured-image-wrapper .img-wrapper .pin-btn:hover img,
.posts .latest-post .post .featured-image-wrapper .img-wrapper .pin-btn:hover img {
  opacity: 1;
}
.single > .posts > .post .post-content .content .img-wrapper {
  margin: auto;
  max-width: min(100%, 1200px);
}
.posts .post {
  overflow: initial;
  transition: box-shadow 0.3s;
}
.posts .post .thumbs {
  margin: 10px auto;
  height: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.posts .post .thumbs a {
  display: block;
  height: 200px;
  object-fit: cover;
}
.posts .post .thumbs a img {
  object-fit: cover;
  height: 200px;
  width: 100%;
}
.posts .latest-post,
.posts .recent-posts {
  max-width: min(100%, 1200px);
  margin: auto;
}
.posts .recent-posts .post .post-content {
  padding: 0px 0px 40px 0px;
}
.posts .latest-post {
  margin-bottom: 5vh;
}
.posts .latest-post .post {
  box-shadow: 0px 0px 10px #e0e0e0;
  min-height: 600px;
}
.posts .latest-post .post .featured-image-wrapper {
  height: 600px;
  overflow: hidden;
}
.posts .latest-post .post .featured-image-wrapper img {
  min-height: 600px;
  max-height: 600px;
  object-fit: cover;
  object-position: center 65%;
  width: 100vw;
}
.posts .latest-post .post .post-content {
  padding: 0px 20px 40px 20px;
}
.posts .latest-post .post h2 {
  font-size: 36px;
}
.posts .latest-post .post p {
  font-size: 20px;
  line-height: 28px;
}
.posts .latest-post .post .thumbs a {
  width: 24%;
  width: 24.5%;
}
.posts .latest-post .post .thumbs a:last-child {
  position: relative;
  background-color: black;
}
.posts .latest-post .post .thumbs a:last-child img {
  opacity: 15%;
}
.posts .latest-post .post .thumbs a:last-child::after {
  content: '+ de photos';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 90%;
  height: 90%;
  color: white;
  font-size: 32px;
  font-weight: bold;
}
.posts .popular-wrapper {
  max-width: min(100%, 1200px);
  margin: auto;
  content-visibility: auto;
  contain-intrinsic-size: auto 350px;
}
.posts .popular-wrapper .popular-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.posts .popular-wrapper .popular-posts .popular-post {
  transition: transform 0.3s, box-shadow 0.3s;
  width: 250px;
  height: 270px;
  padding: 10px;
  margin: 10px;
  background-color: white;
  overflow: hidden;
}
.posts .popular-wrapper .popular-posts .popular-post img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.posts .popular-wrapper .popular-posts .popular-post h3 {
  text-align: center;
  color: #f45145;
  margin: 10px 5px 5px 5px;
}
.posts .popular-wrapper .popular-posts .popular-post:hover {
  transform: rotate(4deg) scale(1.3);
  box-shadow: 4px 4px 16px #e0e0e0;
}
.recent-posts,
.inline-posts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.recent-posts .post,
.inline-posts .post {
  flex-basis: 50%;
  max-width: 580px;
  margin: 20px;
  min-height: 400px;
}
.recent-posts .post .featured-image-wrapper,
.inline-posts .post .featured-image-wrapper {
  height: 400px;
  overflow: hidden;
}
.recent-posts .post .featured-image-wrapper img,
.inline-posts .post .featured-image-wrapper img {
  min-height: 400px;
  max-height: 400px;
  object-fit: cover;
  object-position: center 65%;
  width: 100vw;
}
.recent-posts .post .thumbs a,
.inline-posts .post .thumbs a {
  width: 49%;
}
.recent-posts .post .post-footer .sharing img,
.inline-posts .post .post-footer .sharing img {
  width: 40px;
  height: 40px;
}
.recent-posts .post .post-footer .read-more,
.inline-posts .post .post-footer .read-more {
  font-size: 16px;
  line-height: 22px;
}
.recent-posts .post:first-child,
.inline-posts .post:first-child {
  margin-left: 0;
}
.recent-posts .post:last-child,
.inline-posts .post:last-child {
  margin-right: 0;
}
.inline-posts .inline-post {
  flex-basis: 50%;
  margin-left: auto;
  margin-right: auto;
}
.inline-posts .inline-post .post h2 {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inline-posts .post {
  min-height: 400px;
  max-width: 580px;
  margin: 20px 10px;
}
.inline-posts .post:first-child {
  margin-left: 10px;
}
.inline-posts .post .featured-image-wrapper {
  position: relative;
  height: 400px;
}
.inline-posts .post .featured-image-wrapper a {
  display: grid;
}
.inline-posts .post .featured-image-wrapper img {
  transition: transform .3s;
  min-height: 400px;
  max-height: 400px;
  width: 100%;
}
.inline-posts .post .featured-image-wrapper:hover img.featured {
  transform: scale(1.1);
}
.inline-posts .post .featured-image-wrapper:hover h2 {
  opacity: 1;
}
.inline-posts .post h2 {
  position: relative;
  padding: 20px 5px;
  font-size: 18px;
}
.inner-content {
  max-width: min(100%, 1200px);
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}
.inner-content h3 {
  text-align: center;
  margin: 40px 10px 0px 10px;
  padding: 5px;
  color: white;
  background-color: #f45145;
  font-variant: small-caps;
  box-shadow: 5px 15px 0px -5px #e0e0e0;
}
.banner {
  margin: 40px auto 40px auto;
  padding: 40px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}
.banner.no-bg {
  background-color: transparent;
  padding: 0;
}
.banner:last-child {
  margin-bottom: 0;
}
.banner h2 {
  text-align: center;
  color: #f45145;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.social-networks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  content-visibility: auto;
  contain-intrinsic-size: auto 200px;
}
.social-networks > div,
.social-networks > a {
  display: flex;
  flex-direction: column;
  height: 200px;
  flex: 1;
  cursor: pointer;
  transition: transform .3s;
}
.social-networks > div > .social-data,
.social-networks > a > .social-data {
  display: flex;
  flex: 6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.social-networks > div > .social-data h3,
.social-networks > a > .social-data h3 {
  font-size: 24px;
}
.social-networks > div:hover,
.social-networks > a:hover {
  transform: scale(0.9);
}
.social-networks .pinterest {
  background-color: #bd081c;
}
.social-networks .flipboard {
  background-color: #e12828;
}
.social-networks .facebook {
  background-color: #3b5999;
}
.social-networks .twitter {
  background-color: #55acee;
}
.social-networks .instagram {
  background-color: #e4405f;
}
.social-networks .bloglovin {
  background-color: #000;
}
.surprise-me {
  background: white;
  font-size: 24px;
}
.ad-wrapper {
  width: 100%;
  max-width: min(100%, 1200px);
  margin: 20px auto;
}
.ad-wrapper.taboola {
  padding: 5px;
  background-color: white;
}
.ad-wrapper .ads-custom,
.ad-wrapper .ad-placeholder.adp-auto {
  min-width: 250px;
  max-width: min(100%, 1200px);
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 280px;
}
.ad-wrapper.adsense-rspv,
.ad-wrapper.adsense-mcrspv {
  min-height: 320px;
}
.ad-wrapper .ad-placeholder {
  display: flex;
  align-items: center;
  flex-direction: row;
  background-color: #ffffdd;
}
.ad-wrapper .ad-placeholder .adp-img-wrapper {
  z-index: 1;
}
.ad-wrapper .ad-placeholder .adp-img-wrapper img {
  background-color: #dadce0;
}
.ad-wrapper .ad-placeholder .adp-content-wrapper {
  padding: 10px;
}
.ad-wrapper .ad-placeholder .adp-content-wrapper h2 {
  color: #f45145;
  text-align: center;
}
.ad-wrapper .ad-placeholder.adp-auto .adp-img-wrapper {
  flex: 2;
}
.ad-wrapper .ad-placeholder.adp-auto .adp-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 280px;
}
.ad-wrapper .ad-placeholder.adp-auto .adp-content-wrapper {
  flex: 8;
  padding: 10px;
}
.ad-wrapper .ad-placeholder.adp-auto .adp-content-wrapper h2 {
  margin-bottom: 10px;
}
.ad-wrapper .ad-placeholder.adp-fluid .adp-img-wrapper {
  flex: 4;
}
.ad-wrapper .ad-placeholder.adp-fluid .adp-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 80vh;
}
.ad-wrapper .ad-placeholder.adp-fluid .adp-content-wrapper {
  flex: 6;
  padding: 10px;
}
.ad-wrapper .ad-placeholder.adp-fluid .adp-content-wrapper h2 {
  margin-bottom: 10px;
}
.ad-wrapper .ad-placeholder.adp-relaxed {
  flex-wrap: wrap;
  position: relative;
  padding: 10px;
}
.ad-wrapper .ad-placeholder.adp-relaxed .adp-img-wrapper {
  flex: auto;
  width: 25%;
}
.ad-wrapper .ad-placeholder.adp-relaxed .adp-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  border: 1px solid black;
}
.ad-wrapper .ad-placeholder.adp-relaxed .adp-content-wrapper {
  position: absolute;
  z-index: 1;
  width: 60%;
  max-height: 140px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffdd;
  margin: auto;
  padding: 10px;
  border: 2px solid #f45145;
}
.ad-wrapper .ad-placeholder.adp-relaxed .adp-content-wrapper h2 {
  margin-bottom: 10px;
}
.ad-wrapper.left-sided,
.ad-wrapper.right-sided {
  position: fixed;
  width: auto;
  top: 50px;
}
.ad-wrapper.left-sided.left-sided,
.ad-wrapper.right-sided.left-sided {
  left: 20px;
}
.ad-wrapper.left-sided.right-sided,
.ad-wrapper.right-sided.right-sided {
  right: 20px;
}
.ad-wrapper.left-sided .ad-placeholder,
.ad-wrapper.right-sided .ad-placeholder {
  width: 200px;
}
.ad-wrapper.left-sided .ad-placeholder.adp-relaxed,
.ad-wrapper.right-sided .ad-placeholder.adp-relaxed {
  padding: 0px;
}
.ad-wrapper.left-sided .ad-placeholder.adp-relaxed .adp-img-wrapper,
.ad-wrapper.right-sided .ad-placeholder.adp-relaxed .adp-img-wrapper {
  width: 100%;
}
.ad-wrapper.left-sided .ad-placeholder.adp-relaxed .adp-content-wrapper,
.ad-wrapper.right-sided .ad-placeholder.adp-relaxed .adp-content-wrapper {
  position: absolute;
  z-index: 1;
  width: 80%;
  max-height: max-content;
  top: 40px;
  left: 0;
  right: 0;
}
.ad-wrapper .adsbygoogle,
.ad-wrapper amp-ad {
  background-color: #f0f0f0;
  min-height: 250px;
  display: block;
  width: 100%;
}
.ad-wrapper.taboola .ad-placeholder {
  background-color: #ddddff;
}
.ad-wrapper.taboola .ad-placeholder.adp-relaxed .adp-content-wrapper {
  background-color: #ddddff;
  border-color: #bbbbff;
}
.ez-sidebar-wall {
  z-index: 2;
}
@media (max-width: 1680px) {
  .ad-wrapper.left-sided,
  .ad-wrapper.right-sided {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .ad-wrapper.left-sided .ad-placeholder,
  .ad-wrapper.right-sided .ad-placeholder {
    max-width: 200px;
  }
  .ad-wrapper.left-sided .ad-placeholder.adp-relaxed,
  .ad-wrapper.right-sided .ad-placeholder.adp-relaxed {
    padding: 10px;
  }
  .ad-wrapper.left-sided .ad-placeholder.adp-relaxed .adp-content-wrapper,
  .ad-wrapper.right-sided .ad-placeholder.adp-relaxed .adp-content-wrapper {
    position: absolute;
    z-index: 1;
    width: 80%;
    max-height: max-content;
    top: 40px;
    left: 0;
    right: 0;
  }
}
@media (max-width: 400px) {
  .ad-wrapper .ads-custom,
  .ad-wrapper .ad-placeholder.adp-auto {
    min-width: 250px;
    max-width: min(100%, 400px);
    width: 100%;
    height: 100%;
    min-height: 90vw;
    max-height: 90vw;
  }
  .ad-wrapper .ad-placeholder.adp-relaxed .adp-content-wrapper {
    max-height: 100px;
    padding: 5px;
  }
  .ad-wrapper .ad-placeholder.adp-relaxed .adp-content-wrapper h2 {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .ad-wrapper .ad-placeholder.adp-relaxed .adp-content-wrapper p {
    margin: 5px auto;
    font-size: 14px;
    line-height: 18px;
  }
}
.btn {
  background-color: #f45145;
  border: 2px solid #f45145;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
}
.btn.btn-action,
.btn a.btn.btn-action {
  transition: all .3s;
  background-color: white;
  color: #f45145;
  box-shadow: 1px 1px 8px #bbb;
}
.btn.btn-action:hover,
.btn a.btn.btn-action:hover {
  background-color: white;
  box-shadow: 2px 2px 20px #aaa;
}
#comments {
  margin-bottom: 65px;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}
.comment-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.4;
  animation: toast-slide-in 0.4s ease-out;
}
.comment-toast .comment-toast-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.comment-toast .comment-toast-text {
  flex: 1;
}
.comment-toast .comment-toast-close {
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  opacity: 0.7;
  flex-shrink: 0;
}
.comment-toast .comment-toast-close:hover {
  opacity: 1;
}
.comment-toast.comment-toast-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.comment-toast.comment-toast-error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}
@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.comments #more-comments {
  display: none;
}
.comments #more-comments.show {
  display: block;
}
.comments .comment-anchor {
  visibility: hidden;
  position: relative;
  top: -100px;
}
.comments h3 {
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
}
.comments .new-comment-create {
  border-radius: 10px;
  background: #242d36;
  color: white;
  padding: 10px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  display: block;
  width: 300px;
  margin: 0px auto 20px auto;
  text-align: center;
}
.comments .show-all-comments-btn {
  border-radius: 10px;
  background: #242d36;
  color: white;
  padding: 10px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  display: block;
  width: 300px;
  margin: 0px auto 20px auto;
  text-align: center;
}
.comments .new-comment-reply {
  cursor: pointer;
  text-align: right;
  margin-top: 5px;
  margin-bottom: 30px;
}
.comments .new-comment-inputs {
  margin-top: 10px;
  margin-bottom: 40px;
  padding: 0 10px;
}
.comments .new-comment-inputs.show-new-comment {
  display: block;
}
.comments .new-comment-inputs .new-comment-fields {
  display: flex;
  flex-direction: row;
}
.comments .new-comment-inputs .new-comment-fields .new-comment-main {
  width: 50%;
}
.comments .new-comment-inputs .new-comment-fields .new-comment-main .new-comment-content {
  resize: none;
  width: 85%;
  height: 88px;
  border: 2px solid #f45145;
  border-radius: 10px;
  padding: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}
.comments .new-comment-inputs .new-comment-fields .new-comment-extra {
  width: 50%;
}
.comments .new-comment-inputs .new-comment-fields .new-comment-extra input {
  border: 2px solid #f45145;
  font-size: 16px;
  width: 85%;
  max-width: 500px;
  height: 16px;
  border-radius: 10px;
  padding: 5px;
  margin: 2px auto;
}
.comments .new-comment-inputs .new-comment-publish {
  margin-top: 10px;
}
.comments .new-comment-inputs .new-comment-publish .new-comment-submit {
  border-radius: 10px;
  background: #f45145;
  color: white;
  display: block;
  padding: 10px 20px;
  border: 0;
  cursor: pointer;
  margin: auto;
  font-size: 16px;
}
.comments .comment {
  margin: 5px auto 25px 0;
}
.comments .comment .inner-comment-container {
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 5px;
  max-width: 85%;
}
.comments .comment .inner-comment-container .inner-comment {
  border-radius: 10px;
  padding: 10px;
}
.comments .comment .inner-comment-container .inner-comment .comment-header {
  border-bottom: 1px solid #f45145;
  margin-bottom: 10px;
}
.comments .comment .inner-comment-container .inner-comment .comment-header .comment-author {
  font-weight: bold;
  padding-right: 10px;
  display: inline-block;
}
.comments .comment.is-reply {
  margin: 5px 0 20px auto;
}
.comments .comment.is-reply .inner-comment-container {
  margin-left: 10%;
  margin-right: 5px;
}
.comments .comment.is-reply .inner-comment-container .inner-comment {
  background: #f0f0f0;
}
.comments .comment .inner-comment-container.redactor .inner-comment {
  color: white;
  background: #f45145;
}
.comments .comment .inner-comment-container.redactor .inner-comment .comment-header {
  border-color: white;
}
form.contact-me-form {
  max-width: 100%;
  margin: auto;
  display: block;
}
form.contact-me-form div.contact-me-fields {
  display: flex;
  flex-direction: column;
}
form.contact-me-form div.contact-me-fields label {
  font-weight: bold;
  color: #f45145;
}
form.contact-me-form div.contact-me-fields input,
form.contact-me-form div.contact-me-fields textarea {
  border: 2px solid transparent;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  background-color: #f8f8f8;
  width: 100%;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 18px;
  padding: 4px 8px;
}
form.contact-me-form div.contact-me-fields input:hover,
form.contact-me-form div.contact-me-fields textarea:hover {
  border: 2px solid #676c78;
}
form.contact-me-form div.contact-me-fields input:active,
form.contact-me-form div.contact-me-fields textarea:active {
  border: 2px solid #f45145;
}
form.contact-me-form div.contact-me-fields input {
  height: 32px;
}
form.contact-me-form div.contact-me-fields textarea {
  height: 80px;
}
form.contact-me-form div.contact-me-publish {
  margin-top: 32px;
}
footer {
  position: relative;
  z-index: 1;
  min-height: 300px;
  background-color: #242d36;
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}
footer .footer-content {
  margin: auto;
  max-width: min(100%, 1200px);
  padding: 20px;
  display: flex;
}
footer .footer-content > div {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  padding: 0 20px;
}
footer .footer-content > div h3 {
  color: white;
  border-bottom: 2px solid white;
  margin-bottom: 10px;
}
footer .footer-content > div span {
  display: block;
  padding: 5px;
}
footer .footer-content > div span a {
  text-transform: capitalize;
  text-decoration: none;
  color: white;
  border-bottom: 2px solid transparent;
}
footer .footer-content > div span a:hover {
  border-bottom: 2px solid white;
}
form.base {
  display: flex;
  flex-direction: row;
  align-items: center;
}
form.base label {
  padding-right: 8px;
}
form.base input:not([type="submit"]),
form.base textarea {
  border: 2px solid transparent;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  background-color: #f8f8f8;
  width: 100%;
  font-size: 16px;
  line-height: 18px;
  padding: 4px 8px;
}
form.base input:not([type="submit"]):hover,
form.base textarea:hover {
  border: 2px solid #676c78;
}
form.base input:not([type="submit"]):active,
form.base textarea:active {
  border: 2px solid #f45145;
}
form.base input:not([type="submit"]) {
  height: 32px;
}
form.base input.btn {
  padding: 3px 12px;
  font-size: 16px;
}
form.base textarea {
  height: 80px;
}
form.base.search input:not([type="submit"]) {
  width: 15vw;
  min-width: 200px;
}
form.base.search .btn {
  font-weight: normal;
}
.search-wrapper {
  display: flex;
  justify-content: center;
}
header {
  position: relative;
  height: 50px;
}
header .nav-background {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: #242d36;
  width: 100vw;
  height: 60px;
  opacity: 0.85;
}
header .nav-wrapper {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60px;
  display: flex;
  justify-content: center;
}
header .nav-wrapper nav {
  position: relative;
  width: 100vw;
  max-width: min(100%, 1200px);
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
}
header .nav-wrapper nav a,
header .nav-wrapper nav span {
  font-size: 18px;
}
header .nav-wrapper nav a {
  text-decoration: none;
  color: white;
  text-transform: capitalize;
}
header .nav-wrapper nav span.header-ctas {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  margin-right: 0;
}
header .nav-wrapper nav span.header-ctas a.google-news-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f1ab13;
  border: 2px solid #f1ab13;
  color: white;
  padding: 3px 12px;
  font-weight: normal;
  text-transform: none;
  margin-left: 0;
  margin-right: 0;
  white-space: nowrap;
}
header .nav-wrapper nav span.header-ctas a.google-news-link svg {
  flex-shrink: 0;
  border-radius: 2px;
}
header .nav-wrapper nav span.header-ctas a.google-news-link:hover {
  transition: all .3s;
  border-color: #c58b0c;
  background: #c58b0c;
  border-radius: 10px;
}
header .nav-wrapper nav > a:first-child {
  font-weight: bold;
  font-size: 24px;
}
header .nav-wrapper nav > a:first-child:hover {
  position: relative;
  top: 1px;
  border-bottom: 2px solid white;
}
header .nav-cats-btn {
  background: #f45145;
  border: 2px solid #f45145;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: normal;
  cursor: pointer;
  padding: 6px 12px 6px 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.2s;
}
header .nav-cats-btn:hover {
  background: #f23628;
  border-color: #f23628;
  border-radius: 10px;
}
header .nav-cats-btn .nav-cats-arrow {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  transition: transform 0.2s;
  line-height: 1;
}
header .nav-cats-btn.active {
  background: #f23628;
  border-color: #f23628;
  border-radius: 10px;
}
header .nav-cats-btn.active .nav-cats-arrow {
  transform: rotate(180deg);
}
header .megamenu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  z-index: 2;
  background-color: #242d36;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
header .megamenu.megamenu--open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
header .megamenu .megamenu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 24px;
}
header .megamenu .megamenu-search {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
header .megamenu .megamenu-search input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: white;
  padding: 8px 14px;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  outline: none;
  min-width: 0;
}
header .megamenu .megamenu-search input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
header .megamenu .megamenu-search input:focus {
  border-color: rgba(255, 255, 255, 0.45);
}
header .megamenu .megamenu-search button {
  background: #f45145;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 0 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
header .megamenu .megamenu-search button:hover {
  background: #f23628;
}
header .megamenu .megamenu-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
header .megamenu .megamenu-actions a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 7px 18px;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.15s;
  line-height: 1;
}
header .megamenu .megamenu-actions .megamenu-action-shop {
  background: #f45145;
  color: white;
  border: 2px solid #f45145;
}
header .megamenu .megamenu-actions .megamenu-action-shop:hover {
  background: #f23628;
  border-color: #f23628;
}
header .megamenu .megamenu-actions .megamenu-action-about {
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-transform: none;
}
header .megamenu .megamenu-actions .megamenu-action-about:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
header .megamenu .megamenu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}
header .megamenu .megamenu-cat {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: capitalize;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
header .megamenu .megamenu-cat:hover {
  background: #f45145;
  border-color: #f45145;
  color: white;
}
header .nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
header .nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.25s;
}
header .sidenav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: #242d36;
  z-index: 11;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}
header .sidenav.sidenav--open {
  transform: translateX(0);
}
header .sidenav .sidenav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
header .sidenav .sidenav-header a {
  color: white;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 20px;
}
header .sidenav .sidenav-header .sidenav-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
}
header .sidenav .sidenav-header .sidenav-close:hover {
  color: white;
}
header .sidenav .sidenav-search {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
header .sidenav .sidenav-search input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: white;
  padding: 8px 10px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  outline: none;
}
header .sidenav .sidenav-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
header .sidenav .sidenav-search input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}
header .sidenav .sidenav-search button {
  background: #f45145;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 0 12px;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
header .sidenav .sidenav-search button:hover {
  background: #f23628;
}
header .sidenav .sidenav-actions {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
header .sidenav .sidenav-actions a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  text-align: center;
  padding: 8px 10px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  text-decoration: none;
  line-height: 1;
  transition: all 0.15s;
}
header .sidenav .sidenav-actions .sidenav-action-shop {
  background: #f45145;
  color: white;
}
header .sidenav .sidenav-actions .sidenav-action-shop:hover {
  background: #f23628;
}
header .sidenav .sidenav-actions .sidenav-action-about {
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-transform: none;
}
header .sidenav .sidenav-actions .sidenav-action-about:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
header .sidenav .sidenav-cats {
  display: flex;
  flex-direction: column;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .sidenav .sidenav-cats a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 9px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  text-transform: capitalize;
  transition: background 0.12s, color 0.12s;
}
header .sidenav .sidenav-cats a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white;
}
header .sidenav .sidenav-ctas {
  display: flex;
  flex-direction: column;
  padding: 6px 0;
}
header .sidenav .sidenav-ctas a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 9px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  transition: background 0.12s, color 0.12s;
}
header .sidenav .sidenav-ctas a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white;
}
header .sidenav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
header .sidenav-overlay.sidenav-overlay--open {
  opacity: 1;
  pointer-events: auto;
}
.page-view {
  position: relative;
  z-index: 1;
  min-height: 70vh;
  max-width: min(100%, 1200px);
  margin: auto;
}
.page-view .page {
  position: relative;
  min-height: 300px;
  margin: 20px auto 60px auto;
  padding: 20px;
  background-color: white;
  border-bottom: 8px solid #f45145;
  box-shadow: 0px 0px 5px #e0e0e0;
}
.page-view .page h1 {
  color: #f45145;
  text-align: center;
  font-size: 32px;
  line-height: 36px;
  margin: 10px auto 20px auto;
}
.page-view .comments {
  margin: 20px auto;
}
.post {
  border-bottom: 8px solid #f45145;
  margin: 10px auto;
  background: white;
  position: relative;
  z-index: 1;
}
.post h1.post-title,
.post h1.page-title {
  text-align: center;
  color: #242d36;
  border-top: 8px solid #f45145;
  padding: 20px 0;
  margin-top: 0;
  display: block;
}
.post h1.page-title {
  font-size: 24px;
  background-color: transparent;
  border-top: 0;
  font-variant: normal;
  box-shadow: none;
  text-align: center;
}
.post h2 {
  transition: opacity .3s;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: white;
  background-color: #242d36;
  margin: 0;
  padding: 5px;
  text-align: center;
}
.post .post-content h2,
.post .content h2 {
  transition: opacity .3s;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #f45145;
  background-color: transparent;
  margin: 40px 0 20px 0;
  padding: 5px 40px 5px 0;
  text-align: left;
  border-bottom: 4px solid #f45145;
  display: inline-block;
}
.post .content h5 {
  color: #f45145;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  margin: 20px 0 10px 0;
}
.post .featured-image-wrapper {
  position: relative;
}
.post .featured-image-wrapper img.featured {
  transition: transform .3s;
  width: 100%;
  min-height: 400px;
  max-height: 400px;
}
.post .featured-image-wrapper h2 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
}
.post .featured-image-wrapper:hover img.featured {
  transform: scale(1.1);
}
.post .featured-image-wrapper:hover h2 {
  opacity: .25;
}
.post .thumbs {
  min-heigh: 200px;
  content-visibility: auto;
  contain-intrinsic-size: auto 200px;
}
.post .post-content {
  padding: 0px 20px 80px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
.post .post-content .meta {
  position: relative;
  text-align: left;
  margin: 10px auto;
  color: #242d36;
}
.post .post-content .meta .more-info {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 14px;
  color: white;
  background: #f45145;
  border-radius: 20px;
  border: 1px solid #f45145;
  padding: 2px 10px;
  cursor: pointer;
}
.post .post-content .meta .published-date {
  color: #676c78;
  margin-bottom: 5px;
  font-size: 18px;
}
.post .post-content .meta .published-date time {
  font-weight: bold;
}
.post .post-content .meta .categories {
  font-size: 14px;
  margin-bottom: 2px;
}
.post .post-content .meta .categories a {
  color: #f45145;
  display: inline-block;
  margin-right: 5px;
  text-decoration: underline;
}
.post .post-content .meta .categories a:last-child {
  margin-right: 0;
}
.post .post-content .meta .categories a:hover {
  color: #f23628;
}
.post p {
  font-size: 18px;
  line-height: 24px;
}
.post p.excerpt {
  margin: 20pt auto;
}
.post .tags {
  margin-top: 7px;
}
.post .tags a {
  transition: color .3s;
  font-size: 14px;
  display: inline-block;
  color: white;
  background-color: #f45145;
  border: 1px solid #f45145;
  padding: 5px 10px;
  border-radius: 15px;
  margin-right: 10px;
  margin-bottom: 2px;
}
.post .tags a:last-child {
  margin-right: 0;
}
.post .tags a:hover {
  color: #f45145;
  background-color: white;
  text-decoration: none;
}
.post .post-footer {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.post .post-footer .sharing img {
  width: 48px;
  height: 48px;
  margin-right: 16px;
  cursor: pointer;
  transition: transform .3s;
}
.post .post-footer .sharing img:hover {
  transform: translate(0px, -6px);
}
.post .post-footer .read-more {
  text-align: left;
  z-index: 1;
  font-weight: bold;
  text-transform: uppercase;
  transition: transform .3s;
  font-size: 18px;
  line-height: 26px;
}
.post .post-footer .read-more > a {
  color: black;
}
.post .post-footer .read-more > a:hover {
  color: #f45145;
}
.article-credits {
  margin: 2rem 0 1rem;
  padding: 1rem 1.4rem;
  background: #f8f8f8;
  border-left: 3px solid #f45145;
  font-size: .88rem;
}
.article-credits-title {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #676c78;
  margin: 0 0 .75rem;
}
.article-credits-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: .25rem .9rem;
  align-items: baseline;
}
.article-credits-list dt {
  color: #676c78;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.article-credits-list dt::after {
  content: ' :';
}
.article-credits-list dd {
  margin: 0;
  color: #242d36;
}
.article-credits-list dd a {
  color: #242d36;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #f45145;
}
.article-credits-list dd a:hover {
  color: #f45145;
}
.author-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.author-stat-card {
  flex: 1 1 140px;
  background: #f8f8f8;
  border: 1px solid #e0ddd9;
  border-top: 3px solid #f45145;
  padding: .9rem 1.2rem;
  text-align: center;
}
.author-stat-card .stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #242d36;
  line-height: 1.2;
}
.author-stat-card .stat-label {
  display: block;
  font-size: .72rem;
  color: #676c78;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .25rem;
}
.author-methodology {
  border-left: 3px solid #f45145;
  padding: 1rem 1.4rem;
  margin: 1.5rem 0;
  background: #f8f8f8;
  font-style: italic;
  color: #676c78;
  line-height: 1.75;
}
.press-links {
  list-style: none;
  padding: 0;
  margin: .8rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.press-links li a {
  display: inline-block;
  padding: .3rem .85rem;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: .85rem;
  color: #676c78;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.press-links li a:hover {
  border-color: #f45145;
  color: #242d36;
}
.author-social-links {
  list-style: none;
  padding: 0;
  margin: .8rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.author-social-links li a {
  display: inline-block;
  padding: .3rem .85rem;
  border: 1px solid #f45145;
  border-radius: 20px;
  font-size: .85rem;
  color: #f45145;
  text-decoration: none;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.author-social-links li a:hover {
  background: #f45145;
  color: white;
}
.author-signature {
  font-size: .85rem;
  color: #676c78;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e0ddd9;
}
.single {
  margin-top: 10px;
}
.single > .posts > .post {
  max-width: min(100%, 1200px);
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 10px #e0e0e0;
  min-height: 600px;
}
.single > .posts > .post .featured-image-wrapper {
  position: relative;
}
.single > .posts > .post .featured-image-wrapper img,
.single > .posts > .post .featured-image-wrapper img.featured {
  min-height: 600px;
  max-height: 600px;
  object-fit: cover;
  transition: none;
  display: block;
}
.single > .posts > .post .featured-image-wrapper h2 {
  position: relative;
  padding: 20px 5px;
}
.single > .posts > .post .featured-image-wrapper:hover img.featured {
  transform: none;
}
.single > .posts > .post .featured-image-wrapper:hover h2 {
  opacity: 1;
}
.single > .posts > .post h2 {
  font-size: 24px;
}
.single > .posts > .post .post-content .content,
.single > .posts > .post .post-content .content p {
  font-size: 20px;
  line-height: 28px;
}
.single > .posts > .post .post-content .content img {
  width: 100%;
  max-width: min(100%, 1200px);
  max-height: 80vh;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}
.single > .posts > .post .post-content .content h2 {
  margin-top: 20px;
}
.single > .posts > .post .post-content .content h3,
.single > .posts > .post .post-content .content h4 {
  margin-top: 40px;
  padding: 5px;
  color: white;
  background-color: #f45145;
  font-variant: small-caps;
  box-shadow: 5px 15px 0px -5px #e0e0e0;
}
.single > .posts > .post .post-content .content h3:has(a.shopify),
.single > .posts > .post .post-content .content h4:has(a.shopify) {
  margin: 0;
  padding: 0;
  box-shadow: none;
  background-color: white;
}
.single > .posts > .post .post-content .content a {
  text-decoration: underline;
}
.single > .posts > .post .post-content .content a.pin-btn {
  text-decoration: none;
}
.single > .posts > .post .post-content .content a.pin-btn img {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  max-width: none;
  max-height: none;
  object-fit: initial;
  display: inline;
  border-radius: 50%;
  opacity: 0.75;
}
.single > .posts > .post .post-content .content a.pin-btn:hover img {
  opacity: 1;
}
.single > .posts > .post .post-content .content video {
  max-height: 80vh;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  display: block;
  margin: auto;
}
.single > .posts > .post .post-content .content a.shopify {
  text-decoration: none;
  display: inline-block;
  width: 24%;
  max-height: 200px;
  margin-right: 1%;
  padding-bottom: 10px;
  border-bottom: 6px solid transparent;
}
.single > .posts > .post .post-content .content a.shopify:hover {
  border-bottom: 6px solid #f45145;
  box-shadow: 5px 15px 0px -5px #e0e0e0;
}
.single > .posts > .post .post-content .content a.shopify img {
  transition: transform .3s;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: contain;
}
.single > .posts > .post .post-content .content a.shopify img:hover {
  transform: scale(1.1);
}
/* Article excerpt / chapô */
.post-excerpt {
  max-width: min(100%, 1200px);
  margin: 15px 20px 20px 20px;
  padding: 16px 20px;
  background-color: #f8f8f8;
  border-left: 3px solid #f45145;
  font-size: 17px;
  line-height: 26px;
  color: #676c78;
  font-style: italic;
}
.post-excerpt p {
  margin: 0;
}
/* Visible breadcrumb (Sprint 2 – Discover recovery) */
.post-breadcrumb {
  background: #f8f8f8;
  border-left: 4px solid #f45145;
  padding: 12px 20px;
  margin: 0;
  font-size: 13px;
  color: #676c78;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.post-breadcrumb a {
  color: #f45145;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.post-breadcrumb a:hover {
  color: #f23628;
  text-decoration: underline;
}
.post-breadcrumb span[aria-hidden] {
  margin: 0 8px;
  color: #676c78;
  font-size: 11px;
  vertical-align: middle;
}
/* Article publication date below H1 — pill inspirée du bouton .more-info */
.post-date {
  display: block;
  text-align: center;
  margin: -4px auto 20px;
  background: #f8f8f8;
  border-radius: 20px;
  padding: 4px 18px;
  font-size: 13px;
  color: #676c78;
  font-style: italic;
  width: fit-content;
}
/* Author bio card */
.author-box {
  max-width: min(100%, 1200px);
  margin: 40px auto;
  background-color: #fff;
  border-left: 4px solid #f45145;
  box-shadow: 0px 0px 10px #e0e0e0;
}
.author-box .author-box-inner {
  padding: 30px 35px;
}
.author-box .author-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-variant: small-caps;
  letter-spacing: 1px;
  color: #676c78;
  margin: 0 0 4px 0;
}
.author-box .author-name {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #242d36;
  margin: 0 0 12px 0;
}
.author-box .author-bio {
  font-size: 16px;
  line-height: 24px;
  color: #676c78;
  margin: 0 0 12px 0;
}
.author-box .author-more {
  margin: 0;
}
.author-box .author-more a {
  font-size: 14px;
  color: #f45145;
  text-decoration: none;
  font-weight: 600;
}
.author-box .author-more a:hover {
  text-decoration: underline;
}
.single > .posts > .post.page,
.lp > .posts.page {
  min-height: auto;
}
.simple-static-page-layout {
  max-width: min(100%, 1200px);
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 10px #e0e0e0;
  min-height: 600px;
  padding: 0px 20px 80px 20px;
  margin-bottom: 20px;
}
.cta-block {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
@media (max-width: 1200px) {
  .recent-posts,
  .inline-posts {
    flex-direction: column;
  }
  .recent-posts .post,
  .inline-posts .post {
    flex-basis: 100%;
    width: 900px;
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
  }
  .recent-posts .post:first-child,
  .inline-posts .post:first-child {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
  }
  .recent-posts .post:last-child,
  .inline-posts .post:last-child {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
  }
  .posts .popular-wrapper .popular-posts .popular-post {
    width: min(350px, 80vw);
    height: 370px;
  }
  .posts .popular-wrapper .popular-posts .popular-post img {
    height: 300px;
  }
  footer .footer-content {
    flex-direction: column;
  }
  footer .footer-content > div {
    padding: 0 5px 20px 5px;
  }
}
@media (max-width: 900px) {
  .error-404 h1,
  .error-502 h1 {
    font-size: 72px;
  }
  .error-404 h2,
  .error-502 h2 {
    font-size: 32px;
  }
  p.error-page-hint {
    font-size: 18px;
  }
  .banner {
    min-height: 150px;
    margin: 30px auto 30px auto;
    padding: 30px 0;
  }
  .recent-posts .post,
  .inline-posts .post {
    flex-basis: 100%;
    max-width: 80vw;
  }
  .single > .posts .post .featured-image-wrapper,
  .posts .post .featured-image-wrapper,
  .posts .latest-post .post .featured-image-wrapper,
  .single > .posts > .post .featured-image-wrapper,
  .posts > .post .featured-image-wrapper,
  .posts .latest-post > .post .featured-image-wrapper {
    height: 400px;
  }
  .single > .posts .post .featured-image-wrapper a img,
  .posts .post .featured-image-wrapper a img,
  .posts .latest-post .post .featured-image-wrapper a img,
  .single > .posts > .post .featured-image-wrapper a img,
  .posts > .post .featured-image-wrapper a img,
  .posts .latest-post > .post .featured-image-wrapper a img,
  .single > .posts .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .posts .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .posts .latest-post .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .single > .posts > .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .posts > .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .posts .latest-post > .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .single > .posts .post .featured-image-wrapper a img.featured,
  .posts .post .featured-image-wrapper a img.featured,
  .posts .latest-post .post .featured-image-wrapper a img.featured,
  .single > .posts > .post .featured-image-wrapper a img.featured,
  .posts > .post .featured-image-wrapper a img.featured,
  .posts .latest-post > .post .featured-image-wrapper a img.featured,
  .single > .posts .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .posts .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .posts .latest-post .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .single > .posts > .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .posts > .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .posts .latest-post > .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured {
    min-height: 400px;
    max-height: 400px;
  }
  .single > .posts .post h2,
  .posts .post h2,
  .posts .latest-post .post h2,
  .single > .posts > .post h2,
  .posts > .post h2,
  .posts .latest-post > .post h2 {
    font-size: 18px;
  }
  .single > .posts .post .thumbs,
  .posts .post .thumbs,
  .posts .latest-post .post .thumbs,
  .single > .posts > .post .thumbs,
  .posts > .post .thumbs,
  .posts .latest-post > .post .thumbs {
    margin: 10px auto;
    height: 300px;
  }
  .single > .posts .post .thumbs a,
  .posts .post .thumbs a,
  .posts .latest-post .post .thumbs a,
  .single > .posts > .post .thumbs a,
  .posts > .post .thumbs a,
  .posts .latest-post > .post .thumbs a {
    width: 49%;
    height: 300px;
  }
  .single > .posts .post .thumbs a img,
  .posts .post .thumbs a img,
  .posts .latest-post .post .thumbs a img,
  .single > .posts > .post .thumbs a img,
  .posts > .post .thumbs a img,
  .posts .latest-post > .post .thumbs a img {
    height: 300px;
  }
  .single > .posts .post .thumbs a:nth-of-type(n+3),
  .posts .post .thumbs a:nth-of-type(n+3),
  .posts .latest-post .post .thumbs a:nth-of-type(n+3),
  .single > .posts > .post .thumbs a:nth-of-type(n+3),
  .posts > .post .thumbs a:nth-of-type(n+3),
  .posts .latest-post > .post .thumbs a:nth-of-type(n+3) {
    display: none;
  }
  .single > .posts .post .post-content,
  .posts .post .post-content,
  .posts .latest-post .post .post-content,
  .single > .posts > .post .post-content,
  .posts > .post .post-content,
  .posts .latest-post > .post .post-content {
    padding-bottom: 80px;
  }
  .posts .popular-wrapper .popular-posts .popular-post {
    width: min(250px, 80vw);
    height: 270px;
  }
  .posts .popular-wrapper .popular-posts .popular-post img {
    height: 200px;
  }
  .pagination-wrapper .pagination a.page-counter {
    display: none;
  }
  .pagination-wrapper .pagination a.page-counter.page-current {
    display: flex;
  }
  .inner-content h3 {
    margin: 0;
  }
  .inner-content .comments h3 {
    margin-bottom: 20px;
  }
  .social-networks > div,
  .social-networks > a {
    height: 100px;
    width: 100px;
    padding: 20px;
  }
  .social-networks > div > .social-data h3,
  .social-networks > a > .social-data h3 {
    font-size: 20px;
  }
  .author-box {
    margin: 30px 20px;
  }
}
@media (max-width: 600px) {
  header .nav-wrapper nav {
    position: relative;
    justify-content: flex-end;
  }
  header .nav-wrapper nav a,
  header .nav-wrapper nav span {
    margin-right: 0px;
  }
  header .nav-wrapper nav > a:first-child {
    font-size: 22px;
    position: absolute;
    left: 8px;
    top: 18px;
    z-index: 1;
  }
  header .nav-wrapper nav > a:first-child:hover {
    position: absolute;
    top: 18px;
  }
  header .nav-wrapper nav .nav-cats-btn {
    display: none;
  }
  header .nav-wrapper nav span.header-ctas {
    margin-left: auto;
    gap: 4px;
  }
  header .nav-wrapper nav span.header-ctas a.google-news-link {
    padding: 4px 8px;
    font-size: 14px;
  }
  header .nav-wrapper nav span.header-ctas a.google-news-link .google-suffix {
    display: none;
  }
  header .nav-wrapper nav span.header-ctas .nav-hamburger {
    display: flex;
  }
  .banner {
    min-height: 100px;
    margin: 20px auto 20px auto;
    padding: 20px 0;
  }
  .ad-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .recent-posts .post,
  .inline-posts .post {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
  .simple-static-page-layout {
    padding: 0px 10px 40px 10px;
  }
  .page-view .page {
    padding: 10px;
  }
  .posts .recent-posts .post .post-content {
    padding: 0px 5px 40px 5px;
  }
  .inline-posts .inline-post h3 {
    margin: 0;
  }
  .inline-posts .post {
    margin-bottom: 40px;
  }
  .single > .posts .post:last-child,
  .posts .post:last-child,
  .posts .latest-post .post:last-child,
  .single > .posts > .post:last-child,
  .posts > .post:last-child,
  .posts .latest-post > .post:last-child {
    margin-bottom: 40px;
  }
  .single > .posts .post .featured-image-wrapper a img,
  .posts .post .featured-image-wrapper a img,
  .posts .latest-post .post .featured-image-wrapper a img,
  .single > .posts > .post .featured-image-wrapper a img,
  .posts > .post .featured-image-wrapper a img,
  .posts .latest-post > .post .featured-image-wrapper a img,
  .single > .posts .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .posts .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .posts .latest-post .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .single > .posts > .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .posts > .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .posts .latest-post > .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .single > .posts .post .featured-image-wrapper a img.featured,
  .posts .post .featured-image-wrapper a img.featured,
  .posts .latest-post .post .featured-image-wrapper a img.featured,
  .single > .posts > .post .featured-image-wrapper a img.featured,
  .posts > .post .featured-image-wrapper a img.featured,
  .posts .latest-post > .post .featured-image-wrapper a img.featured,
  .single > .posts .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .posts .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .posts .latest-post .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .single > .posts > .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .posts > .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .posts .latest-post > .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured {
    object-position: center 100%;
  }
  .single > .posts .post .featured-image-wrapper h2,
  .posts .post .featured-image-wrapper h2,
  .posts .latest-post .post .featured-image-wrapper h2,
  .single > .posts > .post .featured-image-wrapper h2,
  .posts > .post .featured-image-wrapper h2,
  .posts .latest-post > .post .featured-image-wrapper h2 {
    font-size: 18px;
  }
  .single > .posts .post .thumbs,
  .posts .post .thumbs,
  .posts .latest-post .post .thumbs,
  .single > .posts > .post .thumbs,
  .posts > .post .thumbs,
  .posts .latest-post > .post .thumbs {
    margin: 2px auto;
    height: 200px;
  }
  .single > .posts .post .thumbs a,
  .posts .post .thumbs a,
  .posts .latest-post .post .thumbs a,
  .single > .posts > .post .thumbs a,
  .posts > .post .thumbs a,
  .posts .latest-post > .post .thumbs a {
    width: 50%;
    height: 200px;
  }
  .single > .posts .post .thumbs a img,
  .posts .post .thumbs a img,
  .posts .latest-post .post .thumbs a img,
  .single > .posts > .post .thumbs a img,
  .posts > .post .thumbs a img,
  .posts .latest-post > .post .thumbs a img {
    height: 200px;
  }
  .single > .posts .post .post-content,
  .posts .post .post-content,
  .posts .latest-post .post .post-content,
  .single > .posts > .post .post-content,
  .posts > .post .post-content,
  .posts .latest-post > .post .post-content {
    padding: 0px 5px 60px 5px;
  }
  .single > .posts .post .post-content .content a.shopify,
  .posts .post .post-content .content a.shopify,
  .posts .latest-post .post .post-content .content a.shopify,
  .single > .posts > .post .post-content .content a.shopify,
  .posts > .post .post-content .content a.shopify,
  .posts .latest-post > .post .post-content .content a.shopify {
    width: 48%;
    margin-bottom: 10px;
  }
  .single > .posts .post .post-footer .sharing a img,
  .posts .post .post-footer .sharing a img,
  .posts .latest-post .post .post-footer .sharing a img,
  .single > .posts > .post .post-footer .sharing a img,
  .posts > .post .post-footer .sharing a img,
  .posts .latest-post > .post .post-footer .sharing a img {
    width: 38px;
    height: 38px;
    margin-right: 8px;
  }
  .single > .posts .post .post-footer .read-more,
  .posts .post .post-footer .read-more,
  .posts .latest-post .post .post-footer .read-more,
  .single > .posts > .post .post-footer .read-more,
  .posts > .post .post-footer .read-more,
  .posts .latest-post > .post .post-footer .read-more {
    font-size: 16px;
    line-height: 22px;
  }
  .social-networks > div,
  .social-networks > a {
    height: 50px;
  }
  .social-networks > div > .social-data h3,
  .social-networks > a > .social-data h3 {
    font-size: 16px;
  }
  .author-box {
    margin: 20px 10px;
  }
  .author-box .author-box-inner {
    padding: 20px;
  }
  .author-box .author-name {
    font-size: 18px;
  }
  .author-box .author-bio {
    font-size: 15px;
    line-height: 22px;
  }
  .post-excerpt {
    margin: 15px 10px 15px 10px;
    padding: 12px 15px;
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 400px) {
  .error-404 h1,
  .error-502 h1 {
    font-size: 64px;
  }
  .error-404 h2,
  .error-502 h2 {
    font-size: 24px;
  }
  p.error-page-hint {
    font-size: 18px;
  }
  .inline-posts {
    min-height: 250px;
  }
  .inline-posts .post {
    min-height: 250px;
  }
  .inline-posts .post .featured-image-wrapper {
    height: 250px;
  }
  .inline-posts .post .featured-image-wrapper a img,
  .inline-posts .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .inline-posts .post .featured-image-wrapper a img.featured,
  .inline-posts .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured {
    min-height: 250px;
    max-height: 250px;
    object-position: center 100%;
  }
  .inline-posts .post:last-child {
    margin-bottom: 20px;
  }
  .single > .posts .post .post-content .meta {
    min-height: 20px;
  }
  .single > .posts .post .featured-image-wrapper,
  .posts .post .featured-image-wrapper,
  .posts .latest-post .post .featured-image-wrapper,
  .single > .posts > .post .featured-image-wrapper,
  .posts > .post .featured-image-wrapper,
  .posts .latest-post > .post .featured-image-wrapper {
    height: 250px;
  }
  .single > .posts .post .featured-image-wrapper a img,
  .posts .post .featured-image-wrapper a img,
  .posts .latest-post .post .featured-image-wrapper a img,
  .single > .posts > .post .featured-image-wrapper a img,
  .posts > .post .featured-image-wrapper a img,
  .posts .latest-post > .post .featured-image-wrapper a img,
  .single > .posts .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .posts .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .posts .latest-post .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .single > .posts > .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .posts > .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .posts .latest-post > .post .featured-image-wrapper a > div.wfa-iia-wrap img,
  .single > .posts .post .featured-image-wrapper a img.featured,
  .posts .post .featured-image-wrapper a img.featured,
  .posts .latest-post .post .featured-image-wrapper a img.featured,
  .single > .posts > .post .featured-image-wrapper a img.featured,
  .posts > .post .featured-image-wrapper a img.featured,
  .posts .latest-post > .post .featured-image-wrapper a img.featured,
  .single > .posts .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .posts .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .posts .latest-post .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .single > .posts > .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .posts > .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured,
  .posts .latest-post > .post .featured-image-wrapper a > div.wfa-iia-wrap img.featured {
    min-height: 250px;
    max-height: 250px;
    object-position: center 100%;
  }
  .single > .posts .post .thumbs,
  .posts .post .thumbs,
  .posts .latest-post .post .thumbs,
  .single > .posts > .post .thumbs,
  .posts > .post .thumbs,
  .posts .latest-post > .post .thumbs {
    height: 150px;
  }
  .single > .posts .post .thumbs a,
  .posts .post .thumbs a,
  .posts .latest-post .post .thumbs a,
  .single > .posts > .post .thumbs a,
  .posts > .post .thumbs a,
  .posts .latest-post > .post .thumbs a {
    height: 150px;
  }
  .single > .posts .post .thumbs a img,
  .posts .post .thumbs a img,
  .posts .latest-post .post .thumbs a img,
  .single > .posts > .post .thumbs a img,
  .posts > .post .thumbs a img,
  .posts .latest-post > .post .thumbs a img {
    height: 150px;
  }
  .single > .posts .post .post-content,
  .posts .post .post-content,
  .posts .latest-post .post .post-content,
  .single > .posts > .post .post-content,
  .posts > .post .post-content,
  .posts .latest-post > .post .post-content {
    padding: 0px 5px 40px 5px;
  }
  .single > .posts .post .post-content .meta .more-info,
  .posts .post .post-content .meta .more-info,
  .posts .latest-post .post .post-content .meta .more-info,
  .single > .posts > .post .post-content .meta .more-info,
  .posts > .post .post-content .meta .more-info,
  .posts .latest-post > .post .post-content .meta .more-info {
    position: absolute;
    top: -4px;
    display: inline-block;
    text-align: right;
  }
  .single > .posts .post .post-content .meta .published-date,
  .posts .post .post-content .meta .published-date,
  .posts .latest-post .post .post-content .meta .published-date,
  .single > .posts > .post .post-content .meta .published-date,
  .posts > .post .post-content .meta .published-date,
  .posts .latest-post > .post .post-content .meta .published-date {
    font-size: 16px;
  }
  .single > .posts .post .post-content .content p,
  .posts .post .post-content .content p,
  .posts .latest-post .post .post-content .content p,
  .single > .posts > .post .post-content .content p,
  .posts > .post .post-content .content p,
  .posts .latest-post > .post .post-content .content p {
    font-size: 18px;
    line-height: 24px;
  }
  .single > .posts .post .post-content .content a.shopify,
  .posts .post .post-content .content a.shopify,
  .posts .latest-post .post .post-content .content a.shopify,
  .single > .posts > .post .post-content .content a.shopify,
  .posts > .post .post-content .content a.shopify,
  .posts .latest-post > .post .post-content .content a.shopify {
    height: 200px;
    width: 49%;
  }
  .single > .posts .post p,
  .posts .post p,
  .posts .latest-post .post p,
  .single > .posts > .post p,
  .posts > .post p,
  .posts .latest-post > .post p {
    font-size: 18px;
    line-height: 24px;
  }
  .single > .posts .post .post-footer .sharing a img,
  .posts .post .post-footer .sharing a img,
  .posts .latest-post .post .post-footer .sharing a img,
  .single > .posts > .post .post-footer .sharing a img,
  .posts > .post .post-footer .sharing a img,
  .posts .latest-post > .post .post-footer .sharing a img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
  .single > .posts .post .post-footer .read-more,
  .posts .post .post-footer .read-more,
  .posts .latest-post .post .post-footer .read-more,
  .single > .posts > .post .post-footer .read-more,
  .posts > .post .post-footer .read-more,
  .posts .latest-post > .post .post-footer .read-more {
    font-size: 14px;
    line-height: 20px;
  }
  .banner {
    margin: 20px auto 0px auto;
    padding: 5px;
  }
  .popular-wrapper h2 {
    margin-bottom: 10px;
  }
  .popular-wrapper .popular-posts .popular-post {
    width: min(200px, 80vw);
    height: auto;
  }
  .popular-wrapper .popular-posts .popular-post img {
    height: 150px;
  }
  .simple-static-page-layout {
    padding: 0px 5px 20px 5px;
    min-height: auto;
  }
  .page-view .page {
    padding: 5px;
    margin: 10px auto 30px auto;
  }
  .social-footer h2,
  .pagination-wrapper h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .pagination-wrapper .pagination {
    margin: 20px;
    height: auto;
  }
  .pagination-wrapper .pagination a.page-counter,
  .pagination-wrapper .pagination a.page-counter.page-current {
    display: none;
  }
}

