.section-header-1 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      /* margin-bottom: 1rem; */	  
    }

    .section-header-1 h2 {
      font-size: 2rem;
      margin: 0;
    }

    .section-header-1 a {
      color: #cfd8e2;
      text-decoration: none;
      font-size: 1rem;
      border-bottom: 1px solid #cfd8e2;
    }

    
	.cards-wrapper {
	  width: calc(100% - 40px); /* 20px margin on left + 20px on right = 40px */
	  margin: 0 20px;            /* top/bottom 0, left/right 20px */
	  padding: 0 20px;
	  box-sizing: border-box;
	  background-color: #141414;
	}
	
	.cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
	  /* margin:20px; */
	  padding:20px;
	  background-color:#141414;
    }

    .card-new {
      position: relative;
      overflow: hidden;
      border-radius: 5px;
      height: 400px;
      display: flex;
      align-items: flex-end;
      background-size: cover;
      background-position: center;
      transition: transform 0.3s ease;
	  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2); /* subtle glow */
    }

    .card-overlay {
      background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
      padding: 1.5rem;
      width: 100%;
    }

    .tag {
      background: white;
      color: black;
      padding: 0.3rem 0.8rem;
      font-size: 0.9rem;
      border-radius: 10px;
      display: inline-block;
      margin-bottom: 0.8rem;
	  font-weight:bold;
    }

    .card-title {
      font-size: 1rem;
      margin: 0 0 0.5rem 0;
	  color:white;
	  font-weight:normal;
    }

    .read-more {
      display: flex;
      align-items: center;
      font-size: 0.9rem;
      color: white;
      text-transform: uppercase;
      letter-spacing: 0.05em;
	  text-decoration:none;
    }

    .read-more::before {
      content: "\1F4D6"; /* book icon */
      margin-right: 0.5rem;
	  text-decoration:none;
    }
	
	.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
   margin-top: 20px;
  margin-right: 20px;
}

.view-all-btn:hover {
  background-color: #0056b3;
}

.arrow {
  font-size: 1.2rem;
}
