/* ============================================
   Blockquote – Block Component
   Decorative quote block with opening/closing marks
   ============================================ */

.blockquote {
    position: relative;
    background-color: var(--color-white);
    border: 2px solid var(--color-ink);
    border-radius: var(--radius-hand);
    box-shadow: var(--shadow-soft-ink);
    padding: var(--space-10);
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

/* Opening quotation mark */
.blockquote__open {
    position: absolute;
    top: var(--space-2);
    left: var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--text-8xl);
    color: var(--color-sun-yellow-40);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Quote text */
.blockquote__text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-ink);
    position: relative;
    z-index: 10;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .blockquote__text {
        font-size: var(--text-3xl);
    }
}

/* Closing quotation mark */
.blockquote__close {
    position: absolute;
    bottom: var(--space-2);
    right: var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--text-8xl);
    color: var(--color-sun-yellow-40);
    line-height: 1;
    transform: rotate(180deg);
    pointer-events: none;
    user-select: none;
}

/* Attribution line */
.blockquote__attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-ink-60);
    font-size: var(--text-base);
}

/* Horizontal decorative lines beside attribution */
.blockquote__line {
    display: block;
    width: 3rem;
    height: 2px;
    background-color: var(--color-ink-20);
}
