.main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
  align-items: start; /* ðŸ”¥ INI KUNCINYA */
}

/* TABLET */
@media (min-width: 768px) {
  .main {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .main {
    grid-template-columns: 2fr 1fr;
  }
}


/* CONTENT GRID */
.content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.content,
.widget {
  width: 100%;
}

/* BIAR TIDAK OVERFLOW */
img {
  max-width: 100%;
  height: auto;
}

.article h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.article-meta {
  font-size: 12px;
  color: #777;
  margin-bottom: 15px;
}

.article-image {
  width: 100%;
  max-height: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.article h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #111;
}

.article p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.article ul,
.article ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.article li {
  margin-bottom: 8px;
}

.article-quote {
  margin: 20px 0;
  padding: 15px;
  background: #f9fafb;
  border-left: 4px solid #ff9900;
  font-style: italic;
}

.news-title a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
}

.news-title a:hover {
  color: #ff9900;
}

/* META PREMIUM */
.meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280; /* abu soft */
  margin-bottom: 10px;
  flex-wrap: wrap;
}

/* DATE */
.meta-date {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* AUTHOR */
.meta-author {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  color: #374151;
}

/* DOT */
.meta-dot {
  color: #d1d5db;
}

/* EXCERPT PREMIUM */
.excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-top: 5px;

  display: -webkit-box;
  -webkit-line-clamp: 2; /* batasi 2 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* HOVER EFFECT (BIAR HIDUP) */
.news-card:hover .excerpt {
  color: #111;
}

/* META HOVER */
.news-card:hover .meta-author {
  color: #ff9900;
}


/* TABLET */
@media (min-width: 768px) {
  .article h1 {
    font-size: 28px;
  }

  .article-image {
    max-height: 400px;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .article h1 {
    font-size: 32px;
  }
}