.tools-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.tools-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 0.25em;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.375em 0.75em;
  border-radius: 8px;
  transition: background-color 0.15s;
}

.tools-dropdown__trigger:hover,
.tools-dropdown__trigger--active {
  background: rgba(255, 255, 255, 0.1);
}

.tools-dropdown__trigger .icebreakerPage__logo {
  margin: 0;
}

.tools-dropdown__chevron {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5em;
  line-height: 1;
}

.tools-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  max-width: 320px;
  z-index: 1000;
  display: none;
  font-size: 16px;
}

.tools-dropdown.tools-dropdown--open {
  display: block;
}

.tools-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0.75em;
}

.tools-dropdown__item {
  display: flex;
  align-items: center;
  padding: 0.75em 1em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.15s;
}

.tools-dropdown__item:hover {
  background: #eee;
}

.tools-dropdown__item--current {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.tools-dropdown__item-logo {
  height: 1.5em;
  object-fit: contain;
  object-position: left;
}

.tools-dropdown__desc {
  padding: 0.5em 1.5em 0.75em;
  font-size: 0.8em;
  color: #999;
  text-align: center;
  min-height: 1.2em;
  border-top: 1px solid #f0f0f0;
  transition: color 0.15s;
}

/* Explore Tools */
.explore-tools {
  width: 100%;
  max-width: 700px;
  margin: 2em auto;
  padding: 1.5em;
  text-align: center;
  font-size: 16px;
}

.explore-tools__heading {
  font-size: 1em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.explore-tools__grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1em;
}

.explore-tools__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4em;
  padding: 1em 1.25em;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s, transform 0.15s;
  min-width: 120px;
}

.explore-tools__card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.explore-tools__card-logo {
  height: 2em;
  object-fit: contain;
}

.explore-tools__card-desc {
  font-size: 0.7em;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  position: absolute;
  bottom: -1.5em;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.explore-tools__card:hover .explore-tools__card-desc {
  opacity: 1;
}
