.category-post-list-widget {
  padding: 0;
  color: white;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  --border-radius: 30px;
}

.category-post-list-widget p,
.category-post-list-widget ul {
  /* list-style: none; */
  padding: 0;
  margin: 0;
  background: #132230;
  padding: 24px;
  /* border-top-right-radius: var(--border-radius); */
  border-radius: 0 var(--border-radius) var(--border-radius)
    var(--border-radius);
  flex: 1;
}

.category-post-list-widget ul li {
  margin-bottom: 10px;
  margin-left: 24px;
}

.category-post-list-widget ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-size: 16px;
  transition: color 0.3s;
}

.category-post-list-widget ul li a:hover {
  color: #bf4624; /* WordPress blue */
}

.category-title path,
.category-title i,
.category-title svg {
  margin-right: 8px;
  fill: #bf4624; /* Icon color */
  color: #bf4624; /* Icon color */
  width: 30px;
  height: 30px;
}

/*  */
.category-header {
  display: flex;
}

h3.category-title {
  background: #132230;
  flex: 1;
  padding: 0 24px;
  border-top-right-radius: var(--border-radius);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.inverted-corners-box {
  content: "";
  /* position: absolute; */
  top: 0;
  right: 0;
  display: block;
  background: #f9f2e2;
  border-bottom-left-radius: var(--border-radius);
  height: 88px;
  width: 30%;
  /* flex: 1; */
  position: relative;
  z-index: 9;
  box-shadow: -14px var(--border-radius) 0 -10px #132230;
}

/* .inverted-corners-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #132230;
  z-index: -1;
  display: block;
  width: 50%;
  height: 50%;
} */
