/* =============================
   Breakpoints
============================= */

/* Hide elements on tablet & mobile */
@media (max-width:1024px){
  .hide-mobile-tablet{
    display:none!important;
  }
}

/* Tablet adjustments */
@media (min-width:768px) and (max-width:1024px){
  .responsive-title{
    text-align:inherit!important;
  }
}

/* Mobile adjustments */
@media (max-width:767px){
  .responsive-title{
    padding-left:0!important;
    padding-right:0!important;
    margin-top:.75em!important;
  }

  .post-thumbnail{
    margin-bottom:.5em!important;
  }
}

/* Hide post navigation on mobile */
@media (max-width:768px){
  .post-navigation,
  .nav-links{
    display:none;
  }

  /* Show only 2 Jetpack related posts */
  .jp-relatedposts .jp-relatedposts-post:nth-child(n+3),
  .jp-relatedposts .jp-relatedposts-items-visual li:nth-child(n+3){
    display:none!important;
  }
}

/* =============================
   Typography & Spacing
============================= */

b,
strong{
  font-weight:700!important;
}

/* Paragraph spacing */
.entry-content p{
  margin-bottom:.5em!important;
}

/* Heading spacing */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6{
  margin-top:.5em!important;
  margin-bottom:.5em!important;
}

/* Bold links inside posts */
.single-post .entry-content a{
  font-weight:700;
}

/* Add space above first paragraph */
.single-post .entry-content p:first-of-type{
  padding-top:17px;
}

/* Tighten paragraph before list */
.entry-content > p:has(+ ul.wp-block-list){
  margin-bottom:.35rem;
}

/* List spacing */
.wp-block-list{
  margin-bottom:.65rem;
}

/* =============================
   Images
============================= */

img.eager-load{
  loading:eager!important;
  fetchpriority:high!important;
}

/* =============================
   Accessibility Helper
============================= */

.etg-visually-hidden{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}

/* =============================
   Forms
============================= */

.wp-block-jetpack-contact-form input[type="email"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="number"],
textarea,
select{
  border:2px solid #ced1d6!important;
  border-radius:15px!important;
  padding:12px 16px;
  background:transparent;
  box-sizing:border-box;
}

input:focus,
textarea:focus,
select:focus{
  border-color:#ffffff!important;
  outline:none;
}