/*
Theme Name: businessNews
Author: Antigravity
Description: A business news theme based on reference design.
Version: 1.0
*/

:root {
    --primary-color: #e74c3c;
    /* Redish color from the image */
    --secondary-color: #333;
    --text-color: #444;
    --bg-color: #f4f4f4;
    --white: #fff;
    --border-color: #ddd;
    --container-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background-color: #333;
    color: #fff;
    height: 50px;
    line-height: 50px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-branding {
    display: flex;
    align-items: center;
}

.top-navigation .top-menu {
    display: flex;
    gap: 20px;
}

.top-navigation .top-menu li {
    position: relative;
}

.top-navigation .top-menu li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
    display: block;
    padding: 0 10px;
}

.top-navigation .top-menu li a:hover {
    color: #fff;
}

/* Dropdown Menu */
.top-navigation .top-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    min-width: 150px;
    display: none;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.top-navigation .top-menu li:hover>.sub-menu {
    display: block;
}

.top-navigation .top-menu .sub-menu li {
    border-bottom: 1px solid #444;
}

.top-navigation .top-menu .sub-menu li:last-child {
    border-bottom: none;
}

.top-navigation .top-menu .sub-menu li a {
    padding: 10px 15px;
    color: #ccc;
}

.top-navigation .top-menu .sub-menu li a:hover {
    background-color: #444;
    color: #fff;
}

.top-actions a {
    color: #ccc;
    margin-left: 15px;
    font-size: 14px;
}

/* Main Layout */
.site-main {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.content-area {
    flex: 3;
    /* Wider content area */
}

.sidebar-area {
    flex: 1;
    min-width: 300px;
}

/* Modules */
.module-header {
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.post-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-thumbnail {
    width: 200px;
    height: 120px;
    background: #ddd;
    flex-shrink: 0;
}

/*
Theme Name: businessNews
Author: Antigravity
Description: A business news theme based on reference design.
Version: 1.0
*/

:root {
    --primary-color: #e74c3c;
    /* Redish color from the image */
    --secondary-color: #333;
    --text-color: #444;
    --bg-color: #f4f4f4;
    --white: #fff;
    --border-color: #ddd;
    --container-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background-color: #333;
    color: #fff;
    height: 50px;
    line-height: 50px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-branding {
    display: flex;
    align-items: center;
}

.top-navigation .top-menu {
    display: flex;
    gap: 20px;
}

.top-navigation .top-menu li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
}

.top-navigation .top-menu li a:hover {
    color: #fff;
}

.top-actions a {
    color: #ccc;
    margin-left: 15px;
    font-size: 14px;
}

/* Main Layout */
.site-main {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.content-area {
    flex: 3;
    /* Wider content area */
}

.sidebar-area {
    flex: 1;
    min-width: 300px;
}

/* Modules */
.module-header {
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.post-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-thumbnail {
    width: 200px;
    height: 120px;
    background: transparent;
    flex-shrink: 0;
}

.post-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 12px;
    color: #999;
}

/* Pagination */
.pagination-area .nav-links {
    display: flex;
    gap: 5px;
}

.pagination-area .page-numbers {
    display: inline-block;
    padding: 5px 12px;
    background: #fff;
    border: 1px solid #eee;
    color: #666;
    font-size: 12px;
}

.pagination-area .page-numbers.current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination-area .page-numbers:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Footer & Friend Links */
.friend-links a:hover {
    color: var(--primary-color);
}

/* Modules */
.module-header {
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.post-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-thumbnail {
    width: 200px;
    height: 120px;
    background: #ddd;
    flex-shrink: 0;
}

/*
Theme Name: businessNews
Author: Antigravity
Description: A business news theme based on reference design.
Version: 1.0
*/

:root {
    --primary-color: #e74c3c;
    /* Redish color from the image */
    --secondary-color: #333;
    --text-color: #444;
    --bg-color: #f4f4f4;
    --white: #fff;
    --border-color: #ddd;
    --container-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background-color: #333;
    color: #fff;
    height: 50px;
    line-height: 50px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-branding {
    display: flex;
    align-items: center;
}

.top-navigation .top-menu {
    display: flex;
    gap: 20px;
}

.top-navigation .top-menu li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
}

.top-navigation .top-menu li a:hover {
    color: #fff;
}

.top-actions a {
    color: #ccc;
    margin-left: 15px;
    font-size: 14px;
}

/* Main Layout */
.site-main {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.content-area {
    flex: 3;
    /* Wider content area */
}

.sidebar-area {
    flex: 1;
    min-width: 300px;
}

/* Modules */
.module-header {
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.post-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-thumbnail {
    width: 200px;
    height: 120px;
    background: #ddd;
    flex-shrink: 0;
}

.post-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 12px;
    color: #999;
}

/* Pagination */
.pagination-area .nav-links {
    display: flex;
    gap: 5px;
}

.pagination-area .page-numbers {
    display: inline-block;
    padding: 5px 12px;
    background: #fff;
    border: 1px solid #eee;
    color: #666;
    font-size: 12px;
}

.pagination-area .page-numbers.current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination-area .page-numbers:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Footer & Friend Links */
.friend-links a:hover {
    color: var(--primary-color);
}

.site-footer a {
    color: #ccc;
}

.site-footer a:hover {
    color: #fff;
}

/* Slider */
.main-slider .slide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.main-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    display: flex;
    gap: 5px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    --primary-color: #e74c3c;
    /* Redish color from the image */
    --secondary-color: #333;
    --text-color: #444;
    --bg-color: #f4f4f4;
    --white: #fff;
    --border-color: #ddd;
    --container-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background-color: #333;
    color: #fff;
    height: 50px;
    line-height: 50px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-branding {
    display: flex;
    align-items: center;
}

.top-navigation .top-menu {
    display: flex;
    gap: 20px;
}

.top-navigation .top-menu li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
}

.top-navigation .top-menu li a:hover {
    color: #fff;
}

.top-actions a {
    color: #ccc;
    margin-left: 15px;
    font-size: 14px;
}

/* Main Layout */
.site-main {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.content-area {
    flex: 3;
    /* Wider content area */
}

.sidebar-area {
    flex: 1;
    min-width: 300px;
}

/* Modules */
.module-header {
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.post-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-thumbnail {
    width: 200px;
    height: 120px;
    background: #ddd;
    flex-shrink: 0;
}

.post-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 12px;
    color: #999;
}

/* Pagination */
.pagination-area .nav-links {
    display: flex;
    gap: 5px;
}

.pagination-area .page-numbers {
    display: inline-block;
    padding: 5px 12px;
    background: #fff;
    border: 1px solid #eee;
    color: #666;
    font-size: 12px;
}

.pagination-area .page-numbers.current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination-area .page-numbers:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Footer & Friend Links */
.friend-links a:hover {
    color: var(--primary-color);
}

.site-footer a {
    color: #ccc;
}

.site-footer a:hover {
    color: #fff;
}

/* Slider */
.main-slider .slide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.main-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    display: flex;
    gap: 5px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.slider-dot.active {
    background: #fff;
}

/* Tags & Categories */
.tagcloud a {
    display: inline-block;
    background: #f4f4f4;
    padding: 5px 10px;
    margin: 0 5px 5px 0;
    font-size: 12px !important;
    color: #666;
    border-radius: 3px;
    transition: background 0.3s;
}

.tagcloud a:hover {
    background: var(--primary-color);
    color: #fff;
}

.cat-list li {
    margin-bottom: 8px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.cat-list li a {
    color: #444;
}

.cat-list li a:hover {
    color: var(--primary-color);
}

/* Rounded Corners */
.widget,
.post-list-item,
.single-post,
.slide,
.thumb-item,
.related-item,
.comments-area,
.post-thumbnail,
.related-thumb,
.search-box-area,
.search-field,
.search-submit,
input,
textarea,
button,
select,
img {
    border-radius: 0.5rem;
}

/* User Menu */
.user-menu {
    display: flex;
    gap: 15px;
    margin-left: 20px;
    list-style: none;
    padding: 0;
}

.user-menu li a {
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.user-menu li a:hover {
    color: var(--primary-color);
}

/* Entry Content Styling */
.entry-content {
    font-family: 'Georgia', serif;
    color: #333;
}

.entry-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 18px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #222;
}

.entry-content h2 {
    font-size: 24px;
}

.entry-content h3 {
    font-size: 20px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    margin-left: 20px;
    line-height: 1.8;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
    padding-left: 20px;
    font-style: italic;
    color: #666;
}

/* Entry Footer Meta */
.entry-footer-meta {
    font-size: 14px;
    color: #666;
}

.entry-footer-meta a {
    color: var(--primary-color);
    text-decoration: none;
}

.entry-footer-meta a:hover {
    text-decoration: underline;
}

.entry-footer-meta .cat-links,
.entry-footer-meta .tags-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

/* Comments Area */
.comments-area {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    margin-bottom: 30px;
}

/* Comment Form Refinements */
.comment-respond {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    margin-top: 0;
}

.comment-reply-title {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    color: #333;
    font-weight: bold;
}

.logged-in-as {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.logged-in-as a {
    color: var(--primary-color);
    text-decoration: none;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

/* Comment List */
.comments-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.comment-list {
    margin-bottom: 30px;
}

.comment-list .comment {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.comment-content {
    line-height: 1.6;
}

.reply {
    margin-top: 10px;
}

.reply a {
    font-size: 12px;
    color: var(--primary-color);
    text-decoration: none;
}

.reply a:hover {
    text-decoration: underline;
}

.comment-form {
    display: block;
}

.comment-form-comment {
    margin-bottom: 15px;
}

.comment-form-comment textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    min-height: 120px;
    box-shadow: none;
    resize: vertical;
}

.comment-form-comment textarea:focus {
    border-color: #ccc;
    outline: none;
}

.form-submit {
    text-align: right;
    margin-top: 10px;
}

.comment-form .submit {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
}

.comment-form .submit:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Unified Search Box */
.search-form {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    overflow: hidden;
}

.search-form .search-field {
    border: none !important;
    border-radius: 0 !important;
    margin: 0;
    flex: 1;
}

.search-form .search-submit {
    border: none !important;
    border-radius: 0 !important;
    margin: 0;
}