.ms-homecategories {
  margin-bottom: 2rem;
}

.ms-homecategories__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.ms-homecategories__img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ms-homecategories__item:hover .ms-homecategories__img {
  transform: scale(1.04);
}

.ms-homecategories__title {
  position: absolute;
  left: 16px;
  top: 16px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.ms-homecategories__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all .3s ease;
}


/* .ms-homecategories__arrow:hover {
   background: rgba(0, 0, 0, 0.35);
} */

.ms-homecategories__item:hover .ms-homecategories__arrow {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 1);
}
