/**
* 2025 Danzai Software
*
* NOTICE OF LICENSE
*
* This source file is subject to the Commercial License
* you can't distribute, modify or sell this code
*
* DISCLAIMER
*
* Do not edit or add to this file
* If you need help please contact contacto@danzai.es
*
*  @author    Danzai Software <contacto@danzai.es>
*  @copyright 2025 Danzai Software
*  @license   https://danzai.es  Commercial license
*/

/* Estilos de la sección de la página de inicio. */
.dsfeaturedcategory-home {
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.dsfeaturedcategory-home-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dsfeaturedcategory-home-title {
  font-size: 2.188rem;
  font-weight: 500;;
}
.dsfeaturedcategory-home-category-link {
  overflow: hidden;
  border-radius: 2rem;
  position: relative;
}
.dsfeaturedcategory-home-category-name {
  position: absolute;
  top: 10px;
  font-weight: 400;
  font-size: 1.7rem;
  margin-left: 20px;
  z-index: 1;
}
.dsfeaturedcategory-home-category-img-box {
  max-width: 800px;
  max-height: 534px;
}
.dsfeaturedcategory-home-category-img-box img {
  border-radius: 2rem;
  width: 800px;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

/* Estilos para pantallas pequeñas. */
@media (min-width:767px) {
  .dsfeaturedcategory-home-category-img-box {
    transition: transform 0.3s ease;
  }
  .dsfeaturedcategory-home-category-img-box:hover {
    transform: scale(1.2);
  }
}
@media(max-width:998px) {
  .dsfeaturedcategory-home-category-name{
    font-size: 1.2rem !important;
  }
}