/* search bar */



.search-box {
    position: relative;
    width: 500px;
}

.search-box input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #1e293b;
    color: #fff;
}

.search-box input:focus {
    box-shadow: 0 0 15px rgba(56,189,248,0.6);
}

.results {
    list-style: none;
    padding: 0;
    margin-top: 8px;
    background: #020617;
    border-radius: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.results.show {
    max-height: 250px;
}

.results li a {
    display: block;
    padding: 12px 16px;
    color: #e5e7eb;
    text-decoration: none;
    transition: background 0.3s;
}

.results li a:hover {
    background: #1e293b;
}
/*  */



/* post card */

    article {
      background: #ffffff;
      width: 320px;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    article h2 {
      margin-top: 0;
      margin-bottom: 10px;
    }

    article p {
      color: #555;
      margin-bottom: 20px;
    }

    .article-btn {
      display: inline-block;
      text-decoration: none;
      background: #e60000;
      color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: bold;
    }

    .article-btn:hover {
      background: #b30000;
    }

/* post card */

@media(max-width:768px){
     .sidebar{background-color:#111;}
    .search-box {
  width: 250px;
}
}

/* footer */
a.footer-a{
  color: rgb(1, 106, 175); 
  text-decoration: none;
}