/* Custom Utilities */
.glass-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(6, 95, 70, 0.05);
}

.glass-footer {
    background: rgba(6, 78, 59, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-card {
    transition: all 0.3s ease;
}
.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(6, 95, 70, 0.08);
    border-color: #a7f3d0;
}

/* Dropdown Animation */
.group:hover .group-hover\:block {
    display: block;
    animation: slideDown 0.2s ease-in-out;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating WA */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    transition: all 0.3s ease;
}
.wa-float:hover { transform: scale(1.1); }

.wa-tooltip {
    visibility: hidden; width: 140px; background-color: #333; color: #fff;
    text-align: center; border-radius: 6px; padding: 5px 0; position: absolute;
    z-index: 1; right: 110%; top: 50%; transform: translateY(-50%);
    opacity: 0; transition: opacity 0.3s; font-size: 12px;
}
.wa-float:hover .wa-tooltip { visibility: visible; opacity: 1; }

/* --- STYLE TAMBAHAN UNTUK DETAIL BERITA --- */

/* Typography Artikel (Rich Text) */
.prose-news p { 
    margin-bottom: 1.5rem; 
    line-height: 1.8; 
    color: #475569; 
    font-size: 1.05rem; 
}
.prose-news h2 { 
    font-weight: 700; 
    color: #064e3b; 
    margin-top: 2.5rem; 
    margin-bottom: 1rem; 
    font-size: 1.5rem; 
}
.prose-news h3 { 
    font-weight: 600; 
    color: #065f46; 
    margin-top: 2rem; 
    margin-bottom: 0.75rem; 
    font-size: 1.25rem; 
}
.prose-news ul { 
    list-style-type: disc; 
    padding-left: 1.5rem; 
    margin-bottom: 1.5rem; 
    color: #475569; 
}
.prose-news ol { 
    list-style-type: decimal; 
    padding-left: 1.5rem; 
    margin-bottom: 1.5rem; 
    color: #475569; 
}
.prose-news blockquote { 
    border-left: 4px solid #10b981; 
    padding-left: 1rem; 
    font-style: italic; 
    color: #059669; 
    background: #ecfdf5; 
    padding: 1rem; 
    border-radius: 0 0.5rem 0.5rem 0; 
    margin-bottom: 1.5rem; 
}
.prose-news strong {
    color: #1e293b;
    font-weight: 700;
}
.prose-news img {
    border-radius: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* --- UTILITIES DARI DESAIN ARSIP --- */
.glass-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(6, 95, 70, 0.05);
}
.glass-footer {
    background: rgba(6, 78, 59, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- STYLE KHUSUS DETAIL PENGUMUMAN --- */
.prose-content p { 
    margin-bottom: 1.5rem; 
    line-height: 1.8; 
    color: #475569; 
}
.prose-content ul { 
    list-style-type: disc; 
    padding-left: 1.5rem; 
    margin-bottom: 1.5rem; 
    color: #475569; 
}
.prose-content ol { 
    list-style-type: decimal; 
    padding-left: 1.5rem; 
    margin-bottom: 1.5rem; 
    color: #475569; 
}
.prose-content h3 { 
    font-weight: 700; 
    color: #065f46; 
    margin-top: 2rem; 
    margin-bottom: 1rem; 
    font-size: 1.25rem; 
}
.prose-content strong {
    color: #1e293b;
    font-weight: 700;
}

/* Styling khusus untuk Radio Button Rating Survei */
.rating-option input:checked + div {
    border-color: #059669;
    background-color: #ecfdf5;
    color: #059669;
    box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.1), 0 2px 4px -1px rgba(5, 150, 105, 0.06);
}
.rating-option input:checked + div .icon-box {
    background-color: #059669;
    color: white;
}