.vocor-featured-categories {
  margin: 1.5rem 0 2rem;
}

.vocor-featured-categories__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.vocor-featured-categories__item {
  width: min(132px, calc(50% - 0.75rem));
  text-align: center;
  color: inherit;
  text-decoration: none;
}

.vocor-featured-categories__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 0.7rem;
  border: 1px solid #d9dee7;
  border-radius: 50%;
  overflow: hidden;
  background: #f7f8fb;
  box-shadow: 0 10px 24px rgba(20, 32, 56, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.vocor-featured-categories__image,
.vocor-featured-categories__placeholder {
  width: 100%;
  height: 100%;
}

.vocor-featured-categories__image {
  display: block;
  object-fit: cover;
}

.vocor-featured-categories__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #526076;
  background: linear-gradient(135deg, #f4f6fa 0%, #e8edf5 100%);
}

.vocor-featured-categories__overlay,
.vocor-featured-categories__close {
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.vocor-featured-categories__overlay {
  inset: 0;
  background: rgba(10, 23, 45, 0.38);
}

.vocor-featured-categories__close {
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #10233f;
  font-size: 1.8rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.vocor-featured-categories__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.vocor-featured-categories__item:hover .vocor-featured-categories__media,
.vocor-featured-categories__item:focus .vocor-featured-categories__media,
.vocor-featured-categories__item:focus-visible .vocor-featured-categories__media {
  transform: translateY(-2px);
  border-color: #b8c3d6;
  box-shadow: 0 14px 28px rgba(20, 32, 56, 0.12);
}

.vocor-featured-categories__item.is-active .vocor-featured-categories__media {
  border-color: #1d4ed8;
  box-shadow: 0 14px 30px rgba(29, 78, 216, 0.18);
}

.vocor-featured-categories__item.is-active .vocor-featured-categories__overlay,
.vocor-featured-categories__item.is-active .vocor-featured-categories__close {
  opacity: 1;
}

@media (max-width: 767px) {
  .vocor-featured-categories__list {
    gap: 1rem;
  }

  .vocor-featured-categories__item {
    width: calc(33.333% - 0.75rem);
    min-width: 96px;
  }

  .vocor-featured-categories__media {
    width: 92px;
    height: 92px;
  }
}
