/*
Theme Name: V54 Auto Blog Empire
*/

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

body{
  font-family: Arial, sans-serif;
  background:#f1f1f1;
  color:#222;
  line-height:1.6;
}

/* MAIN WRAPPER */
#page{
  max-width:1100px;
  margin:20px auto;
  background:#fff;
  border-radius:6px;
  overflow:hidden;
}

/* HEADER */
.site-header{
  padding:20px;
  border-bottom:2px solid #eee;
  text-align:center;
}

.site-title{
  font-size:28px;
  font-weight:bold;
}

/* 🔴 BREAKING NEWS (MODERN TICKER) */
.ticker-wrap{
  background:#d40000;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.ticker-label{
  background:#000;
  color:#fff;
  padding:10px 12px;
  font-weight:bold;
  white-space:nowrap;
}

.ticker{
  display:flex;
  white-space:nowrap;
  animation:scroll 25s linear infinite;
}

.ticker a{
  color:#fff;
  text-decoration:none;
  margin:0 30px;
  font-size:14px;
}

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

@keyframes scroll{
  from{ transform:translateX(100%); }
  to{ transform:translateX(-100%); }
}

/* 🟨 NAV MENU */
.main-nav{
  background:#111;
  position:sticky;
  top:0;
  z-index:999;
}

.nav-menu{
  display:flex;
  justify-content:center;
  list-style:none;
  flex-wrap:wrap;
}

.nav-menu li{
  margin:0;
}

.nav-menu a{
  display:block;
  padding:12px 15px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

.nav-menu a:hover{
  background:#0073aa;
}

/* CONTAINER */
.container{
  padding:20px;
}

/* SECTION TITLE */
.section-title{
  font-size:22px;
  margin-bottom:15px;
  border-left:4px solid #0073aa;
  padding-left:10px;
}

/* 🔴 TOP FEATURE SECTION */
.top-news{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:20px;
  margin-bottom:30px;
}

/* FEATURED LEFT */
.featured-left img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:5px;
}

.featured-left h2{
  font-size:22px;
  margin-top:10px;
  line-height:1.4;
}

.featured-left a{
  text-decoration:none;
  color:#111;
}

.featured-left a:hover{
  color:#0073aa;
}

/* RIGHT SIDE LIST */
.featured-right .side-news{
  border-bottom:1px solid #eee;
  padding:10px 0;
  font-size:15px;
}

.featured-right a{
  text-decoration:none;
  color:#111;
}

.featured-right a:hover{
  color:#0073aa;
}

/* 🟦 NEWS GRID (AUTO RESPONSIVE) */
.news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:20px;
}

/* CARD */
.news-item{
  border:1px solid #eee;
  padding:10px;
  border-radius:5px;
  background:#fff;
  transition:0.3s;
}

.news-item:hover{
  box-shadow:0 0 10px rgba(0,0,0,0.1);
}

/* IMAGE */
.thumb img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:4px;
}

/* TITLE */
.news-title{
  font-size:16px;
  margin:10px 0;
  line-height:1.4;
}

.news-title a{
  text-decoration:none;
  color:#111;
}

.news-title a:hover{
  color:#0073aa;
}

/* EXCERPT */
.news-excerpt{
  font-size:13px;
  color:#555;
}

/* FOOTER */
.site-footer{
  text-align:center;
  padding:20px;
  border-top:1px solid #eee;
  font-size:14px;
  color:#777;
}

/* 📱 TABLET */
@media(max-width:1024px){
  .news-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* 📱 MOBILE */
@media(max-width:768px){
  .top-news{
    grid-template-columns:1fr;
  }

  .news-grid{
    grid-template-columns:1fr;
  }

  .nav-menu{
    flex-direction:column;
    align-items:center;
  }
}