.quote-wrapper {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center;
  position: relative;
  display: inline-block;
  max-width: 90%;
  margin: 0 auto 1.5rem auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.quote-content {
  display: inline-block;
  /*margin-bottom: 1.5rem;*/
}

.quote-mark {
  font-family: Georgia, serif;
  color: #f994bd;
  font-size: 4rem;
  position: absolute;
  top: -0.5rem;
}

.quote-mark.left {
  left: -1.5rem;
}

.quote-mark.right {
  right: -1.5rem;
  transform: translateX(-1.5rem);
}

.quote-mark.right {
  right: 1rem;
  transform: translateX(1.5rem);
}


.social-icons a {
  color: #f994bd;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: #fdd8e5;
}


.desktop-only{
    display: block;
}

.mobile-only{
    display: none;
}

.image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  /* filter: blur(0px); for safety fallback */
}

.image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  /* background-size: cover;*/
  background-position: center;
  filter: blur(20px) brightness(0.8);
  transform: scale(1.1);
  z-index: 0;
}


.post-block-image {
  position: relative;
  z-index: 1;
  width: auto;                 /* Fit the text width */
  max-width: 100%;            /* Limit width on large screens */
  height: auto;                /* Keep natural aspect ratio */
  max-height: 600px;           /* Limit very tall portraits on desktop */
  object-fit: contain;         /* Show the full image (no cropping) */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {

  .quote-wrapper {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 1.5rem;
    max-width: 95%;
  }

  .quote-mark {
    font-size: 2.5rem;
    top: -0.2rem;
  }

  .quote-mark.left {
    left: 0.5rem;
    transform: translateX(-0.5rem);
  }

  .quote-mark.right {
    right: 0.5rem;
    transform: translateX(0.5rem);
  }

  .destop-only {
    display: none;
  }

  .mobile-only{
    display: block;
  }
  .image-wrapper {
    background: none !important;
  }
}


@media (max-width: 480px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;

  }
  .image-wrapper {
    background: none !important;
  }
}



