.ajax-search-visually-hidden {
position: absolute !important;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
} .ajax-search-bar input#ajax-search-input::-webkit-search-cancel-button,
.ajax-search-bar input#ajax-search-input::-webkit-search-decoration {
-webkit-appearance: none;
}
.ajax-search-bar input#ajax-search-input::-ms-clear {
display: none;
width: 0;
height: 0;
} .ajax-search-bar {
display: flex;
align-items: center;
background-color: #E9EDF2;
border-radius: 8px;
padding: 0 15px;
gap: 10px;
color: #333;
width: 100%;
box-sizing: border-box;
height: 48px;
transition: background-color 0.3s ease;
}
.ajax-search-bar:hover,
.ajax-search-bar:focus-within {
background-color: #D5E5F6;
}
.ajax-search-bar .search-icon,
.ajax-search-bar .search-clear {
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.ajax-search-bar .search-icon svg,
.ajax-search-bar .search-clear svg {
width: 22px;
height: 22px;
stroke-width: 2.2;
color: inherit;
}
.ajax-search-bar input#ajax-search-input {
flex-grow: 1;
height: 100%;
border: none;
background: transparent;
font-size: 1.1rem;
letter-spacing: -0.2px;
outline: none;
color: inherit;
padding: 0;
margin: 0;
min-width: 0;
}
.ajax-search-bar .search-clear {
background: none;
border: none;
cursor: pointer;
display: none;
padding: 0;
color: inherit;
} .article-grid {
display: grid;
gap: 1.5rem;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
@media (min-width: 1024px) {
.article-grid {
grid-template-columns: repeat(4, 1fr);
}
}
.article-box {
background: none;
border: none;
padding: 0;
border-radius: 0;
overflow: visible; }
.article-box a {
display: block;
color: inherit;
text-decoration: none;
}
.article-image-wrapper {
position: relative;
width: 100%;
aspect-ratio: 16/9;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
border-radius: 20px;
z-index: 1; }
.article-title {
font-size: 1.2rem;
font-weight: 600;
margin-top: 0.5rem;
color: #000;
text-align: left;
} .article-box.video {
overflow: visible;
}
.article-box.video .play-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 48px;
height: 48px;
background: #000; border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}
.article-box.video .play-icon svg {
width: 24px;
height: 24px;
fill: #fff;
}
.article-box.video .video-duration {
position: absolute;
bottom: 8px;
right: 8px;
background: rgba(0, 0, 0, 0.6);
color: #fff;
font-size: 0.75rem;
padding: 2px 4px;
border-radius: 3px;
z-index: 2;
} .author-grid {
display: flex;
flex-wrap: wrap;
gap: 1.2rem; text-align: center;
justify-content: flex-start;
}
@media (max-width: 768px) {
.author-grid {
justify-content: center;
}
}
.author-grid .result-item {
max-width: 100px;
flex: 0 1 auto;
padding: 0;
border: none;
background: none;
}
.author-grid img.avatar {
width: 72px; height: 72px;
object-fit: cover;
border-radius: 50%;
margin: 0 auto 0.4rem;
display: block;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.author-grid .result-name {
font-size: 0.9rem; font-weight: 400;
color: #000;
}
.author-grid .result-item:hover img.avatar {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}
.author-grid .result-item:hover .result-name {
transform: translateY(-2px);
} .result-title {
font-size: 1rem;
font-weight: 600;
color: #000;
margin-top: 0.5rem;
} .result-lieu {
font-size: 0.9rem;
color: #666;
margin-top: 2px;
} .generic-list {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.generic-list .result-item {
font-size: 1rem;
color: #000;
text-decoration: none;
} .titre.page.h2.section-title {
font-size: 1.5rem;
font-weight: 600;
margin: 2rem 0 1rem;
color: #000;
} .load-more {
margin: 1rem auto 0;
padding: 0.6rem 1.4rem;
background: transparent;
color: var(--e-global-color-primary);
border: 1px solid var(--e-global-color-primary);
border-radius: 50px;
cursor: pointer;
font-size: 1rem;
display: block;
transition: all 0.3s ease;
}
.load-more:hover,
.load-more:focus,
.load-more:active {
background: var(--e-global-color-primary);
color: #fff;
} .result-item.fade-in {
opacity: 0;
transform: translateY(10px);
}
.result-item.fade-in.loaded {
opacity: 1;
transform: translateY(0);
transition: opacity 0.4s ease, transform 0.4s ease;
} .skeleton-section {
display: flex;
flex-direction: column;
gap: 2rem;
opacity: 0.5;
margin-top: 2rem;
}
.skeleton-box {
width: 100%;
max-width: 220px;
}
.skeleton-image {
aspect-ratio: 1/1;
background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
background-size: 200% 100%;
animation: skeleton 1.5s infinite;
border-radius: 100%;
}
.skeleton-image.article {
aspect-ratio: 16/9;
border-radius: 20px;
}
.skeleton-text {
height: 1.2rem;
margin-top: 0.5rem;
border-radius: 4px;
background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
background-size: 200% 100%;
animation: skeleton 1.5s infinite;
width: 80%;
}
@keyframes skeleton {
0% {
background-position: -200% 0;
}
100% {
background-position: 200% 0;
}
} .result-section-evenements .result-item {
display: flex;
align-items: center;
gap: 0.5rem;
}
.event-dates {
background: var(--e-global-color-accent);
border-radius: 6px;
color: #fff;
padding: 0.25rem 0.75rem;
font-size: 0.85rem;
pointer-events: none;
font-weight: bold;
}
.result-section-evenements .result-title {
margin: 0;
font-size: 1rem;
font-weight: 600;
} .article-box .article-image-wrapper,
.author-grid img.avatar {
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.article-box:hover .article-image-wrapper {
transform: translateY(-2px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.author-grid .result-item:hover img.avatar {
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}