
/*--------------------------------------------------------------
# Blog page
--------------------------------------------------------------*/

.blog-section {
    background: #f9f9f9;
  }
  
  .blog-post {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .blog-post img {
    border-radius: 12px;
    max-height: 350px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 15px;
  }
  
  .blog-post h3 {
    font-size: 1.6rem;
    color: #222;
    transition: 0.3s;
  }
  
  .blog-post h3:hover {
    color: #308e87;
  }
  
  .blog-post p {
    line-height: 1.6;
    color: #555;
  }
  
  .blog-post .btn {
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s;
  }
  
  .blog-post .btn:hover {
    background: #222;
    color: #fff;
  }
  
  /* Pagination */
  .pagination .page-link {
    border: none;
    color: #308e87;
    font-weight: 500;
    border-radius: 50px;
    padding: 8px 14px;
    margin: 0 3px;
    transition: 0.3s;
  }
  
  .pagination .page-link:hover {
    background: #308e87;
    color: #fff;
  }
  
  .pagination .active .page-link {
    background: #308e87 !important;
    color: #fff !important;
  }
  
  /* Sidebar */
  .sidebar-widget {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }
  
  .sidebar-widget h5 {
    font-size: 1.1rem;
    font-weight: 600;
    border-left: 4px solid #308e87;
    padding-left: 10px;
    margin-bottom: 20px;
    color: #222;
  }
  
  .sidebar-widget ul li {
    margin-bottom: 10px;
  }
  
  .sidebar-widget ul li a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .sidebar-widget ul li a:hover {
    color: #308e87;
    padding-left: 5px;
  }
  
  /* Sidebar Search */
  .sidebar-widget .input-group input {
    border-radius: 30px 0 0 30px;
    border: 1px solid #ddd;
  }
  
  .sidebar-widget .input-group button {
    border-radius: 0 30px 30px 0;
    background: #308e87;
    color: #fff;
    border: none;
    transition: 0.3s;
  }
  
  .sidebar-widget .input-group button:hover {
    background: #222;
  }
  
  /* Tags */
  .tags .badge {
    margin: 5px;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13px;
    background: #f1f1f1;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .tags .badge:hover {
    background: #308e87;
    color: #fff;
  }
  