#main-content {
padding: 0 !important;
max-width: none !important;
margin: 0 !important;
}
.ann-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;
}
.ann-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); }
}
.ann-hero-content {
position: relative;
z-index: 10;
width: 100%;
padding: 48px 40px;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
text-align: center;
}
.ann-hero-title {
font-size: 22px;
font-weight: 600;
color: var(--text-on-brand);
letter-spacing: -0.02em;
line-height: 1.3;
margin: 0;
}
.ann-hero-sub {
font-size: 14px;
color: rgba(255,255,255,0.8);
margin: 0;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
line-height: 1.5;
}
.ann-hero-badge {
background: var(--brand-color);
color: var(--text-on-brand);
font-size: 11px;
font-weight: 700;
padding: 3px 10px;
border-radius: 20px;
white-space: nowrap;
}
.ann-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: 8px;
}
.ann-hero-search-icon {
color: var(--text-light);
font-size: 15px;
flex-shrink: 0;
line-height: 1;
}
.ann-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;
}
.ann-hero-search-input::placeholder { color: var(--text-light); }
.ann-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;
}
.ann-hero-search-btn:hover { opacity: 0.88; }
.ann-inner {
padding: 32px 24px;
max-width: 1440px;
margin: 0 auto;
width: 100%;
display: grid;
grid-template-columns: 280px 1fr;
gap: 16px;
align-items: start;
}
.ann-left {
display: flex;
flex-direction: column;
gap: 12px;
position: sticky;
top: calc(72px + 16px);
}
.ann-card {
background: var(--bg-main);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 16px;
}
.ann-card-title {
font-size: 17px;
font-weight: 700;
color: var(--text-main);
margin: 0 0 12px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.ann-info-row {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 0;
border-bottom: 1px solid var(--border-color);
}
.ann-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.ann-ico {
display: inline-flex;
align-items: center;
justify-content: center;
width: 20px;
height: 20px;
flex-shrink: 0;
}
.ann-ico i { font-size: 17px; line-height: 1; color: var(--text-muted); }
.ann-info-text {
font-size: 13px;
color: var(--text-muted);
line-height: 1.4;
}
.ann-info-text strong {
display: block;
font-size: 12px;
font-weight: 700;
color: var(--text-main);
margin-bottom: 1px;
}
.ann-contact-link {
color: var(--brand-color);
text-decoration: none;
font-size: 13px;
}
.ann-contact-link:hover { text-decoration: underline; }
.ann-alpha-wrap {
position: relative;
}
.ann-alpha-wrap::before,
.ann-alpha-wrap::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 40px;
pointer-events: none;
opacity: 0;
transition: opacity 0.2s;
z-index: 1;
}
.ann-alpha-wrap::before {
left: 0;
background: linear-gradient(to left, transparent, var(--bg-main));
border-radius: 12px 0 0 12px;
}
.ann-alpha-wrap::after {
right: 0;
background: linear-gradient(to right, transparent, var(--bg-main));
border-radius: 0 12px 12px 0;
}
.ann-alpha-wrap.scroll-left::before  { opacity: 1; }
.ann-alpha-wrap.scroll-right::after  { opacity: 1; }
.ann-alpha-bar {
background: var(--bg-main);
border: 1px solid var(--border-color);
border-radius: 12px;
display: flex;
align-items: stretch;
overflow-x: auto;
overflow-y: hidden;
scrollbar-width: none;
}
.ann-alpha-bar::-webkit-scrollbar { display: none; }
.ann-alpha-item {
flex: 1 0 36px;
display: flex;
align-items: center;
justify-content: center;
padding: 12px 6px;
color: var(--text-muted);
font-weight: 600;
font-size: 13px;
border-right: 1px solid var(--border-color);
text-decoration: none;
transition: background-color 0.15s, color 0.15s;
white-space: nowrap;
}
.ann-alpha-item:first-child {
flex: 0 0 auto;
padding: 12px 14px;
}
.ann-alpha-item:last-child { border-right: none; }
.ann-alpha-item:hover  { color: var(--brand-color); background: var(--bg-surface); }
.ann-alpha-item.active { background: var(--brand-color); color: var(--text-on-brand); }
.ann-results {
display: flex;
flex-direction: column;
gap: 8px;
min-width: 0;
}
.ann-list {
background: var(--bg-main);
border: 1px solid var(--border-color);
border-radius: 12px;
overflow: hidden;
}
.ann-letter-sep {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 18px;
background: var(--bg-surface);
border-bottom: 1px solid var(--border-color);
}
.ann-letter-sep span {
font-size: 18px;
font-weight: 800;
color: var(--text-main);
letter-spacing: -0.02em;
line-height: 1;
}
.ann-item {
display: flex;
flex-direction: column;
gap: 8px;
padding: 16px 18px;
border-bottom: 1px solid var(--border-color);
transition: background-color 0.12s;
}
.ann-item:last-child { border-bottom: none; }
.ann-item:hover { background: var(--bg-surface); }
.ann-item-main {
display: flex;
flex-direction: column;
gap: 4px;
min-width: 0;
}
.ann-item-top {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}
.ann-item-title {
font-size: 14px;
font-weight: 700;
color: var(--text-main);
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ann-item-cat {
font-size: 11px;
font-weight: 600;
color: var(--brand-color);
background: var(--color-brand-light);
padding: 2px 8px;
border-radius: 20px;
white-space: nowrap;
flex-shrink: 0;
}
.ann-item-desc {
font-size: 12.5px;
color: var(--text-muted);
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1.4;
}
.ann-item-meta-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
flex-wrap: wrap;
}
.ann-item-meta-left {
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
flex: 1;
min-width: 0;
}
.ann-item-meta-right {
display: flex;
align-items: center;
gap: 10px;
flex-shrink: 0;
}
.ann-item-meta {
display: flex;
align-items: center;
gap: 5px;
font-size: 13px;
color: var(--text-muted);
}
.ann-item-meta i {
font-size: 14px;
flex-shrink: 0;
line-height: 1;
}
a.ann-item-link {
color: var(--brand-color);
text-decoration: none;
}
a.ann-item-link:hover { text-decoration: underline; }
.ann-item-socials {
display: flex;
gap: 5px;
}
.ann-social-btn {
width: 28px;
height: 28px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 6px;
border: 1px solid var(--border-color);
color: var(--text-muted);
font-size: 13px;
text-decoration: none;
transition: color 0.15s, border-color 0.15s;
}
.ann-social-btn:hover { color: var(--brand-color); border-color: var(--brand-color); }
.ann-site-btn {
display: inline-flex;
align-items: center;
gap: 5px;
height: 28px;
padding: 0 11px;
background: var(--brand-color);
color: var(--text-on-brand);
border-radius: 6px;
font-size: 11.5px;
font-weight: 700;
text-decoration: none;
white-space: nowrap;
transition: opacity 0.15s;
}
.ann-site-btn:hover { opacity: 0.88; }
.ann-report-btn {
font-size: 11px;
color: var(--text-light);
text-decoration: none;
white-space: nowrap;
transition: color 0.15s;
align-self: flex-end;
}
.ann-report-btn:hover { color: var(--text-muted); }
.ann-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 12px;
padding: 48px 24px;
color: var(--text-muted);
}
.ann-empty i { font-size: 36px; opacity: 0.4; }
.ann-empty p { font-size: 14px; margin: 0; }
.ann-pagination {
display: flex;
flex-wrap: wrap;
gap: 6px;
justify-content: center;
}
.ann-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;
}
.ann-page-btn:hover { color: var(--brand-color); border-color: var(--brand-color); }
.ann-page-btn.active { background: var(--brand-color); color: var(--text-on-brand); border-color: var(--brand-color); }
@media (max-width: 860px) {
.ann-inner { grid-template-columns: 1fr; }
.ann-left  { position: static; }
}
@media (max-width: 768px) {
.ann-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; }
.ann-hero-content { padding: 24px 16px; }
.ann-hero-search  { max-width: 100%; }
.ann-inner        { padding: 16px 12px; }
.ann-item-meta-row {
flex-direction: column;
align-items: flex-start;
gap: 6px;
}
.ann-item-meta-left  { flex-direction: column; align-items: flex-start; gap: 6px; }
.ann-item-meta-right { margin-left: 0; flex-direction: row; align-items: center; gap: 12px; flex-wrap: wrap; }
}