/*--------------------------------------------------------------
# Horoscope Posts Page
--------------------------------------------------------------*/
.horoscope_posts
{
	padding: 0 24px;
    margin: 1rem auto;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    max-width: 1068px;
}

    .signs
    {
        font-size: 0;
        flex-wrap: wrap;
        display: flex;
        justify-content: center;
    }
    .signs .sign
    {   
        width: 25%;
        display: inline-block;
        vertical-align: top;   
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    @media (max-width: 768px) {
    	.signs .sign {
	        padding: 0;
            margin-left: 0;
        }
    }
        	

    @media (max-width: 960px) and (min-width: 501px) 
    {
        .signs .sign
        { 
            width: 50%; /* Show 2 logos per row on medium devices (tablets, phones in landscape) */
        } 
    }

    @media (max-width: 500px) 
    {
        .signs .sign
        { 
            width: 100%; /* On small screens, show one logo per row */
        } 
    }

    .signs .sign_container
    {
        color: inherit;
    }

    .signs .sign_titles
    {   
    }

        .signs .sign_titles .content_title
        {
            margin-left: auto;
        }

        .signs .sign_container .sign-content
        {
            width: 100%;
            display: block;
        }

        .signs .sign_container .sign-content p
        {
            font-size: 14px;
            text-align: center;
            font-family: 'Raleway', sans-serif;
        }

            .signs .sign_container .sign-content h2
            {
            }

            .signs .sign .sign-image
            {
                display: block;
                width: 100%;
                text-align: center;
                margin-bottom: 20px;
            }

            .sign .sign-image p
            {
                width: 140px;
                height: 140px;
                background: #efefef;
                border-radius: 50%;
                padding: 20px 30px 40px;
                display: block;
                margin: 0 auto;
            }

            .sign .sign-image span
            {
                font-size: 14px;   
                color: #53225d;
                font-weight: bold;
                margin-top: 5px;
                display: block;
            }
            .sign .sign-image img
            {
                display: block;
                -webkit-transition: all .6s ease;
                   -moz-transition: all .6s ease;
                    -ms-transition: all .6s ease;
                     -o-transition: all .6s ease;
                        transition: all .6s ease;
                -webkit-transform: scale(1);
                   -moz-transform: scale(1);
                    -ms-transform: scale(1);
                     -o-transform: scale(1);
                        transform: scale(1);
            }

            .signs .sign:hover .sign-image img
            {
                -webkit-transition: all .6s ease;
                   -moz-transition: all .6s ease;
                    -ms-transition: all .6s ease;
                     -o-transition: all .6s ease;
                        transition: all .6s ease;
                -webkit-transform: scale(1.1);
                   -moz-transform: scale(1.1);
                    -ms-transform: scale(1.1);
                     -o-transform: scale(1.1);
                        transform: scale(1.1);
            }
    .single-horoscope
    {
        width: 100%;
        display: block;
        max-width: 900px;
        margin: 0 auto 80px;
    }
        .single-horoscope #horoscope-title
        {
            color: #53225d;
        }
        .single-horoscope #horoscope-text
        {
            line-height: 20px;
            display: block;
            margin: 20px 0 
        }
        .single-horoscope #horoscope-text img
        {
            float: left;
            margin-right: 20px;
        }
    .navigation
    {
        font-size: 0;
        display: block;
        position: relative;
        margin-top: 50px;
    }

        .navigation > li
        {
            width: 33.333%;
            font-size: 14px;
            text-align: center;
            display: inline-block;
        }

        @media (max-width: 500px) 
        {
            .navigation
            { 
                font-size: 0;
                display: flex;
                flex-direction: column;
            } 

            .navigation > li
            {
                width: 100%;
                font-size: 14px;
                text-align: center;
                display: flex;
                margin: 1vw 0;
            }
        }

        .navigation > li#prev
        {
            text-align: left;
        }
        .navigation > li#next
        {
            text-align: right;
        }
        .navigation > li a 
        {
            width: auto;
            height: 40px;
            vertical-align: middle;
            color: #fff;
            background: #333;
            border: 1px solid #333;
            padding: 10px;
            cursor: pointer;
            font-family: 'Nunito Sans', sans-serif;
            text-transform: uppercase;
            -webkit-transition: all .4s ease;
            -moz-transition: all .4s ease;
            -ms-transition: all .4s ease;
            -o-transition: all .4s ease;
            transition: all .4s ease;
        }
        .navigation > li a:hover
        {
            background: #53225d;
            border-color: #53225d;
            -webkit-transition: all .4s ease;
            -moz-transition: all .4s ease;
            -ms-transition: all .4s ease;
            -o-transition: all .4s ease;
            transition: all .4s ease;
        }