.custom-shadow {
    border-radius: 10px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}

.custom-border::before {
    content: '';
    position: absolute;
    inset: 0px;
    pointer-events: none;
    background: url('../img/cadrage.svg') center / 100% 100% no-repeat;
}

/* Homepage scroll arrow */

@keyframes float {
  0%   { transform: translateY(0px);   opacity: 1; }
  50%  { transform: translateY(10px);  opacity: 0.5; }
  100% { transform: translateY(0px);   opacity: 1; }
}

.scroll-arrow {
  animation: float 1.6s ease-in-out infinite;
  cursor: pointer;
}


/* COMPONENT : BLOG CATEGORIES TAGS */

.blog-filters .e-filter .e-filter-item {
    border: 1.5px solid var(--e-global-color-secondary);
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--e-global-color-secondary);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-filters .e-filter .e-filter-item:hover {
    border: 1.5px solid var(--e-global-color-secondary);
    background: var(--e-global-color-secondary);
    color: #FFFFFF !important;
}

