/**
 * Sub-navigation: Special Recognition Awards / Winners
 */

.effie-awards-submenu {
  width: 100%;
  background: #fff;
}

.effie-awards-submenu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  list-style: none;
}

.effie-awards-submenu__item {
  flex: 0 0 auto;
}

.effie-awards-submenu__link {
  position: relative;
  display: inline-block;
  padding: 4px 0 8px;
  border: none;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.effie-awards-submenu__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #333;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

a.effie-awards-submenu__link:hover {
  color: #222;
}

a.effie-awards-submenu__link:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.effie-awards-submenu__item.is-active .effie-awards-submenu__link {
  color: #b4975a;
  font-weight: 700;
}

.effie-awards-submenu__item.is-active .effie-awards-submenu__link::after {
  background: #b4975a;
  transform: scaleX(1);
  transform-origin: center;
}

@media (max-width: 767px) {
  .effie-awards-submenu__list {
    gap: 20px;
    padding: 16px;
  }

  .effie-awards-submenu__link {
    font-size: 12px;
  }
}
