/* ===================================================================
   BLOCKQUOTE - ARCHITECTURAL FRAME (OPTION 3)
   Matches CTA section design with golden corner brackets
   =================================================================== */

.custom-blockquote {
  position: relative;
  padding: 28px 40px;
  margin: 32px 0;
  background: #FFF8F1;
  border: 2px solid #E8DBCD;
  box-sizing: border-box;
}

/* Top-left corner bracket */
.custom-blockquote::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 48px;
  height: 48px;
  border-top: 3px solid #C9A86A;
  border-left: 3px solid #C9A86A;
}

/* Bottom-right corner bracket */
.custom-blockquote::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 48px;
  height: 48px;
  border-bottom: 3px solid #C9A86A;
  border-right: 3px solid #C9A86A;
}

.custom-blockquote-inner {
  font-size: 16px;
  line-height: 1.65;
  color: #1E1D1D;
  font-style: italic;
  text-align: center;
}

.custom-blockquote-inner strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  color: #591C27;
  font-style: normal;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .custom-blockquote {
    padding: 24px 28px;
  }
  
  .custom-blockquote::before,
  .custom-blockquote::after {
    width: 36px;
    height: 36px;
    border-width: 2px;
  }
  
  .custom-blockquote-inner {
    font-size: 14px;
  }
}