/*
Theme Name: Mindvistal (Astra Child)
Theme URI: https://mindvistal.com
Description: Child theme for Astra — blogging design
Author: Mindvistal
Template: astra
Version: 1.0.0
*/

/* Custom Blog Styling */
body {
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.blog-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

.blog-post {
    background: white;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post h2 {
    margin-top: 0;
    font-size: 1.8rem;
}

.blog-post .meta {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.sidebar {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    height: fit-content;
}

.sidebar h3 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
