/*
Theme Name: Custom News Theme
Theme URI: http://example.com/custom-news-theme/
Author: Your Name
Author URI: http://example.com
Description: A custom news theme for WordPress
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-news-theme
Tags: news, responsive, custom-colors, custom-header, custom-menu, featured-images, flexible-header, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header styles */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.site-title {
  font-size: 2rem;
  font-weight: bold;
}

.site-description {
  font-size: 1rem;
  color: #666;
}

/* Navigation styles */
.main-navigation {
  background-color: #333;
}

.main-navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.main-navigation li {
  padding: 1rem;
}

.main-navigation a {
  color: #fff;
}

/* Content area styles */
.site-content {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
}

.content-area {
  flex: 2;
  background-color: #fff;
  padding: 1rem;
  margin-right: 2rem;
}

.widget-area {
  flex: 1;
  background-color: #fff;
  padding: 1rem;
}

/* Footer styles */
.site-footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .site-content {
    flex-direction: column;
  }

  .content-area {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

