.container {
  max-width: 1150px;
  margin: auto;
  padding: 15px;
}

.ipl-live {
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
}

.main-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.card, .post, .widget {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
}

.ad-box {
  background: #f1f5f9;
  text-align: center;
  padding: 10px;
  margin: 15px 0;
}

@media(max-width:768px){
  .grid { grid-template-columns: repeat(2,1fr); }
  .main-layout { grid-template-columns: 1fr; }
}
.hero-post img {
  width: 100%;
  border-radius: 12px;
}

.hero-post h1 {
  font-size: 28px;
  margin-top: 10px;
}

.category-block {
  margin: 30px 0;
}

.category-block h2 {
  margin-bottom: 15px;
}
.single-post {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.single-post h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.featured-image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.content p {
  line-height: 1.7;
  margin-bottom: 15px;
}