.heading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
  margin-top: 2rem;
  width: 100%;
}

.heading .section-heading {
  margin: 0 auto;
  text-align: center;
}


.view-more-btn {
  position: absolute;
  right: 50px;
  background-color: #457B9D;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}


.view-more-btn:hover {
  background-color: #2e5984;
}


.new-badge {
    top: 10px !important;
    left: 10px !important;
}


@media (max-width: 640px) {
  .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;            
    padding: 0 12px;        
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .heading .section-heading {
    margin: 0;
    text-align: center;
    font-size: 1.125rem;     
    line-height: 1.25;
  }

  .view-more-btn {
    position: static;    
    right: auto;
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 10px 16px;
  }
}
