/* Shrink the WordPress Slideshow block inside Astra */ .ast-container .wp-block-jetpack-slideshow, .ast-container .wp-block-slideshow { max-width: 650px !important; /* medium size */ margin-left: auto !important; margin-right: auto !important; display: block !important; } /* Make images scale properly */ .ast-container .wp-block-jetpack-slideshow img, .ast-container .wp-block-slideshow img { width: 100% !important; height: auto !important; object-fit: contain !important; } /* Override Astra's wide/full alignment forcing */ .wp-block-jetpack-slideshow.alignwide, .wp-block-jetpack-slideshow.alignfull, .wp-block-slideshow.alignwide, .wp-block-slideshow.alignfull { max-width: 650px !important; margin-left: auto !important; margin-right: auto !important; }/* Shrink the WordPress Slideshow block inside Astra */
.ast-container .wp-block-jetpack-slideshow,
.ast-container .wp-block-slideshow {
  max-width: 450px !important;   /* smaller size */
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

/* Make images scale properly */
.ast-container .wp-block-jetpack-slideshow img,
.ast-container .wp-block-slideshow img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Override Astra's wide/full alignment forcing */
.wp-block-jetpack-slideshow.alignwide,
.wp-block-jetpack-slideshow.alignfull,
.wp-block-slideshow.alignwide,
.wp-block-slideshow.alignfull {
  max-width: 450px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.astra-sketchy-h1 {
  font-size: 3rem;
  font-weight: 700;
  display: inline-block;
  padding: 20px 40px;
  border: 4px solid #000;
  border-radius: 12px;
  background: #fff;
  position: relative;
  font-family: "Caveat", "Patrick Hand", "Comic Sans MS", sans-serif;
}

.astra-sketchy-h1::before,
.astra-sketchy-h1::after {
  content: "";
  position: absolute;
  border: 4px solid #000;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.astra-sketchy-h1::before {
  transform: rotate(-3deg) translate(-6px, -6px);
  opacity: 0.4;
}

.astra-sketchy-h1::after {
  transform: rotate(3deg) translate(6px, 6px);
  opacity: 0.3;
}