/* RESET */
body {
  background: #eee;
  font-family: 'Noto Serif Bengali', serif;
  margin: 0;
}

/* HIDE WORDPRESS */
#wpadminbar,
header,
footer {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

/* MAIN CONTAINER */
.mep-newspaper {
  width: 1000px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* GRID SYSTEM */
.mep-newspaper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: auto;
  gap: 15px;
}

/* HEADLINE (FULL WIDTH) */
.headline {
  grid-column: 1 / -1;
}

.headline img {
  width: 100%;
  height: auto;
}

.headline h2 {
  font-size: 28px;
  margin: 10px 0;
  border-bottom: 2px solid #000;
}

/* SIDE NEWS */
.side-news {
  display: block;
}

.side-news img {
  width: 100%;
  height: auto;
}

.side-news h4 {
  font-size: 16px;
  margin: 5px 0;
}

/* SMALL NEWS GRID (IMPORTANT FIX 🔥) */
.small-news {
  grid-column: span 1;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.small-news h5 {
  font-size: 14px;
  margin: 5px 0;
}

.small-news p {
  font-size: 13px;
  text-align: justify;
  line-height: 1.5;
}

/* REMOVE LINK STYLE */
a {
  text-decoration: none;
  color: #000;
}

/* IMAGE FIX */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE (Mobile) */
@media (max-width: 768px) {
  .mep-newspaper {
    width: 95%;
    grid-template-columns: 1fr;
  }

  .headline {
    grid-column: span 1;
  }
}