.category-tabs-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.category-tabs-column,
.category-content-column {
  flex: 1;
  min-width: 300px; /* Adjust as needed */
}
.category-content-column {
  display: flex;
  flex-direction: column;
}
.category-content-wrapper {
  background-color: #d9d9d9;
  z-index: 5;
  flex: 1;
  border-radius: 30px;
}

.category-tabs-column h3,
.category-content-column h3 {
  margin-top: 0;
  font-weight: bold;
  font-size: 24px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.category-tabs-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-tab-item {
  padding: 18px 18px;
  cursor: pointer;
  /* border: 1px solid transparent; */
  /* border-bottom: 1px solid #eee9de; */
  transition: background-color 0.3s, border-left-color 0.3s;
  border-radius: 30px;
}

.category-tab-item:hover {
  background-color: #f9f9f9;
}

.category-tab-item.active {
  font-weight: bold;
  background-color: #d9d9d9;
  /* box-shadow: 50px 0px #d9d9d9; */
}

.category-content-pane {
  display: none;
  padding: 24px;
  /* border: 1px solid #eee; */
  /* border-radius: 3px; */
}

.category-content-pane.active {
  display: block;
}

.description-label {
  font-weight: bold;
  margin-bottom: 5px;
}

.post-excerpt {
  margin-bottom: 15px;
}

.cta-link {
  text-decoration: none;
  font-weight: bold;
  color: #bf4624;
}

.cta-link:hover {
  text-decoration: underline;
}

@media screen and (min-width: 767px) {
  .category-tab-item.active {
    box-shadow: 100px 0px #d9d9d9;
  }
}
