////
///
/// Paragraph Quote Output
/// ===========================================================================
///
/// CSS output for blockquote paragraph styles.
///
/// @group Typography.Paragraph.Semantic.Quote
/// @author Scape Press
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @access public
///
////

@use "../../../../01-core/prefix" as *;
@use "./paragraph-quote.mixins" as mixins;

// ============================================================================
// Output
// ============================================================================

@layer ss.typography {
    .#{$ss-prefix-typography}-blockquote {
        @include mixins.paragraph-quote-base;
    }

    .#{$ss-prefix-typography}-blockquote-simple {
        @include mixins.paragraph-quote-simple;
    }

    .#{$ss-prefix-typography}-blockquote-highlight {
        @include mixins.paragraph-quote-highlight;
    }

    .#{$ss-prefix-typography}-pullquote {
        @include mixins.paragraph-quote-pull;
    }

    .#{$ss-prefix-typography}-testimonial {
        @include mixins.paragraph-quote-testimonial;
    }
}
