/*
Theme Name:     Newspaper Child theme
Theme URI: 		http://themeforest.net/user/tagDiv/portfolio
Description:    Child theme made by tagDiv
Author:         tagDiv
Author URI: 	http://themeforest.net/user/tagDiv/portfolio
Template:       Newspaper
Version:        9.0c
*/


/*  ----------------------------------------------------------------------------
    This file will load automatically when the child theme is active. You can use it
    for custom CSS.
*/

.gnews-follow-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: #000000;
    border: 1px solid #000000;
    border-left: 4px solid #f2c500;
    border-radius: 0;
    padding: 14px 18px;
    margin: 20px 0;
}

.gnews-follow-text {
    margin: 0 !important;
    font-size: 15px;
    font-weight: 700;
    color: #fff !important;
    flex: 1;
}

.gnews-follow-btn {
    display: inline-block;
    background: #f2c500;
    color: #000000 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 0;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.gnews-follow-btn:hover {
    background: #ffffff;
    color: #000000 !important;
}

@media (max-width: 480px) {
    .gnews-follow-box {
        flex-direction: column;
        align-items: center;
    }
    .gnews-follow-btn {
        width: 100%;
        text-align: center;
    }
}