
.author{
    margin-bottom:10px;
}
.author .author-data {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}
.author .author-data img.author-image {
    border-radius: 3px;
    box-shadow: 0 0 20px 0 rgb(150 150 150 / 30%);
    height: 50px;
    width: 50px;
}
    .author .author-data .author-name {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 2px;
    }
        .author .author-data .author-name span {
            color: #555;
            font-weight: 700;
            font-size: 14px;
        }

        .author .author-data .author-name .date {
            font-size: 11px;
            color: #e88301;
        }




article .article-body {
    margin: 10px 0;
    padding: 10px;
    font-size: var(--size);
}

    article .article-body .article-content {
        line-height: 30px;
        font-size: 16px;
        word-spacing: 3px;
    }

        article .article-body .article-content p {
            margin-bottom: 15px;
        }

        article .article-body .article-content a {
            color: #0a72a9;
            background: #f1f4f6;
            border-bottom: 1px solid #0a72a9;
            padding: 3px var(--gap);
        }

        article .article-body .article-content iframe {
            max-width: calc(100% - 320px);
        }


article .article-image-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    article .article-image-box .article-image-top {
        display: none;
    }

    article .article-image-box .article-image-bottom {
        display: none;
    }

    article .article-image-box.sponsored {
        border-radius: var(--gap);
        margin-bottom: var(--size);
        margin-top: var(--size);

    }

        article .article-image-box.sponsored .article-image img {
            border-radius: var(--gap);
            width: 100%;
        }

        article .article-image-box.sponsored .article-image-top {
            display: flex;
            align-content: end;
            flex-wrap: wrap;
            justify-content: center;
        }

        article .article-image-box.sponsored .article-image-bottom {
            display: flex;
            align-content: start;
            flex-wrap: wrap;
            justify-content: center;
        }

.atags {
    padding-top: 30px;
}

    .atags ul {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        flex-grow: 1;
    }

    .atags li {
        border: 1px solid #0a72a9;
        border-radius: 4px;
        width: auto;
        /*    flex-grow: 1;*/
        overflow: hidden;
        text-align: center;
    }

        .atags li a {
            color: #0a72a9;
            background: #f1f4f6;
            padding: 3px 10px var(--gap);
            display: block;
        }

        .atags li:hover a {
            background: #0a72a9;
            color: #fff;
        }



.social-card {
    min-height: auto;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}
    .social-card .social-share {
        display: flex;
        align-items: baseline;
        margin: 0;
        gap: 5px;
        justify-content: center;
    }
        .social-card .social-share .sbtn {
            border-radius: 25px;
            margin: 0 !important;
            background-size: cover;
            background-repeat: no-repeat;
            width: 30px;
            height: 30px
        }
            .social-card .social-share .sbtn i {
                width: 30px;
                height: 30px;
                font-size: 15px;
                text-align: center;
                line-height: 30px;
                -moz-osx-font-smoothing: grayscale;
                -webkit-font-smoothing: antialiased;
                display: var(--fa-display, inline-block);
                font-style: normal;
                font-variant: normal;
                line-height: 1;
                text-rendering: auto;
            }

        .social-card .social-share .bg-facebook {
            background-image: url( "/assets2/images/social-media-icons/fb.png");
            background-color: #3b5998 !important;
            color: #fff;
            
        }
        .social-card .social-share .bg-x-twitter {
            background-image: url( "/assets2/images/social-media-icons/x.png");
        }
        .social-card .social-share .bg-whatsapp {
            background-image: url( "/assets2/images/social-media-icons/wa.png");
        }
        .social-card .social-share .bg-telegram {
            background-image: url( "/assets2/images/social-media-icons/telegram.webp");
        }
        .social-card .social-share .bg-blue-dark {
            background-image: url( "/assets2/images/social-media-icons/mail.png");
        }



#taboola-sponsored-below-article, #taboola-alternating-below-article {
    background-color: #fff;
    padding: 10px 10px;
    margin-bottom: 15px;
    border-radius: var(--gap);
}