/*
Theme Name: Watoto Merch
Theme URI: https://watotochurch.com
Author: Watoto Church
Author URI: https://watotochurch.com
Description: Official merchandise theme for Watoto Church. A WooCommerce-ready theme with a sidebar navigation layout and modern product showcase.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: watoto
Tags: e-commerce, custom-menu, featured-images, theme-options
*/

:root {
  --text-color: #666666;
  --black: #000000;
  --white: #ffffff;
  --grey-border: #DDDDDD;
  --dark-grey: #909090;
}

body {
  background-color: var(--white);
  overflow-x: hidden !important;
  margin: 0;
}

@media only screen and (min-width: 1080px) {
  body {
    display: flex;
    flex-direction: row;
  }
}

a,
span,
p,
div,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "League Spartan", sans-serif;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600;
}

/* ===================== HEADER ===================== */

header#header {
  padding: 1em 0.75em;
  border-bottom: 1px solid var(--grey-border);
  position: relative;
}

@media only screen and (min-width: 1080px) {
  header#header {
    border-bottom: unset;
    border-right: 1px solid var(--grey-border);
    width: 300px;
    height: 100dvh;
    overflow: hidden;
    padding: 70px 35px;
    position: fixed;
    box-sizing: border-box;
  }
}

@media only screen and (min-width: 1200px) {
  header#header {
    width: 340px;
  }
}

/* Mobile header */

header div.header-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (min-width: 1080px) {
  header div.header-mobile {
    display: none;
  }
}

header div.header-mobile a.navbar-brand {
  display: block;
  position: relative;
}

header div.header-mobile a.navbar-brand img {
  height: 50px;
}

header div.header-mobile div.search {
  position: relative;
}

header div.header-mobile div.search i {
  position: absolute;
  top: 12px;
  left: 18px;
}

header div.header-mobile div.search input[type=text] {
  background: #f4f4f4;
  border: none;
  border-radius: 30px;
  padding: 0 20px 0 50px;
  height: 40px;
  width: 60dvw;
}

header div.header-mobile div.search input[type=text]::placeholder {
  color: var(--dark-grey);
}

/* Mobile menu toggle */

header div.header-mobile nav #menuToggle {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

header div.header-mobile nav #menuToggle input {
  display: flex;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  top: -12px;
  left: -9px;
}

header div.header-mobile nav #menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -3px);
  background: #36383F;
}

header div.header-mobile nav #menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

header div.header-mobile nav #menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

header div.header-mobile nav #menuToggle input:checked ~ #menu {
  display: block;
  transform: translateY(0);
}

header div.header-mobile nav #menuToggle span {
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: var(--black);
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
              background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
              opacity 0.55s ease;
}

header div.header-mobile nav #menuToggle span:first-child {
  transform-origin: 0% 0%;
}

header div.header-mobile nav #menuToggle span:nth-child(2) {
  transform-origin: 0% 100%;
}

header div.header-mobile nav #menuToggle #menu {
  display: none;
  position: absolute;
  width: 250px;
  height: 100dvh;
  box-shadow: 0 0 10px #b0b0b0;
  margin: -50px 0 0 -50px;
  padding: 125px 50px 50px 50px;
  background-color: #F5F6FA;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  right: -11px;
  top: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  min-height: 350px;
  gap: 1.6em;
}

header div.header-mobile nav #menuToggle #menu a {
  text-decoration: none;
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  background: var(--black);
  padding: 1em;
  border-radius: 30px;
  transition: all 500ms ease;
}

header div.header-mobile nav #menuToggle #menu a:hover {
  background: var(--black);
  color: var(--white);
}

header div.header-mobile nav #menuToggle #menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

header div.header-mobile nav #menuToggle #menu ul li {
  padding: 15px 0;
  transition-delay: 2s;
}

header div.header-mobile nav #menuToggle #menu ul li a {
  text-decoration: none;
  color: #000000;
}

/* Desktop header */

header div.header-desktop {
  display: none;
  position: relative;
}

@media only screen and (min-width: 1080px) {
  header div.header-desktop {
    display: block;
    height: calc(100dvh - 140px);
  }
}

header div.header-desktop a.navbar-brand {
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

header div.header-desktop a.navbar-brand img {
  height: 120px;
}

@media only screen and (min-width: 1200px) {
  header div.header-desktop a.navbar-brand img {
    height: 140px;
  }
}

header div.header-desktop div.cart {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: max-content;
  margin: 0 auto 34px;
}

header div.header-desktop div.cart div {
  height: max-content;
}

header div.header-desktop div.cart div.wishlist {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

header div.header-desktop div.cart div.wishlist span {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
}

header div.header-desktop div.cart div.menu-cart-menu-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header div.header-desktop div.cart div.menu-cart-menu-container ul li a {
  text-decoration: none;
  color: var(--black);
}

header div.header-desktop div.cart div.menu-cart-menu-container ul li a span {
  font-weight: 600;
  font-size: 18px;
}

header div.header-desktop div.search {
  position: relative;
  margin-bottom: 60px;
}

header div.header-desktop div.search i {
  position: absolute;
  top: 15px;
}

header div.header-desktop div.search input[type=text] {
  background: var(--white);
  border: none;
  height: 50px;
  width: 100%;
  border-bottom: 1px solid var(--black);
  padding: 0 0 0 2em;
}

header div.header-desktop div.search input[type=text]::placeholder {
  color: var(--dark-grey);
}

header div.header-desktop div.search input[type=text]:focus-visible {
  outline: unset;
}

header div.header-desktop #menu {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  gap: 1.6em;
  background: url('assets/images/21_home.jpg') no-repeat center center;
}

header div.header-desktop #menu a {
  text-decoration: none;
  color: var(--black);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  background: var(--white);
  padding: 1em 2em;
  border-radius: 30px;
  transition: all 500ms ease;
}

header div.header-desktop #menu a:hover {
  background: var(--black);
  color: var(--white);
}

header div.header-desktop #menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6em;
}

header div.header-desktop #menu ul li {
  padding: 0;
}

header div.header-desktop #menu ul li a {
  text-decoration: none;
  color: var(--dark-grey);
  transition: all 500ms ease;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
}

header div.header-desktop #menu ul li a:hover,
header div.header-desktop #menu ul li a.active {
  color: var(--black);
  transition: all 500ms ease;
}

header div.header-desktop div.signature {
  position: absolute;
  bottom: 0;
}

header div.header-desktop div.signature ul.socials {
  list-style: none;
  padding: 0;
  margin: 0 auto 1em;
  width: max-content;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

header div.header-desktop div.signature ul.socials li a {
  text-decoration: none;
  color: var(--black);
  font-size: 18px;
}

header div.header-desktop div.signature ul.socials li a:hover {
  color: red;
}

header div.header-desktop div.signature p {
  text-align: center;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 15px;
}

header div.header-desktop div.signature p a {
  text-decoration: none;
  color: #f79720;
  transition: all 500ms ease;
}

header div.header-desktop div.signature p a:hover {
  text-decoration: underline;
}

/* ===================== MAIN ===================== */

main {
  position: relative;
}

@media only screen and (min-width: 1080px) {
  main {
    width: calc(100dvw - 300px);
    left: 300px;
  }
}

@media only screen and (min-width: 1200px) {
  main {
    width: calc(100dvw - 340px);
    left: 340px;
  }
}

/* ===================== FOOTER ===================== */

main footer,
footer.site-footer {
  padding: 50px;
  background: url('assets/images/footerbg.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

main footer::before,
footer.site-footer::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  main footer,
  footer.site-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 1080px) {
  main footer,
  footer.site-footer {
    padding: 70px 50px;
  }
}

@media only screen and (min-width: 1200px) {
  main footer,
  footer.site-footer {
    padding: 90px 50px;
  }
}

main footer div,
footer.site-footer div {
  position: relative;
  z-index: 2;
}

main footer div:first-child ul.contacts,
footer.site-footer div:first-child ul.contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

main footer div:first-child ul.contacts li,
footer.site-footer div:first-child ul.contacts li {
  color: var(--white);
  text-align: center;
}

@media only screen and (min-width: 768px) {
  main footer div:first-child ul.contacts li,
  footer.site-footer div:first-child ul.contacts li {
    text-align: left;
  }
}

main footer div:first-child ul.contacts li a,
footer.site-footer div:first-child ul.contacts li a {
  text-decoration: none;
  color: var(--white);
}

main footer div:first-child ul.contacts li a:hover,
footer.site-footer div:first-child ul.contacts li a:hover {
  color: var(--black);
}

main footer div:nth-child(2),
footer.site-footer div:nth-child(2) {
  text-align: center;
}

main footer div:nth-child(2) img,
footer.site-footer div:nth-child(2) img {
  height: 100px;
}

main footer div:nth-child(3) p,
footer.site-footer div:nth-child(3) p {
  color: var(--white);
  text-align: center;
  line-height: 1.4;
}

@media only screen and (min-width: 768px) {
  main footer div:nth-child(3) p,
  footer.site-footer div:nth-child(3) p {
    text-align: right;
  }
}

main footer div:nth-child(3) ul.payment-options,
footer.site-footer div:nth-child(3) ul.payment-options {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 10px;
  width: max-content;
}

main footer div:nth-child(3) ul.payment-options li img,
footer.site-footer div:nth-child(3) ul.payment-options li img {
  height: 35px;
}

/* ===================== FRONT PAGE: HERO ===================== */

.front-page main #hero {
  position: relative;
}

.front-page main #hero div.images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.front-page main #hero div.images div {
  position: relative;
}

.front-page main #hero div.images div img {
  height: 200px;
  width: auto;
  object-fit: contain;
  object-position: center;
  padding-top: 2em;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .front-page main #hero div.images div img {
    height: 340px;
  }
}

@media only screen and (min-width: 992px) {
  .front-page main #hero div.images div img {
    height: 400px;
  }
}

@media only screen and (min-width: 1200px) {
  .front-page main #hero div.images div img {
    height: 550px;
  }
}

@media only screen and (min-width: 1400px) {
  .front-page main #hero div.images div img {
    height: 580px;
  }
}

.front-page main #hero div.images div:first-child {
  background: #3b3335;
}

.front-page main #hero div.images div:nth-child(2) {
  background: #231f20;
}

.front-page main #hero div.images div:nth-child(2) img {
  left: 13%;
}

@media only screen and (min-width: 992px) {
  .front-page main #hero div.images div:nth-child(2) img {
    left: 35%;
  }
}

.front-page main #hero .caption {
  position: relative;
  padding: 50px;
}

@media only screen and (min-width: 768px) {
  .front-page main #hero .caption {
    position: absolute;
    bottom: 5em;
    width: 50%;
    padding: unset;
    left: 25%;
  }
}

@media only screen and (min-width: 992px) {
  .front-page main #hero .caption {
    width: 40%;
    left: 30%;
    bottom: 7em;
  }
}

@media only screen and (min-width: 1200px) {
  .front-page main #hero .caption {
    bottom: 12em;
  }
}

@media only screen and (min-width: 1400px) {
  .front-page main #hero .caption {
    width: 30%;
    left: 35%;
  }
}

.front-page main #hero .caption h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .front-page main #hero .caption h2 {
    color: var(--white);
  }
}

@media only screen and (min-width: 992px) {
  .front-page main #hero .caption h2 {
    font-size: 30px;
  }
}

.front-page main #hero .caption p {
  text-align: center;
  line-height: 1.6;
  color: var(--text-color);
}

@media only screen and (min-width: 768px) {
  .front-page main #hero .caption p {
    color: #8c8c8c;
  }
}

@media only screen and (min-width: 992px) {
  .front-page main #hero .caption p {
    font-size: 18px;
    margin-bottom: 1.8em;
  }
}

.front-page main #hero .caption a.btn {
  position: relative;
  display: block;
  padding: 1em 2em 0.9em;
  font-size: 90%;
  background: var(--white);
  border: 1px solid var(--black);
  text-decoration: none;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 800;
  width: max-content;
  margin: 0 auto;
  transition: all 500ms ease;
}

@media only screen and (min-width: 992px) {
  .front-page main #hero .caption a.btn {
    padding: 1.2em 3em 1em;
  }
}

.front-page main #hero .caption a.btn:hover {
  transition: all 500ms ease;
  color: var(--white);
  background: var(--black);
}

/* ===================== FRONT PAGE: PRODUCTS ===================== */

.front-page main #products div.section-header {
  display: grid;
  grid-gap: 2em;
  padding: 2em;
  background: #f7eef1;
}

@media only screen and (min-width: 768px) {
  .front-page main #products div.section-header {
    grid-template-columns: 2fr 1fr;
  }
}

@media only screen and (min-width: 992px) {
  .front-page main #products div.section-header {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    height: 100px;
    box-sizing: border-box;
  }
}

.front-page main #products div.section-header div {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .front-page main #products div.section-header div:first-child {
    grid-column: 1/3;
  }
}

@media only screen and (min-width: 992px) {
  .front-page main #products div.section-header div:first-child {
    grid-column: unset;
    order: 2;
  }
}

.front-page main #products div.section-header div:first-child h3 {
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 800;
  margin: 0;
  font-size: 22px;
}

@media only screen and (min-width: 768px) {
  .front-page main #products div.section-header div:first-child h3 {
    font-size: 24px;
  }
}

@media only screen and (min-width: 992px) {
  .front-page main #products div.section-header div:first-child h3 {
    font-size: 26px;
  }
}

.front-page main #products div.section-header div:nth-child(2) ul.sub-categories {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (min-width: 768px) {
  .front-page main #products div.section-header div:nth-child(2) ul.sub-categories {
    margin: unset;
  }
}

@media only screen and (min-width: 1200px) {
  .front-page main #products div.section-header div:nth-child(2) ul.sub-categories {
    gap: 40px;
  }
}

.front-page main #products div.section-header div:nth-child(2) ul.sub-categories li {
  text-transform: uppercase;
  color: var(--dark-grey);
  font-weight: 500;
  font-size: 12px;
}

@media only screen and (min-width: 992px) {
  .front-page main #products div.section-header div:nth-child(2) ul.sub-categories li {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) {
  .front-page main #products div.section-header div:nth-child(2) {
    order: 1;
  }
}

.front-page main #products div.section-header div:nth-child(3) {
  text-align: center;
}

@media only screen and (min-width: 992px) {
  .front-page main #products div.section-header div:nth-child(3) {
    order: 3;
  }
}

.front-page main #products div.section-header div:nth-child(3)::before {
  content: '';
  width: 15%;
  max-width: 40px;
  height: 1px;
  background: var(--black);
  position: relative;
  display: none;
  top: -3px;
  margin-right: 5px;
}

@media only screen and (min-width: 768px) {
  .front-page main #products div.section-header div:nth-child(3) {
    text-align: right;
  }
  .front-page main #products div.section-header div:nth-child(3)::before {
    display: inline-flex;
  }
}

.front-page main #products div.section-header div:nth-child(3) a {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 12px;
  transition: all 500ms ease;
}

@media only screen and (min-width: 992px) {
  .front-page main #products div.section-header div:nth-child(3) a {
    font-size: 14px;
  }
}

.front-page main #products div.section-header div:nth-child(3) a:hover {
  text-decoration: underline;
  transition: all 500ms ease;
}

.front-page main #products div.content ul.products {
  width: inherit;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 992px) {
  .front-page main #products div.content ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (min-width: 1200px) {
  .front-page main #products div.content ul.products {
    grid-template-columns: repeat(4, 1fr);
  }
}

.front-page main #products div.content ul.products li.product {
  position: relative;
}

.front-page main #products div.content ul.products li.product::before {
  content: '';
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  background: var(--grey-border);
  top: 0;
  right: 0;
}

.front-page main #products div.content ul.products li.product div.product-image {
  position: relative;
  overflow: hidden;
}

.front-page main #products div.content ul.products li.product div.product-image .onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--black);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  z-index: 2;
  line-height: 1.4;
}

.front-page main #products div.content ul.products li.product div.product-image .add-to-cart-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.front-page main #products div.content ul.products li.product div.product-image .add-to-cart-icon:hover {
  background: var(--dark-grey, #333);
}

.front-page main #products div.content ul.products li.product:hover div.product-image .add-to-cart-icon {
  opacity: 1;
  transform: translateY(0);
}

.front-page main #products div.content ul.products li.product div.product-image img,
.front-page main #products div.content ul.products li.product a img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media only screen and (min-width: 768px) {
  .front-page main #products div.content ul.products li.product div.product-image img,
  .front-page main #products div.content ul.products li.product a img {
    height: 360px;
  }
}

@media only screen and (min-width: 992px) {
  .front-page main #products div.content ul.products li.product div.product-image img,
  .front-page main #products div.content ul.products li.product a img {
    height: 420px;
  }
}

.front-page main #products div.content ul.products li.product div.product-details {
  padding: 20px;
  background: #f7eef1;
}

@media only screen and (min-width: 992px) {
  .front-page main #products div.content ul.products li.product div.product-details {
    padding: 30px;
    box-sizing: border-box;
  }
}

.front-page main #products div.content ul.products li.product div.product-details h2,
.front-page main #products div.content ul.products li.product div.product-details .woocommerce-loop-product__title {
  margin-top: 0;
  font-size: 14px;
  font-weight: 400;
}

@media only screen and (min-width: 992px) {
  .front-page main #products div.content ul.products li.product div.product-details h2,
  .front-page main #products div.content ul.products li.product div.product-details .woocommerce-loop-product__title {
    font-size: 16px;
  }
}

.front-page main #products div.content ul.products li.product div.product-details .price {
  display: block;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

@media only screen and (min-width: 992px) {
  .front-page main #products div.content ul.products li.product div.product-details .price {
    font-size: 16px;
  }
}

/* ===================== INNER PAGES ===================== */

.page-content,
.entry-content,
.post-content {
  padding: 2em;
}

@media only screen and (min-width: 768px) {
  .page-content,
  .entry-content,
  .post-content {
    padding: 3em;
  }
}

@media only screen and (min-width: 1080px) {
  .page-content,
  .entry-content,
  .post-content {
    padding: 4em;
  }
}

.entry-content p {
  line-height: 1.6;
  color: var(--text-color);
}

.entry-header {
  padding: 2em 2em 0;
}

@media only screen and (min-width: 768px) {
  .entry-header {
    padding: 3em 3em 0;
  }
}

@media only screen and (min-width: 1080px) {
  .entry-header {
    padding: 4em 4em 0;
  }
}

.entry-header h1 {
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0;
}

/* 404 page */

.error-404 {
  text-align: center;
  padding: 5em 2em;
}

.error-404 h1 {
  font-size: 6em;
  font-weight: 900;
  margin: 0;
}

.error-404 p {
  font-size: 1.2em;
  color: var(--text-color);
  line-height: 1.6;
}

.error-404 .btn {
  display: inline-block;
  padding: 1em 2em 0.9em;
  font-size: 90%;
  background: var(--white);
  border: 1px solid var(--black);
  text-decoration: none;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 800;
  transition: all 500ms ease;
  margin-top: 1em;
}

.error-404 .btn:hover {
  color: var(--white);
  background: var(--black);
}

/* Search results */

.search-results .search-entry {
  padding: 2em;
  border-bottom: 1px solid var(--grey-border);
}

.search-results .search-entry h2 {
  margin-top: 0;
}

.search-results .search-entry h2 a {
  text-decoration: none;
  color: var(--black);
}

.search-results .search-entry h2 a:hover {
  text-decoration: underline;
}

/* Post meta */

.entry-meta {
  color: var(--dark-grey);
  font-size: 14px;
  margin-bottom: 1em;
}

.entry-meta a {
  color: var(--dark-grey);
  text-decoration: none;
}

.entry-meta a:hover {
  color: var(--black);
}

/* Post navigation */

.post-navigation {
  display: flex;
  justify-content: space-between;
  padding: 2em;
  border-top: 1px solid var(--grey-border);
}

.post-navigation a {
  text-decoration: none;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

.post-navigation a:hover {
  text-decoration: underline;
}

/* Pagination */

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 2em;
}

.pagination a,
.pagination span {
  padding: 0.5em 1em;
  border: 1px solid var(--grey-border);
  text-decoration: none;
  color: var(--black);
}

.pagination .current {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Comments */

.comments-area {
  padding: 2em;
  border-top: 1px solid var(--grey-border);
}

.comments-area .comment-list {
  list-style: none;
  padding: 0;
}

.comments-area .comment-list .comment {
  padding: 1.5em 0;
  border-bottom: 1px solid var(--grey-border);
}

.comments-area .comment-respond input[type="text"],
.comments-area .comment-respond input[type="email"],
.comments-area .comment-respond textarea {
  width: 100%;
  border: 1px solid var(--grey-border);
  padding: 0.8em;
  box-sizing: border-box;
  font-family: "League Spartan", sans-serif;
}

.comments-area .comment-respond input[type="submit"] {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 1em 2em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 500ms ease;
  font-family: "League Spartan", sans-serif;
}

.comments-area .comment-respond input[type="submit"]:hover {
  opacity: 0.8;
}

/* Widgets / Sidebar */

.widget-area .widget {
  margin-bottom: 2em;
}

.widget-area .widget h2 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}

.widget-area .widget ul {
  list-style: none;
  padding: 0;
}

.widget-area .widget ul li {
  padding: 0.5em 0;
  border-bottom: 1px solid var(--grey-border);
}

.widget-area .widget ul li a {
  text-decoration: none;
  color: var(--black);
}

.widget-area .widget ul li a:hover {
  text-decoration: underline;
}

/* Screen reader text */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
