main {
  margin-top: -70px;
}

.news-events-hero {
  padding-top: 50px !important;
}

.news-events-hero {
  position: relative;
  background-image: url("/NGO/public/image/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.news-events-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-orage);
  z-index: 1;
}

.news-events-hero-content {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  color: #fff;
}

.news-events-hero h1 {
  font-size: clamp(24px, 4.5vw, 42px); /* Match homepage hero */
  margin-bottom: 0px;
  color: #fff;
  font-family: "Mada", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.news-events-hero p {
  font-size: clamp(15px, 2vw, 17px); /* Match homepage body */
  font-family: "Mada", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.news-list {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.news-item {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    gap: 35px;
}

.news-item-img {
    flex: 0 0 576px;
    height: 320px;
    overflow: hidden;
}

.news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-item-img img {
    transform: scale(1.1);
}

.news-item-content {
    padding-left: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item-content h3 {
    font-size: clamp(26px, 4vw, 36px); /* Match section title */
    margin-bottom: 15px;
    color: var(--primary-green);
    transition: color 0.3s ease;
    font-family: "Mada", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.3;
}

.news-item-content h3:hover {
    color: var(--secondary-orage);
    cursor: pointer;
}

.news-item-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: clamp(15px, 2vw, 17px); /* Match homepage body */
    font-family: "Mada", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.news-meta{
    margin-bottom: 3px;
    display: flex;
    gap: 20px;
}

.news-item-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.news-item-date {
    color: var(--primary-green);
    font-size: clamp(13px, 1.8vw, 15px); /* Match homepage small */
    font-weight: 600;
    margin-right: 20px;
    font-family: "Mada", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.read-more {
    display: inline-block;
    color: var(--secondary-orage);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(15px, 2vw, 17px); /* Match homepage body */
    font-family: "Mada", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.read-more:hover {
    color: var(--primary-green);
}

@media (max-width: 992px) {
    .news-item {
        flex-direction: column;
    }

    .news-item-img {
        flex: 0 0 360px;
        margin-bottom: 20px;
    }

    .news-item-content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .news-item-img {
        flex: 0 0 250px;
    }
}
