/* ==========================================
   OPAC INFORMATION PAGE STYLES
   Specific styles for news, announcements, and agenda
   ========================================== */

.glass-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(79, 70, 229, 0.2);
}

.bg-info-soft {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.border-left-warning {
    border-left: 5px solid #ffc107 !important;
}

.border-left-info {
    border-left: 5px solid #0ea5e9 !important;
}

.profile-section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.profile-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}