/* Incubated startups: year + sector dropdown filters
   Matches the existing orange pill look of the old year tabs. */

.incubated-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 16px 20px;
}

.incubated-filter {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}

.incubated-filter__label {
  font-size: 14px;
  font-weight: 600;
  color: #6b6b60;
  padding-left: 18px;
}

.incubated-filter__control {
  position: relative;
}

.incubated-filter__select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 52px;
  padding: 0 46px 0 22px;
  font-size: 17px;
  font-weight: 600;
  color: #7c7c72;
  background: #fff;
  border: 1px solid #e6e6e1;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.incubated-filter__select:hover {
  border-color: #f47b20;
}

.incubated-filter__select:focus-visible {
  outline: none;
  border-color: #f47b20;
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.2);
}

/* When a value other than "All" is picked */
.incubated-filter__select.is-active {
  color: #f47b20;
  background: #f9f8f2;
  border-color: #f47b20;
}

.incubated-filter__chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #7c7c72;
  pointer-events: none;
}

.incubated-filter__select.is-active + .incubated-filter__chevron {
  color: #f47b20;
}

.incubated-filters__reset {
  height: 52px;
  padding: 0 8px;
  background: none;
  border: 0;
  font-size: 15px;
  font-weight: 600;
  color: #f47b20;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

@media (max-width: 575px) {
  .incubated-filter {
    width: 100%;
    min-width: 0;
  }
  .incubated-filters__reset {
    height: auto;
  }
}

.stat-icon i {
  font-size: 24px;
}
/* Nested submenu (e.g. Hall -> Meeting/Conference/Seminar) opens SIDEWAYS on hover */
/* Nested submenu items with children: push the arrow to the right end */
.main-menu ul .has-dropdown .sub-menu .has-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.main-menu ul .has-dropdown .sub-menu .has-dropdown {
  position: relative;
}

.main-menu ul .has-dropdown .sub-menu .has-dropdown > a:after {
  content: "\f105"; /* right chevron */
  margin-left: 10px;
}

.main-menu ul .has-dropdown .sub-menu .has-dropdown .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
  width: 250px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear 0s;
}

.main-menu ul .has-dropdown .sub-menu .has-dropdown:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}