.category-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 75px;
}


.category-main-content {
  flex: 3;
  width: 100%;
}

.category-sidebar {
  flex: 1;
  min-width: 250px;
}

.category-title {
  font-size: 28px;
  font-weight: bold;
  border-left: 5px solid #00AEEF;
  padding-left: 15px;
  margin-bottom: 30px;
}


.category-post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Always 2 columns */
  gap: 30px;
}

.category-post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.category-post-card:hover {
  transform: translateY(-5px);
}

.category-post-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.category-post-content {
  padding: 20px;
}

.category-post-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.category-post-title a {
  text-decoration: none;
  color: #000;
}

.category-post-excerpt {
  font-size: 15px;
  color: #333;
}

.category-read-more {
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #0073aa;
}

.category-read-more:hover {
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .category-container {
    flex-direction: column;
  }

  .category-main-content,
  .sidebar {
    width: 100%;
  }

  .category-category-post-grid {
    grid-template-columns: 1fr;
  }
}

/* Sidebar */
.sidebar {
    flex: 0;
    padding: 20px;
    padding-top: 60px;
}

.widget h3{
    font-size: 22px;
    font-weight: bold;
}

.widget {
    background: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-box input[type="search"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

/* Calendly */
.meeting-widget h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

/* Lists in widgets */
.widget ul {
    list-style: none;
    padding-left: 0;
}

.widget ul li {
    padding: 5px 0;
    line-height: 1.5;
    
}

.widget ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.widget ul li a:hover {
    text-decoration: underline;
}

.category-list {
    padding: 0;
    margin: 0;
}



.category-list li a {
    display: inline-block;
    font-weight: bold;
    color: #000; /* solid black text */
    text-decoration: none;
    transition: color 0.3s ease;
}


.category-list li a:hover {
    background-position: 100% 50%;
    transform: scale(1.1);
}



.category-list li {
    list-style: none;
    padding: 8px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.category-list i.fa-folder {
  background: linear-gradient(45deg, #2d53ba, #c12390 116%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 15px;
  font-size: 14px;
  display: inline-block; /* Ensure the background-clip works properly */
}


/* Underline the link */
.category-list a.category-link {
    text-decoration: underline;
    color: #333;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    padding: 6px 0;
    font-size: 16px;
}

.recent-posts-list .post-number {
    font-weight: bold;
    margin-right: 5px;
    color: #000;
}



/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .blog-content,
    .sidebar {
        flex: none;
        width: 100%;
    }
}

/*sidebar end*/
