/* === TEXT QUOTE BLOCK === */
.qe-text-block {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  border: none !important;
  border-top: 5px solid #cc0033 !important;
  text-align: center !important;
  color: white;
  padding: 20px 10px;
  margin: 40px auto 20px;
  border-radius: 20px;
  position: relative;
  font-style: normal;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-size: 17px;
  line-height: 1.8;
  max-width: 100%;
  display: block;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, background 0.5s ease;
  font-family: 'Mukta', sans-serif;
}

/* === IMAGE QUOTE BLOCK === */
.qe-image-block {
  background: #ffffff;
  padding: 0; /* 🚫 Remove padding */
  border: none;
  border-top: 5px solid #cc0033 !important;
  border-radius: 16px;
  text-align: center;
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden; /* ✅ So image corner stays inside rounded border */
  position: relative;
}

.qe-image-block:hover{
  transform: none;
}

.qe-image-block img {
  width: 100%;
  height: auto;
  display: block; /* ✅ Remove inline gap */
  border-radius: 10; /* ❌ Remove inner border radius if you want full edge */
  object-fit: cover;
  margin-bottom: 20px;
}


/* === COMMON BLOCKQUOTE HOVER === */
blockquote:hover {
  transform: scale(1.01);
}

/* === BUTTON CONTAINERS === */
.qe-buttons-text,
.qe-buttons-img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

/* === BUTTON STYLING === */
.qe-copy-btn,
.qe-whatsapp-btn,
.qe-like-btn,
.qe-download-btn {
  background: linear-gradient(to right, #ff9966, #ff5e62);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.qe-copy-btn:hover,
.qe-whatsapp-btn:hover,
.qe-like-btn:hover,
.qe-download-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  filter: brightness(1.05);
}

/* === LIKE BUTTON STATE === */
.qe-like-btn.liked {
  background: #ff5e62;
  animation: pulse 0.3s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.qe-like-btn i {
  color: #ffd4dc !important;
}

.qe-like-btn.liked i {
  color: #C40606 !important;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  blockquote {
    padding: 16px 20px;
    font-size: 16px;
  }

  .qe-buttons-text,
  .qe-buttons-img {
    gap: 10px;
    flex-direction: row;
    justify-content: center;
  }
}
