/* Latest Posts Card Styles - Grok Inspired (Light Theme, Minimalist) */
.latest-posts-card-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 15px;
}

.latest-posts-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    background: linear-gradient(90deg, #00b7ff, #007acc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.latest-post-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.2s ease;
    border: 1px solid #e5e7eb;
}

.latest-post-card:hover {
    transform: translateY(-3px);
}

.latest-post-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.latest-post-card h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.latest-post-card h3 a:hover {
    color: #00b7ff;
}

.latest-post-card .post-meta {
    font-size: 14px;
    color: #6b7280;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.latest-post-card .post-meta span {
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .latest-posts-card-container {
        padding: 0 10px;
    }

    .latest-posts-title {
        font-size: 24px;
    }

    .latest-post-card {
        padding: 15px;
    }

    .latest-post-card h3 {
        font-size: 18px;
    }

    .latest-post-card .post-meta {
        font-size: 13px;
    }
}
		
		
		