/**
 * Content Freshness Styles
 */

.recent-updates-section,
.recent-updates {
    width: 100%;
    padding: 30px 20px;
    background: #f8f9fa;
    border-left: 4px solid #28a745;
    margin: 30px 0;
}

.recent-updates-section h2,
.recent-updates h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333333;
}

.updates-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.updates-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    border-bottom: 1px solid #e0e0e0;
}

.updates-list li:last-child {
    border-bottom: none;
}

.updates-list li:before {
    content: "🔄";
    position: absolute;
    left: 0;
    font-size: 18px;
}

.last-updated-text {
    font-size: 14px;
    color: #999999;
    font-style: italic;
    margin: 15px 0 0 0;
}

.last-updated {
    font-size: 14px;
    color: #666666;
}

/* Responsive */
@media (min-width: 768px) {
    .recent-updates-section,
    .recent-updates {
        padding: 40px;
    }
    
    .recent-updates-section h2,
    .recent-updates h2 {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .recent-updates-section,
    .recent-updates {
        padding: 50px 60px;
    }
}



