/* Caja general */
.wp-block-quote,
.wp-block-pullquote {
    padding: 24px 57px 24px 67px;
    border: 1px solid rgba(228, 230, 234, 1);
    border-radius: 12px;
    position: relative;
    margin: 30px 0px;
}

/* Texto del párrafo */
.wp-block-quote p,
.wp-block-pullquote blockquote p {
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    margin-bottom: 24px;
    position: relative;
}

/* Comillas antes */
.wp-block-quote p::before,
.wp-block-pullquote blockquote p::before {
    content: "";
    position: absolute;
    top: 0;
    left: -43px;
    width: 25px;
    height: 18px;
    background-image: url("./../img/ic_quote.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Comillas después */
.wp-block-quote p::after,
.wp-block-pullquote blockquote p::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -33px;
    width: 25px;
    height: 18px;
    background-image: url("./../img/ic_quote.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-180deg);
}

/* Autor */
.wp-block-quote cite,
.wp-block-pullquote cite {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    font-style: normal;
    color: #292b2e;
}

/* Autor destacado */
.wp-block-quote cite strong,
.wp-block-pullquote cite strong {
    font-weight: 700;
    color: #e6485c;
}

/* Responsive */
@media (max-width: 768px) {

    .wp-block-quote,
    .wp-block-pullquote {
        padding: 48px 16px 16px;
    }

    .wp-block-quote p,
    .wp-block-pullquote blockquote p {
        padding-bottom: 32px;
    }

    .wp-block-quote p::before,
    .wp-block-pullquote blockquote p::before {
        left: 0;
        top: -28px;
    }

    .wp-block-quote p::after,
    .wp-block-pullquote blockquote p::after {
        right: 0;
        bottom: 8px;
    }
}
