:root {
  --insights-green:#4BDBC5;
  --insights-yellow: #FADD0B;
  --light-grey: #C4C4C4;
  --font-family-base:"Yellix";
  --card-default-bg: #FFFFFF;
  --card-hover-overlay: rgba(0, 0, 0, 0.9);
  --default-text-color: #333333;
  --hover-text-color: #FFFFFF;
}

[v-cloak] {
  display: none;
}

mark {
  background-color: var(--insights-green);
  color: #145214;
  padding: 0 2px;
  border-radius: 2px;
  font-weight: bold;
}

.fade-slide-enter-active, .fade-slide-leave-active {
  transition: all 0.3s ease;
  overflow: hidden;
}

.fade-slide-enter, .fade-slide-leave-to {
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.color-green {
  color: var(--insights-green);
}

.color-yellow {
  color: var(--insights-yellow);
}

.view-more-zone {
  display: flex;
  justify-content: start;
  align-items: center;
}
.view-more-zone svg {
  margin-left: 10px;
  margin-top: 10px;
}
.view-more-zone .view-more-btn {
  color: black;
  border: none;
  font-weight: 700;
  font-size: 48px;
  line-height: 75px;
  letter-spacing: 0;
  vertical-align: middle;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 10.5%;
  text-decoration-color: var(--insights-green);
  text-underline-offset: 10px;
}
.view-more-zone .view-more-btn span {
  text-decoration: none;
}
.view-more-zone .view-more-btn:hover {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 10.5%;
  color: black;
  text-decoration-color: var(--insights-green);
  background-color: white;
}

.insights-widget {
  font-family: "Yellix", sans-serif;
  margin-bottom: 20em;
}

.loading-zone {
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}

.insights-search-input .form-control {
  border: 1px solid var(--insights-green);
}
.insights-search-input .form-control::placeholder {
  color: var(--light-grey);
}
.insights-search-input .input-group-text {
  background-color: var(--insights-green);
  border-radius: 0;
  border: 1px solid var(--insights-green);
}

.child-category-label {
  border-radius: 0;
  border: 1px solid black;
}
.child-category-label.selected-background {
  background-color: var(--insights-yellow);
  border: 1px solid var(--insights-yellow);
  color: black;
}
.child-category-label .btn {
  padding: 8px 15px;
  min-width: 130px;
  background-color: transparent; /* Or default color, but should be transparent if label has bg */
  color: black;
  border-radius: 0;
  display: inline-block;
}
.child-category-label .btn-check:checked + .btn {
  color: black;
  border-color: var(--insights-yellow);
  font-weight: 800;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.selects-zone {
  display: flex;
  justify-content: start;
  gap: 50px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin; /* Makes the scrollbar thinner */
  scrollbar-color: #d5d5d5 white; /* Dark grey thumb, light grey track */
}
.selects-zone .btn {
  padding: 8px 15px;
  min-width: 130px;
  background-color: transparent; /* Or default color, but should be transparent if label has bg */
  color: black;
  border-radius: 0;
  display: inline-block;
}
.selects-zone .btn-check:checked + .btn {
  border-radius: 0;
  font-weight: 800;
  border: none;
}
.selects-zone .selected-categories {
  color: black;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.selects-zone .selected-categories i {
  padding-left: 5px;
}

.response-selected-zones {
  margin-top: 40px;
  display: flex;
  justify-content: start;
  gap: 40px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
  scrollbar-width: thin; /* Makes the scrollbar thinner */
  scrollbar-color: #d5d5d5 white; /* Dark grey thumb, light grey track */
}

/* For WebKit browsers */
.response-selected-zones::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.response-selected-zones::-webkit-scrollbar-track {
  background: white;
  border-radius: 10px;
}

.response-selected-zones::-webkit-scrollbar-thumb {
  background: #d5d5d5;
  border-radius: 10px;
  border: 2px solid white; /* This border *also* creates space between thumb and track */
}

.response-selected-zones::-webkit-scrollbar-thumb:hover {
  background: #d5d5d5;
}

.selected-filters-display {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}
.selected-filters-display .filter-tag {
  display: flex;
  align-items: center;
  background-color: white;
  border: 1px solid var(--insights-yellow, #ffe600);
  border-radius: 20px;
  padding: 5px 10px;
  color: black;
  font-size: 0.9em;
}
.selected-filters-display .filter-tag span {
  margin-right: 6px;
}
.selected-filters-display .filter-tag .remove-tag-btn {
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  font-size: 0.8em;
  padding: 0;
  margin-left: 5px;
}
.selected-filters-display .filter-tag .remove-tag-btn:hover {
  color: #555;
}
.selected-filters-display .filter-tag .remove-tag-btn i {
  margin-right: 6px;
}
.selected-filters-display .clear-all-filters-btn {
  background: none;
  border: none;
  color: black;
  cursor: pointer;
  font-size: 0.9em;
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.selected-filters-display .clear-all-filters-btn:hover {
  text-decoration: none;
}

/* --- Posts Display Zone (no changes needed here from previous) --- */
/* --- Posts Display Zone (no changes needed here) --- */
.posts-display-zone {
  font-family: var(--font-family-base), sans-serif;
}

/* --- Individual Post Card --- */
.post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 400px;
  background-color: var(--card-default-bg);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 2px 2px 7.6px 0 rgba(200, 200, 200, 0.3490196078) !important;
  position: relative;
  /* --- Hover Effect --- */
}
.post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--card-hover-overlay);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.post-card .post-thumbnail {
  width: 100%;
  height: 235px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.post-card .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.post-card .post-thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 90% black */
  pointer-events: none; /* Allow clicks to pass through */
}
.post-card .post-meta-top {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 10px;
  z-index: 3;
  transition: opacity 0.3s ease;
}
.post-card .post-meta-top .post-category {
  color: var(--insights-green);
  font-weight: 700;
  font-size: 12px;
  line-height: 36px;
  letter-spacing: 4px;
  vertical-align: middle;
  text-transform: uppercase;
}
.post-card .post-content-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 235px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: var(--card-default-bg);
  z-index: 3;
}
.post-card .post-content-area .post-meta-bottom.default-visible {
  font-size: 0.8em;
  color: var(--default-text-color);
  margin-bottom: 10px;
  text-align: left;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.post-card .post-content-area .post-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0;
  vertical-align: middle;
  margin: 0;
  color: var(--default-text-color);
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  text-align: left;
}
.post-card .post-content-area .post-hover-content {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  text-align: left;
  color: var(--hover-text-color);
}
.post-card .post-content-area .post-hover-content .post-category-hover {
  color: var(--insights-green);
  font-weight: 700;
  font-size: 12px;
  line-height: 36px;
  letter-spacing: 4px;
  vertical-align: middle;
  text-transform: uppercase;
  padding-bottom: 25px;
}
.post-card .post-content-area .post-hover-content p {
  font-size: 0.9em;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-card .post-content-area .post-hover-content h5 {
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  vertical-align: middle;
  color: var(--insights-yellow);
}
.post-card .post-content-area .post-hover-content .post-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 20;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  vertical-align: middle;
}
.post-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.post-card:hover::before {
  opacity: 1;
}
.post-card:hover .post-thumbnail img {
  transform: scale(1.05);
}
.post-card:hover .post-meta-top {
  opacity: 0;
  visibility: hidden;
}
.post-card:hover .post-content-area {
  background-color: transparent;
}
.post-card:hover .post-content-area .post-meta-bottom.default-visible {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}
.post-card:hover .post-content-area .post-title {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}
.post-card:hover .post-content-area .post-hover-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(-235px);
}

.mobile-arrow-zone {
  display: none;
  text-align: right;
}
.mobile-arrow-zone i {
  color: #999999;
}

@media (max-width: 767px) {
  .mobile-arrow-zone {
    display: block;
  }
  .selects-zone {
    gap: 0;
  }
}

/*# sourceMappingURL=style.css.map */
