/* ===================================================================
   Blockquote Component
   Reusable blockquote styles for articles and content
   =================================================================== */

/* ===== STANDARD BLOCKQUOTES ===== */
blockquote,
blockquote.blockquote {
  font-size: 18px;
  font-style: italic;
  line-height: 2;
  margin: 20px 0;
  padding: 20px;
  border-left: 5px solid var(--primary-color);
  background-color: #fff5f2;
  position: relative;
  font-family: var(--font-primary);
}

blockquote span,
blockquote.blockquote span {
  display: block;
}

/* Override any inline styles that might interfere */
blockquote[style],
blockquote.blockquote[style] {
  line-height: 2 !important;
}

blockquote span[style],
blockquote.blockquote span[style] {
  font-size: 18px !important;
}

/* ===== ARTICLE DESCRIPTION QUOTE ===== */
.article-description-quote {
  position: relative;
  margin: 40px 0;
  padding: 0;
}

.quote-icon {
  display: none;
}

.article-quote {
  background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
  border: 2px solid rgba(255, 122, 89, 0.1);
  border-radius: 20px;
  padding: 35px 40px 30px 40px;
  margin: 0;
  position: relative;
  box-shadow: 0 8px 30px rgba(255, 122, 89, 0.08);
  border-left: none;
  font-style: normal;
  overflow: hidden;
}

.article-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 0 20px 20px 0;
}

.article-quote::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 20px;
  width: 100px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(255, 122, 89, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.article-quote p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #2c3e50;
  margin: 0;
  font-weight: 400;
  text-align: left;
  position: relative;
  z-index: 1;
  font-family: var(--font-primary);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .article-description-quote {
    margin: 30px -15px 30px -15px;
  }

  .quote-icon {
    left: 20px;
    top: -12px;
    width: 40px;
    height: 40px;
  }

  .quote-icon i {
    font-size: 1.2rem;
  }

  .article-quote {
    border-radius: 0;
    padding: 30px 25px 25px 25px;
    border-left: none;
    border-right: none;
  }

  .article-quote::before {
    border-radius: 0;
  }

  .article-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}