.article {
  background-color: #163C05;
  color: white;
}

.article .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  background: transparent;
}

.article .card-title {
  font-size: large;
  line-height: 1.5;
}

.article .card img {
  border-radius: 15px;
  object-fit: cover;
  height: 250px;
  width: 100%;
}

.article .tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: white;
  color: black;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}


.article .text-muted {
  color: #bfbfbf !important;
  font-size: 0.85rem;
  font-weight: 400;
}

.article .content p {
  margin-bottom: 1rem;
}

.article .content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}


@media (max-width: 767.98px) {
  .article .card img {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .article h1 {
    font-size: 1.5rem;
  }

  .article .card img {
    height: 180px;
  }

  .article h6.card-title {
    font-size: 0.95rem;
  }
}