/* === BEAUTIFUL BLOCKQUOTE === */
/* === MAKE BLACK BLOCK FULL-WIDTH === */
/* === CENTER BLACK BLOCK & PREVENT OVERFLOW === */
/* === CENTERED & WIDER BLACK BLOCK === */
/* === TIGHT, CENTERED, 94% VISUAL WIDTH === */
.beautiful-blockquote {
    min-width: 100%;
    max-width: 100%;
    margin: 1em 0;
    font-family: 'Georgia', serif;
    padding: 0 0.5rem;             /* REDUCED: Less outer spacing */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.bbq-inner {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 1.2rem 1rem;          /* REDUCED: Tighter inner padding */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border: 1px solid #333;
    overflow: hidden;
    width: 100%;
    max-width: 800px;              /* RESTORED: 800px max */
    margin: 0 auto;
    /* 94% visual feel via reduced padding + max-width */
}

.bbq-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, 
        rgba(44, 62, 44, 0.15) 0%, 
        rgba(0,0,0,0.1) 100%);
    pointer-events: none;
    border-radius: 8px;
}

/* Quote Text */
.bbq-text {
    font-size: 1.35rem;
    line-height: 1.65;
    margin: 0 0 1.2rem;
    font-style: italic;
    color: #f5f5f5;
    position: relative;
    z-index: 1;
}

.bbq-text::before,
.bbq-text::after {
    font-size: 4rem;
    font-family: 'Georgia', serif;
    opacity: 0.15;
    position: absolute;
    line-height: 1;
}

.bbq-text::before { content: '“'; top: -0.5rem; left: -0.8rem; }
.bbq-text::after  { content: '”'; bottom: -1.2rem; right: -0.8rem; }

/* Slash Divider */
.bbq-slash {
    font-size: 2.8rem;
    font-weight: 300;
    color: #4a5a4a;
    text-align: center;
    margin: 0.8rem 0 1rem;
    line-height: 1;
    letter-spacing: 0.1em;
}

/* Footer */
.bbq-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    font-size: 1rem;
    color: #aaa;
}

.bbq-author {
    font-weight: bold;
    color: #0275BD;
    font-style: normal;
    font-size: 1.1rem;
    position: relative;
}

.bbq-author::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #88c0d0;
    opacity: 0.6;
}

.bbq-source {
    font-size: 0.9rem;
    font-style: italic;
    color: #999;
}

/* Responsive */
@media (max-width: 640px) {
    .bbq-inner { padding: 2rem 1.5rem; }
    .bbq-text { font-size: 1.2rem; }
    .bbq-text::before,
    .bbq-text::after { font-size: 3rem; }
    .bbq-slash { font-size: 2.2rem; }
}