/* Blog Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Basic styles for blog page */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation styles */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-weight: 500;
}

.btn-outline-primary {
    color: #2563eb;
    border-color: #2563eb;
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: #2563eb;
    color: white;
}

/* Typography */
.display-4 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Alert styles */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-info {
    background-color: #dbeafe;
    border: 1px solid #93c5fd;
    color: #1e40af;
}

/* Spacing utilities */
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mb-0 { margin-bottom: 0; }

/* Text alignment */
.text-center { text-align: center; }

/* Flexbox utilities */
.d-flex { display: flex; }
.justify-content-center { justify-content: center; }
.gap-3 > * + * { margin-left: 1rem; }

/* Grid system */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive design */
@media (max-width: 992px) {
    .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .gap-3 {
        flex-direction: column;
        align-items: center;
    }
    
    .gap-3 > * + * {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* List styles */
ul {
    margin: 0;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.25rem;
}

/* Link styles */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Headings */
h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Paragraphs */
p {
    margin-bottom: 1rem;
}
