/*
 Theme Name: NewsPortal Child
 Theme URI: https://example.com/
 Description: Fixed Child theme for NewsPortal with boxed layout, responsive fixes, and demo-like styling.
 Author: Custom
 Template: newsportal-clone
 Version: 1.1
*/

/* Import parent theme CSS */
@import url("../newsportal-clone/style.css");

/* Boxed layout */
body {
  background: #f5f5f5;
}
.site-container {
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Breaking news bar */
.breaking-news {
  background: #d32f2f;
  color: #fff;
  font-weight: bold;
  padding: 6px 12px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .site-container {
    padding: 10px;
  }
  .breaking-news {
    font-size: 14px;
  }
  .site-header .logo img {
    max-width: 180px;
  }
}

/* Sidebar widgets */
.sidebar .widget {
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

/* Footer */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 20px;
  text-align: center;
}
.site-footer a { color: #fff; }
