.rounded-corners {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
        margin: 30px 0px;
    }
    .rounded-corners a {
        text-decoration: none !important;
    }
    
    .bnr--wide {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
    }
    
    .gradient-bg-orange {
        background: linear-gradient(135deg, #f8d7da, #f9e2a3);
    }
    
    .gradient-bg-green {
        background: linear-gradient(135deg, #d4edda, #f9e2a3);
    }
    
    .gradient-bg-gray {
        background: linear-gradient(135deg, #f8f9fa, #f9e2a3);
    }
    
    .bnr__title {
        font-size: 1.2em;
        color: #333;
    }
    
    .text-color-orange-500 {
        color: #f6732f;
    }
    
    .bnr__text {
        font-size: 0.8em;
        color: #333;
    }
    
    .bnr__learn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 5px;
    }
    
    .bnr__btn {
        padding: 5px 10px;
        background-color: #f6732f;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        transition: all 0.3s ease;
        font-size: 0.8em;
    }
    
    .text-color-green-400 {
        color: #28a745;
    }
    
    /* Mobile View */
    @media only screen and (max-width: 600px) {
        .bnr--wide {
            padding: 10px;
        }
    
        .bnr__title,
        .bnr__text {
            font-size: 1em;
        }
    
        .bnr__btn {
            padding: 5px;
            font-size: 0.8em;
        }
    }

/* word count / stats stuff */

.word-count-plugin {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f9f9f9; 
    border-radius: 10px; 
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.word-count-plugin > div {
    margin: 0 10px;
}

.word-count, .page-count {
    border-right: 1px solid #dcdcdc;
    padding-right: 20px;
    margin-right: 20px;
}

.article-categories, .article-tags {
    max-width: 45%; /* Control width of these sections, adjust as needed */
}

.article-categories a, .article-tags a {
    color: #007bff;
    text-decoration: none;
}

.article-categories a:hover, .article-tags a:hover {
    color: #0056b3;
}

@media screen and (max-width: 600px) {
    .word-count-plugin {
        flex-direction: column;
        align-items: start;
    }
    
    .word-count, .page-count {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #dcdcdc;
    }

    .article-categories, .article-tags {
        max-width: 100%;
    }
}

    