.all-content-header {
  position: sticky;
  top: 78px;
  z-index: 1000;
  padding: 10px;
  background-color: #ffffff;
}

.all-content-header .title {
  display: flex;
  justify-content: center;
  font-family: "zilla_slabregular";
  font-size: 2rem;
  color: #33357d;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.content-card-link {
  color: inherit;
  display: block;
}

.content-card-link .content-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-width: 0.2rem;
  border-color: #eaeaea;
  border-style: solid;
  border-radius: 10px;
  background-color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 2.3rem;
  gap: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  height: 100%;
}
.content-card:hover {
  width: 81%;
  transition: all 0.1s ease-out;
}

.content-card-link .content-card .content-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: 80%;
  padding: 2rem;
}

.content-card-link .content-card .content-title {
  font-size: 2rem;
  color: #33357d;
  font-family: "zilla_slabsemibold";
  margin-top: 1.5rem;
}

.content-card-link .content-card .content-tags {
  display: flex;
  justify-content: start;
  gap: 1rem;
  flex-wrap: wrap;
}

.content-card-link .content-card .content-tags .tag {
  background-color: #e0aa55;
  color: #fdfcfc;
  font-family: "mulishsemibold";
  border-color: #e0aa55;
  border-width: 0.2rem;
  border-radius: 15px;
  padding: 5px 10px;
  opacity: 1;
  font-size: 1.3rem;
}

.content-card-link .content-card .content-author {
  font-family: "mulishbold";
  font-size: 1.5rem;
  display: inline;
}

.content-card-link .content-card .content-category {
  display: flex;
  align-items: start;
  padding: 2rem;
}

.sidebar-filters {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  width: 280px;
  padding: 2rem 1.5rem;
  font-family: "mulishregular", sans-serif;
  overflow-y: auto;
  max-height: 90vh;
}

.filter-section {
  margin-bottom: 2rem;
  margin-top: 2rem;
  border-bottom: 0.5px solid #e0e0e0;
  padding-bottom: 1rem;
}

.filter-title-filter-by,
.filter-title-topic {
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #333;
  font-family: "mulishbold", sans-serif;
}

.filter-title-filter-by {
  font-size: 1.5rem;
}

.filter-title-topic {
  font-size: 1.2rem;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  /* color: #5B2E2E; */
}

.filter-list input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #d26f5d;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  background-color: white;
}

.filter-list input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 9px;
  border: solid #d26f5d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.content-layout {
  display: flex;
}
.main-content {
  flex-grow: 1;
}

.collapsible-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.dropdown-icon {
  transition: transform 0.3s ease-in-out;
}

.collapsible-header:not(.active) .dropdown-icon {
  transform: rotate(180deg);
}

.collapsible-content {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.spinner-ctr {
  text-align: center;
  padding: 20px 0;
}

.growing-loader {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  animation: spinner-grow 0.75s linear infinite;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

.filter-list label {
  cursor: pointer;
  user-select: none;
  flex: 1;
  font-size: 1.2rem;
}

.filter-list input[type="checkbox"]:checked + label {
  font-weight: 700;
  color: #000000;
}

#selected-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 80%;
  margin: 1rem auto 2rem;
  align-items: center;
}
.selected-filters .chip {
  background-color: #d26f5d;
  color: #fff;
  border-color: #d26f5d;
  font-family: "mulishsemibold";
  border-radius: 15px;
  padding: 4px 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}

.selected-filters .chip .remove-chip {
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
}
