/* Blog Page SEO Styles */


/* SEO Header */
.seo-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
    border: 1px solid #dee2e6;
}

.main-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.seo-header .lead {
    color: #495057;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Blog Items */
.blog-item {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 0;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.05);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 48px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    margin-bottom: 1rem;
}

.blog-title a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #007bff;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: #007bff;
}

.blog-excerpt {
    margin-bottom: 1.5rem;
}

.blog-excerpt p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.blog-actions {
    text-align: right;
}

.blog-actions .btn {
    padding: 0.75rem 1.75rem;
    font-size: 1.1rem;
    border-radius: 0.375rem;
    background-color: #ffc107;
    color: #212529;
    border: 1px solid #ffc107;
    font-weight: 600;
}

.blog-actions .btn:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    color: #212529;
}

/* Pagination Info */
.pagination-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
    margin-bottom: 2rem;
}

.pagination-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.pagination-wrapper {
    text-align: center;
    margin-top: 2rem;
}

/* SEO Content Section */
.seo-content {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.seo-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.seo-content h3 {
    color: #34495e;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.seo-content p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.seo-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.seo-content li {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.seo-content strong {
    color: #2c3e50;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.cta-section h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-section .btn {
    background: #28a745;
    border-color: #28a745;
    color: white;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.cta-section .btn:hover {
    background: #218838;
    border-color: #1e7e34;
    color: white;
}

/* Alert Styling */
.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 1px solid #bee5eb;
    color: #0c5460;
    border-radius: 0.5rem;
    padding: 2rem;
}

.alert-info h4 {
    color: #0c5460;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .seo-header {
        padding: 2rem 1rem;
    }
    
    .seo-content {
        padding: 1.5rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-actions {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .seo-header {
        padding: 1.5rem 1rem;
    }
    
    .seo-content {
        padding: 1rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
}
