/* Category Section Styles */
.category-section {
    margin-bottom: 40px;
    border-top: none;
    border-left: none;
    background-color: white;
    padding: 17px 19px;
    box-shadow: 0 0 8px #D5D0C0;
    border-radius: 10px;
}
.news-title-category {
    font-size: 20px;
    font-weight: 700;
    color: #1f305a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title-category:hover {
    color: #f26f33;
}

.category-header, .news-title-category {
  margin: 10px 0px;
}

.category-header h2 {
  color: #f56d1f;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* News Item */
.main-news {
  margin: 20px 0px 0px 0px;
  overflow: hidden; 
  line-height: 1.6;
}


/* Image Container - Float left */
.news-image-container {
  float: left;
  width: 165px;
  margin-right: 15px;
  position: relative;
}

.news-image-container {
  margin-bottom: 10px;
  cursor: pointer;
}

.news-image {
    width: 100%;
    height: 115px !important;
    display: block;
    border-radius: 10px;
    object-fit: cover !important;
}

.news-description p {
    text-align: justify;
    line-height: 1.59375;
    font-size: 16px;
    margin: 15px 0px;
    color: rgb(0, 0, 0);
}


@media (max-width: 500px) {
  .category-section {
    margin-bottom: 20px;
  }
  
  .category-header h2 {
    font-size: 14px;
  }

  .news-title-category {
    font-size: 18px;
  }

  .news-description p {
    font-size: 14px;
  }
}