/* 
* Macro Event Insights Styling
* Provides styles for the macro event insights displayed on the daily card
*/

.daily-card-macro-insight {
    background-color: rgba(20, 20, 40, 0.7);
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.daily-card-macro-insight:hover {
    background-color: rgba(30, 30, 60, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

.daily-card-macro-insight h5 {
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.daily-card-macro-insight h5 i {
    margin-right: 8px;
}

.macro-insight-text {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .daily-card-macro-insight {
        padding: 12px;
        margin-top: 15px;
    }
    
    .macro-insight-text {
        font-size: 0.9rem;
    }
}