/* ====== Section: New Update ====== */
.new-update {
      background: linear-gradient(0deg, #f3ebf65c, #e2beed) !important; /* Light background color */
}

/* Keeps space for a fixed header */
.space-header {
  height: 61px;
}

/* Main heading style */
.new-update h2 {
  margin-bottom: 32px; /* Spacing below heading */
}

/* Divider line below heading */
.divider-line-news {
  width: 100%;
  height: 2px;
  opacity: 0.5;
  margin-bottom: 24px; /* Spacing after divider */
}

.card-news {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  background-color: #fff;
  border-radius: 20px;
  transition: 0.5s;
  justify-content: space-between;
}

.card-news:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.card-news h3 {
  margin-bottom: 16px;
  font-size: 20px; 
}
.w-100 p {
    font-size: 16px !important;
}

.card-news .divider {
  border-top: 1px solid #f0f0f0;
  margin: 24px 0;
  width: 100%;
}

.card-news .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.card-news .social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.card-news .social-icons img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.card-news .footer span {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%; /* 28px */
  color: #000; 
}

p {
  font-size: 16px;
}

.card-news .social-icons a:hover {
  color: #0077b5; /* LinkedIn blue as hover */
}

.card-news .read-more {
  margin-top: 24px;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 36px;
  width: 126px;
  color: #fff;
  background: var(--color-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--color-hover-text);
}

.card-news .read-more img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.card-news .read-more:hover {
  background-color: var(--color-hover-bg);
  color: var(--color-hover-text);
}
.grid-news {
  display: grid;
  grid-template-columns: auto auto;
  gap: 40px 24px;
}
/* ====== Tablet Screens (≤1024px) ====== */
@media (max-width: 1024px) {
  .new-update h1 {
    margin-bottom: 28px; /* Reduced spacing below heading */
    /* font-size: 28px; */
  }

  .grid-news {
    grid-template-columns: auto;
    gap: 48px;
  }
  .contact-form img {
    padding: 0 0 24px 0;
  }

  /* Main heading style */
  .new-update h2 {
    margin-bottom: 24px; /* Spacing below heading */
  }
}

/* ====== Mobile Screens (≤600px) ====== */
@media (max-width: 600px) {
  .new-update {
    padding: 40px 0 40px; /* Smaller top/bottom padding */
  }
  .new-update h1 {
    margin-bottom: 24px; /* Tight spacing for mobile */
    /* font-size: 24px; */
  }
  .card-news {
    padding: 24px;
  }

  .card-news .read-more {
    font-size: 16px;
  }

  .grid-contact .w-100 {
    margin-bottom: 0 !important;
  }

  /* .card-news h2 {
    font-size: 24px;
  } */

  .card-news .divider {
    border-top: 1px solid #f0f0f0;
    margin: 24px 0;
    width: 100%;
  }
  .card-news .footer {
    display: flex;
    align-items: self-start;
    width: 100%;
    flex-direction: column;
    gap: 24px;
  }
  .grid-news {
    gap: 24px 0;
  }
}
/* @media (min-width: 1025px) and (max-width: 1280px) {
  .card-news h2 {
    font-size: 28px !important;
  }
} */
