.case-study-title {
  font-weight: bold;
}

.case-study-bar {
  width: 75%;
  height: 0.25rem;
  margin: 1.5rem 0;
  background-color: blue;
  border-radius: 3px;
}

#engineering-section,
#case-study-items {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  #engineering-section,
  #case-study-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SEARCH INPUT — white theme */
.case-search-wrapper .form-control {
  border-radius: 0 6px 6px 0;
  height: 42px;
  font-size: 15px;
}

.case-search-wrapper .input-group-text {
  border-radius: 6px 0 0 6px;
  background: #ffffff;
}

/* ------------------------------------------- */
/*  FILTER CHIPS (based on excellence-button)  */
/* ------------------------------------------- */

.filter-chip {
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 3px;
  border: 1px solid #37415180;
  background: none;
  color: #374151;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease,
    color 0.25s ease, border-color 0.25s ease;
}

.filter-chip:hover {
  transform: scale(1.04);
  background-color: #ff731d;
  color: #ffffff;
  border-color: #ff731d;
}

/* ACTIVE SELECTED CHIP */
.filter-chip.active {
  background-color: #ff731d !important;
  color: #ffffff !important;
  border-color: #ff731d !important;
  transform: scale(1.04);
}
/* Remove outline + glow without changing UI */
.case-search-wrapper .form-control:focus,
.case-search-wrapper .form-control:active,
.case-search-wrapper .input-group-text:focus,
.case-search-wrapper .input-group-text:active {
  outline: none !important;
  box-shadow: none !important;
  border-color: #6c757d !important; /* keep same border */
}
.filter-status-text {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280; /* subtle gray */
  font-size: 14px;
}

.filter-status-text i {
  font-size: 14px;
  margin-right: 4px;
}

.clear-filters-btn {
  cursor: pointer;
  color: #ff731d;
  font-weight: 500;
}

.clear-filters-btn:hover {
  text-decoration: underline;
}
