#main-content {
padding: 0 !important;
max-width: none !important;
margin: 0 !important;
}
.an-hero {
position: relative;
width: 100%;
height: 340px;
overflow: hidden;
background: linear-gradient(135deg, var(--brand-color), var(--hero-gradient-end));
display: flex;
align-items: flex-end;
line-height: 0;
}
.an-hero-logo {
width: 90px;
height: 90px;
object-fit: contain;
border-radius: 18px;
background: rgba(255, 255, 255, 0.15);
padding: 10px;
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.25);
margin-bottom: 4px;
}
.hero-orb {
position: absolute;
border-radius: 50%;
filter: blur(60px);
opacity: 0.6;
animation: hero-float 10s infinite ease-in-out alternate;
z-index: 0;
}
.hero-orb-1 { width: 400px; height: 400px; background: var(--hero-orb-1); top: -100px; left: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 500px; height: 500px; background: var(--hero-orb-2); bottom: -150px; right: -100px; animation-delay: -3s; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--hero-orb-3); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: -6s; }
@keyframes hero-float {
0%   { transform: translate(0,0) scale(1); }
100% { transform: translate(30px,50px) scale(1.1); }
}
.hero-waves {
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
height: 60px;
z-index: 5;
}
.hero-parallax > use { animation: hero-wave-move 25s cubic-bezier(.55,.5,.45,.5) infinite; }
.hero-parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.hero-parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.hero-parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.hero-parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }
@keyframes hero-wave-move {
0%   { transform: translate3d(-90px,0,0); }
100% { transform: translate3d(85px,0,0); }
}
.an-hero-content {
position: relative;
z-index: 10;
width: 100%;
padding: 48px 40px;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
text-align: center;
}
.an-hero-title {
font-size: 22px;
font-weight: 600;
color: var(--text-on-brand);
letter-spacing: -0.02em;
line-height: 1.3;
margin: 0;
}
.an-hero-sub {
font-size: 14px;
color: rgba(255,255,255,0.8);
margin: 0;
line-height: 1.5;
}
.an-hero-search {
display: flex;
align-items: center;
background: var(--bg-main);
border-radius: 10px;
padding: 6px 6px 6px 14px;
width: 100%;
max-width: 560px;
gap: 8px;
margin-top: 6px;
}
.an-hero-search-icon { color: var(--text-light); font-size: 15px; flex-shrink: 0; line-height: 1; }
.an-hero-search-input {
flex: 1;
border: none;
background: none;
font-family: var(--font-base);
font-size: 14px;
color: var(--text-main);
outline: none;
min-width: 0;
}
.an-hero-search-input::placeholder { color: var(--text-light); }
.an-hero-search-btn {
height: 38px;
padding: 0 20px;
background: var(--brand-color);
color: var(--text-on-brand);
border: none;
border-radius: 7px;
font-family: var(--font-base);
font-size: 13px;
font-weight: 700;
cursor: pointer;
white-space: nowrap;
flex-shrink: 0;
transition: opacity 0.15s;
}
.an-hero-search-btn:hover { opacity: 0.88; }
.an-wrap {
padding: 32px 24px;
max-width: 1440px;
margin: 0 auto;
width: 100%;
display: grid;
grid-template-columns: 280px 1fr;
gap: 16px;
align-items: start;
}
.an-left {
display: flex;
flex-direction: column;
gap: 12px;
position: sticky;
top: calc(72px + 16px);
}
.an-card {
background: var(--bg-main);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 16px;
}
.an-card-title {
font-size: 17px;
font-weight: 700;
color: var(--text-main);
margin: 0 0 12px 0;
}
.an-card-desc {
font-size: 13.5px;
color: var(--text-muted);
line-height: 1.7;
margin: 0;
}
.an-filter-nav {
display: flex;
flex-direction: column;
gap: 0;
}
.an-filter-link {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 10px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
color: var(--text-main);
text-decoration: none;
transition: background 0.12s, color 0.12s;
}
.an-filter-link:hover { background: var(--bg-surface); color: var(--brand-color); }
.an-filter-link:hover .an-ico i { color: var(--brand-color); }
.an-filter-link.active { background: var(--brand-color); color: var(--text-on-brand); }
.an-filter-link.active .an-ico i { color: var(--text-on-brand); }
.an-ico {
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
flex-shrink: 0;
}
.an-ico i { font-size: 17px; line-height: 1; color: var(--text-muted); }
.an-info-row {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 0;
border-bottom: 1px solid var(--border-color);
}
.an-info-text { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.an-info-text strong { display: block; font-size: 12px; font-weight: 700; color: var(--text-main); margin-bottom: 1px; }
.an-btn-primary {
display: flex;
align-items: center;
justify-content: center;
gap: 7px;
height: 38px;
width: 100%;
margin-top: 14px;
background: var(--brand-color);
color: var(--text-on-brand);
border-radius: 8px;
font-family: var(--font-base);
font-size: 13px;
font-weight: 700;
text-decoration: none;
transition: opacity 0.15s;
}
.an-btn-primary:hover { opacity: 0.88; }
.an-main {
display: flex;
flex-direction: column;
gap: 8px;
min-width: 0;
}
.an-results-meta { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.an-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.an-card-item {
background: var(--bg-main);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 18px 20px;
display: flex;
flex-direction: column;
gap: 12px;
transition: border-color 0.15s;
}
.an-card-item:hover { border-color: var(--brand-color); }
.an-item-head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 12px;
flex-wrap: wrap;
}
.an-item-head-left {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: nowrap;
min-width: 0;
flex: 1;
}
.an-item-title {
font-size: 15px;
font-weight: 700;
color: var(--text-main);
margin: 0;
line-height: 1.3;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: 0;
}
.an-badge {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 11px;
font-weight: 700;
padding: 3px 10px;
border-radius: 20px;
white-space: nowrap;
flex-shrink: 0;
}
.an-badge i { font-size: 11px; line-height: 1; }
.an-badge-cherche {
background: var(--color-brand-light);
color: var(--brand-color);
}
.an-badge-trouve {
background: var(--bg-success);
color: var(--color-success);
}
.an-item-meta {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
font-size: 12px;
color: var(--text-light);
flex-shrink: 0;
}
.an-item-meta i { font-size: 12px; line-height: 1; }
.an-item-desc-wrap {
display: flex;
flex-direction: column;
gap: 6px;
}
.an-item-desc {
font-size: 13.5px;
color: var(--text-muted);
line-height: 1.7;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
transition: none;
}
.an-item-desc.is-expanded {
display: block;
overflow: visible;
}
.an-expand-btn {
display: inline-flex;
align-items: center;
gap: 5px;
height: 34px;
padding: 0 14px;
background: var(--bg-surface);
border: 1px solid var(--border-color);
border-radius: 8px;
cursor: pointer;
font-family: var(--font-base);
font-size: 13px;
font-weight: 700;
color: var(--text-main);
transition: border-color 0.15s, color 0.15s;
flex-shrink: 0;
}
.an-expand-btn:hover { border-color: var(--brand-color); color: var(--brand-color); }
.an-expand-icon {
font-size: 13px;
line-height: 1;
transition: transform 0.2s;
}
.an-item-foot {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding-top: 10px;
border-top: 1px solid var(--border-color);
flex-wrap: wrap;
}
.an-item-foot-right {
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
}
.an-item-contacts {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
}
.an-contact {
display: flex;
align-items: center;
gap: 5px;
font-size: 13px;
color: var(--text-muted);
}
.an-contact i { font-size: 14px; line-height: 1; }
.an-contact-link {
color: var(--brand-color);
text-decoration: none;
transition: text-decoration 0.12s;
}
.an-contact-link:hover { text-decoration: underline; }
.an-reply-btn {
display: inline-flex;
align-items: center;
gap: 6px;
height: 34px;
padding: 0 16px;
background: var(--brand-color);
color: var(--text-on-brand);
border-radius: 8px;
font-size: 13px;
font-weight: 700;
text-decoration: none;
white-space: nowrap;
flex-shrink: 0;
transition: opacity 0.15s;
}
.an-reply-btn:hover { opacity: 0.88; }
.an-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 12px;
padding: 48px 24px;
background: var(--bg-main);
border: 1px solid var(--border-color);
border-radius: 12px;
color: var(--text-muted);
}
.an-empty i { font-size: 36px; opacity: 0.4; }
.an-empty p { font-size: 14px; margin: 0; }
.an-pagination {
display: flex;
flex-wrap: wrap;
gap: 6px;
justify-content: center;
margin-top: 8px;
}
.an-page-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 8px;
border: 1px solid var(--border-color);
background: var(--bg-main);
font-size: 13px;
font-weight: 600;
color: var(--text-muted);
text-decoration: none;
transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.an-page-btn:hover { color: var(--brand-color); border-color: var(--brand-color); }
.an-page-btn.active { background: var(--brand-color); color: var(--text-on-brand); border-color: var(--brand-color); }
@media (max-width: 860px) {
.an-wrap { grid-template-columns: 1fr; }
.an-left { position: static; }
}
@media (max-width: 768px) {
.an-hero { height: 340px; }
.hero-orb-1 { width: 200px; height: 200px; }
.hero-orb-2 { width: 250px; height: 250px; }
.hero-orb-3 { width: 150px; height: 150px; }
.hero-waves { height: 30px; }
.an-hero-content { padding: 24px 16px; }
.an-wrap { padding: 16px 12px; }
.an-hero-search   { max-width: 100%; }
.an-item-head { flex-direction: column; gap: 8px; }
.an-item-meta { justify-content: flex-start; }
.an-item-foot { flex-direction: column; align-items: flex-start; }
.an-reply-btn { width: fit-content; justify-content: center; }
.an-item-head-left { width: 100%; }
}

.sj-like-btn {
display: inline-flex;
align-items: center;
gap: 6px;
height: 34px;
padding: 0 16px;
background: var(--bg-surface);
border: 1px solid var(--border-color);
border-radius: 8px;
cursor: pointer;
font-family: var(--font-base);
font-size: 13px;
font-weight: 700;
color: var(--text-main);
transition: border-color 0.15s, color 0.15s, background 0.15s;
flex-shrink: 0;
}
.sj-like-btn:hover   { border-color: #e11d48; color: #e11d48; }
.sj-like-btn.is-liked { background: #fff1f2; border-color: #e11d48; color: #e11d48; }
.sj-like-btn i { font-size: 14px; line-height: 1; }
.sj-like-btn.is-loading { opacity: 0.6; pointer-events: none; }
.an-back {
display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
color: var(--text-muted); text-decoration: none; padding: 6px 0;
transition: color 0.15s;
}
.an-back:hover { color: var(--brand-color); }