/*
Theme Name: NextNews Pro
Theme URI: https://example.com/nextnews-pro
Author: Cinebuzz
Author URI: https://example.com
Description: A modern, fast and professional WordPress News Theme.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.1
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nextnews-pro
Tags: news, magazine, blog, editor-style, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ==========================================================
   NextNews Pro
   Base Stylesheet
   ========================================================== */

/* ==========================
   CSS Variables
========================== */

:root{

    --primary-color:#d50000;
    --secondary-color:#111827;

    --white:#ffffff;
    --black:#000000;

    --body-bg:#f5f5f5;
    --text-color:#222222;
    --border-color:#e5e5e5;

    --container-width:1200px;

    --transition:all .3s ease;

    --radius:8px;

}

/* ==========================
   Reset
========================== */

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

/* ==========================
   HTML
========================== */

html{

    scroll-behavior:smooth;

}

/* ==========================
   Body
========================== */

body{

    font-family:Arial, Helvetica, sans-serif;

    font-size:16px;

    line-height:1.7;

    background:var(--body-bg);

    color:var(--text-color);

}

/* ==========================
   Links
========================== */

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}

/* ==========================
   Images
========================== */

img{

    max-width:100%;

    height:auto;

    display:block;

}

/* ==========================
   Lists
========================== */

ul,
ol{

    list-style:none;

}

/* ==========================
   Container
========================== */

.container{

    width:100%;

    max-width:var(--container-width);

    margin:0 auto;

    padding:0 15px;

}

/* ==========================
   Accessibility
========================== */

.screen-reader-text{

    position:absolute;

    width:1px;

    height:1px;

    padding:0;

    margin:-1px;

    overflow:hidden;

    clip:rect(0,0,0,0);

    white-space:nowrap;

    border:0;

}

/* ==========================
   WordPress Alignment
========================== */

.alignleft{

    float:left;

    margin-right:20px;

}

.alignright{

    float:right;

    margin-left:20px;

}

.aligncenter{

    display:block;

    margin:20px auto;

}

/* ==========================
   WordPress Captions
========================== */

.wp-caption{

    max-width:100%;

}

.wp-caption-text{

    font-size:14px;

    text-align:center;

    margin-top:8px;

}

/* ==========================
   Clearfix
========================== */

.clearfix::after{

    content:"";

    display:block;

    clear:both;

}