@import url('./heroCarrossel.css');
body {
    main {
        display: flex;
        flex-direction: column;
        align-items: center;

        .container__hero {
            ul {
                li {
                    &::before {
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        content: '';
                        width: 100%;
                        height: 200px;
                        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
                    }
                }
            }
        }
        .content-blog {
            position: relative;
            top: -200px;
            display: flex;
            flex-direction: column;
            row-gap: 1.25rem;
            padding: 3rem 2rem;
            width: 100%;
            max-width: 60rem;
            background: var(--white);
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
            border-radius: 1rem;
            text-align: justify;
            z-index: 1;

            .tags {
                display: flex;
                align-items: start;
                width: 100%;

                .tag {
                    color: var(--rose);
                    text-align: center;
                    padding: 4px 32px;
                    border-radius: 15px;
                    background-color: var(--light-gray);
                }
            }

            blockquote, ol, ul, li, a {
                all: revert;
            }

            blockquote {
                margin: 2em 0;
                padding: 1.2em 1.5em;
                border-left: 4px solid #D95C14;
                border-radius: 0 8px 8px 0;
                font-style: italic;
                color: #CCCCCC;
                font-size: 1.1rem;
                line-height: 1.8;
                position: relative;
                overflow: hidden;

                &::before {
                    content: "”";
                    position: absolute;
                    font-family: serif;
                    font-size: 5rem;
                    color: rgba(217, 92, 20, 0.1);
                    right: 20px;
                    top: -10px;
                    line-height: 1;
                    pointer-events: none;
                }
            }

            h2, h3, h4 {
                color: var(--dark-red);
            }

            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            h4 { font-size: 1.25rem; }

            ul, ol {
                li {
                    color: var(--dark-gray);
                    &::marker {
                        color: var(--dark-red) !important;
                    }
                }
            }
        }
    }
}
