/* Image block */
.wp-block-image {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Quote block */
.wp-block-quote {
    position: relative;
    max-width: 740px;
    margin: 2.5rem auto;
    padding: 2.25rem 2.75rem 2.75rem;
    background: var(--color-white);
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.wp-block-quote p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.85;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.wp-block-quote cite {
    display: block;
    font-size: 0.85rem;
    font-style: normal;
    font-family: var(--font-sans);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-muted);
    position: relative;
    z-index: 1;
}

.wp-block-quote cite::before {
    content: '— ';
}

.wp-block-quote::after {
    content: '\201D';
    position: absolute;
    bottom: 0;
    right: 1.25rem;
    font-size: 6rem;
    line-height: 0.75;
    font-family: Georgia, serif;
    color: #e8e8e8;
    pointer-events: none;
    z-index: 0;
    transform: translateY(2rem);
}
