.spiral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  margin-top: 2em;
  margin-bottom: 2em;
}

.spiral-grid img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.spiral-grid blockquote {
  font-size: 1rem;
  font-style: italic;
  color: #ccc;
  border-left: 3px solid #ccc;
  padding-left: 1em;
  margin: 0;
}

.wrap-layout {
  overflow: hidden;
}

.wrap-image {
  float: left;
  width: 50%;
  margin: 0 3rem 1rem 0;
  max-width: 300px;
  height: auto;
}

.cover-img {
  display: inline-block;
  max-width: 45%;           /* scales image to half width */
  height: auto;
  border: none;              /* remove any border */
  box-shadow: 0 0 20px 6px rgba(0, 0, 0, 0.4); /* softer and more diffused */
  border-radius: 0;          /* ensures no rounded corners if unwanted */
  
  /* Default soft white glow */
  box-shadow: 0 0 20px 6px rgba(255, 255, 255, 0.3);
  transition: box-shadow 0.3s ease;
}

.cover-img:hover {
  /* Stronger glow on hover */
  box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .wrap-image {
    float: none;
    display: block;
    margin: 0 auto 2rem auto;  /*top | right | bottom | left*/
    width: 100%;
    max-width: 100%;
  }
}

/* 🔄 Responsive fallback */
@media (max-width: 768px) {
  .spiral-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .spiral-grid blockquote {
    border-left: none;
    padding-left: 0;
    margin-top: 1em;
    font-size: 1.1rem;
  }
}

/*
.quarto-categories {
  display: none !important;
}
*/

/* Hide the keywords block in the page title section */
.quarto-title-block .keywords {
  display: none !important;
}

.icon-divider {
  text-align: center;
  margin: 2em 0;
}

figure figcaption {
  margin-top: 0.25em; /* increase for more spacing */
}

.subtitle {
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0.85;
}


