/* ============================================
   Blog Styles - Public Pages
   ============================================ */

/* Blog Index Page */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Override for show page - will be handled by show.css */

.blog-header {
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color, #e5e7eb);
}

.blog-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary, #111827);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-header p {
    font-size: 1.1rem;
    color: var(--text-secondary, #6b7280);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Post Card */
.blog-post-card {
    background: var(--bg-card, #ffffff);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color, #e5e7eb);
    overflow: hidden;
}

.blog-post-card-content {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.blog-post-card-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.blog-post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-card-image img {
    transform: scale(1.1);
}

.blog-post-card-info {
    flex: 1;
    padding: 1.75rem;
}

@media (max-width: 768px) {
    .blog-post-card-content {
        flex-direction: column;
    }
    
    .blog-post-card-image {
        width: 100%;
        height: 200px;
        border-radius: 12px 12px 0 0;
    }
    
    .blog-post-card-info {
        padding: 1.5rem;
    }
}

.blog-post-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.blog-post-card-header h2 {
    flex: 1;
    margin: 0;
}

.blog-post-category-badge {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
    color: #4338ca;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    margin-right: 1rem;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.blog-post-category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(67, 56, 202, 0.3);
    background: linear-gradient(135deg, #c7d2fe 0%, #c4b5fd 100%);
}

.blog-post-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-color, #667eea);
}

.blog-post-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-post-card h2 a {
    color: var(--text-primary, #111827);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post-card h2 a:hover {
    color: var(--primary-color, #667eea);
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary, #6b7280);
    margin-bottom: 1rem;
}

.blog-post-meta i {
    margin-left: 0.25rem;
}

.blog-post-summary {
    color: var(--text-secondary, #6b7280);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.blog-tag.active {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--primary-color, #667eea);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

.blog-read-more i {
    transition: transform 0.2s;
}

.blog-read-more:hover i {
    transform: translateX(-3px);
}

/* Pagination */
.blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

/* ============================================
   Blog Show Page (Single Post)
   ============================================ */

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card, #ffffff);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.blog-article-header {
    border-bottom: 2px solid var(--border-color, #e5e7eb);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.blog-article-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary, #111827);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-article-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary, #6b7280);
    margin-bottom: 1rem;
}

.blog-article-category-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: all 0.2s;
}

.blog-article-category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.blog-article-meta-info {
    margin-top: 0.5rem;
}

.blog-article-author-link {
    color: var(--primary-color, #667eea);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-article-author-link:hover {
    color: var(--primary-dark, #764ba2);
    text-decoration: underline;
}

[data-theme="dark"] .blog-article-author-link {
    color: #a78bfa;
}

[data-theme="dark"] .blog-article-author-link:hover {
    color: #c084fc;
}

.blog-article-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-article-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary, #111827);
    margin-bottom: 2rem;
}

.blog-article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary, #111827);
}

.blog-article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary, #111827);
}

/* Blog Article Image */
.blog-article-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-article-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-article-content p {
    margin-bottom: 1.25rem;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 1.25rem;
    padding-right: 1.5rem;
}

.blog-article-content li {
    margin-bottom: 0.5rem;
}

/* Related Links Section */
.blog-related-links {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2.5rem;
    border-right: 4px solid var(--primary-color, #667eea);
}

.blog-related-links h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary, #111827);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-related-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-related-links li {
    margin-bottom: 0.75rem;
    padding-right: 1.5rem;
    position: relative;
}

.blog-related-links li::before {
    content: "→";
    position: absolute;
    right: 0;
    color: var(--primary-color, #667eea);
    font-weight: bold;
}

.blog-related-links a {
    color: var(--primary-color, #667eea);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.blog-related-links a:hover {
    text-decoration: underline;
    color: var(--primary-hover, #5568d3);
}

/* ============================================
   Comments Section
   ============================================ */

.blog-comments {
    max-width: 800px;
    margin: 3rem auto 0;
}

.blog-comments h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary, #111827);
}

.blog-comment-form {
    background: var(--bg-card, #ffffff);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.blog-comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary, #111827);
}

.blog-comment-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem;
    border: 2px solid var(--border-color, #e5e7eb);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s;
}

.blog-comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color, #667eea);
}

.blog-comment-form button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.blog-comment-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.blog-comment-item {
    background: var(--bg-card, #ffffff);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-right: 3px solid var(--primary-color, #667eea);
}

.blog-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.blog-comment-author {
    font-weight: 700;
    color: var(--text-primary, #111827);
}

.blog-comment-date {
    font-size: 0.8125rem;
    color: var(--text-secondary, #6b7280);
}

.blog-comment-content {
    color: var(--text-secondary, #6b7280);
    line-height: 1.7;
    white-space: pre-line;
}

.blog-comment-login {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card, #ffffff);
    border-radius: 12px;
    color: var(--text-secondary, #6b7280);
}

.blog-comment-login a {
    color: var(--primary-color, #667eea);
    text-decoration: none;
    font-weight: 600;
}

.blog-comment-login a:hover {
    text-decoration: underline;
}

/* Empty State */
.blog-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary, #6b7280);
}

/* ============================================
   Dark Mode Support
   ============================================ */

[data-theme="dark"] .blog-post-card,
[data-theme="dark"] .blog-article,
[data-theme="dark"] .blog-comment-form,
[data-theme="dark"] .blog-comment-item,
[data-theme="dark"] .blog-comment-login,
[data-theme="dark"] .blog-filters,
[data-theme="dark"] .blog-widget,
[data-theme="dark"] .blog-search-autocomplete,
[data-theme="dark"] .blog-comments {
    background: #1f2937;
    border-color: #374151;
}

[data-theme="dark"] .blog-header h1 {
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .blog-post-card h2 a,
[data-theme="dark"] .blog-article-title,
[data-theme="dark"] .blog-comments h2 {
    color: #f9fafb;
}

[data-theme="dark"] .blog-post-summary,
[data-theme="dark"] .blog-article-content,
[data-theme="dark"] .blog-comment-content {
    color: #d1d5db;
}

[data-theme="dark"] .blog-comments {
    background: #1f2937;
    border-color: #374151;
}

[data-theme="dark"] .blog-comment-form textarea {
    background: #374151;
    color: #f9fafb;
    border-color: #4b5563;
}

[data-theme="dark"] .blog-comment-form textarea:focus {
    background: #374151;
    border-color: #818cf8;
}

[data-theme="dark"] .blog-comment-form textarea::placeholder {
    color: #9ca3af;
}

[data-theme="dark"] .blog-comment-form button {
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
}

[data-theme="dark"] .blog-comment-form button:hover {
    background: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%);
}

[data-theme="dark"] .blog-comment-author {
    color: #f9fafb;
}

[data-theme="dark"] .blog-comment-date {
    color: #9ca3af;
}

[data-theme="dark"] .blog-related-links {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
}

[data-theme="dark"] .blog-search-form input {
    background: #1f2937;
    color: #f9fafb;
    border-color: #374151;
}

[data-theme="dark"] .blog-search-form input:focus {
    background: #1f2937;
    border-color: #818cf8;
}

[data-theme="dark"] .blog-search-form input::placeholder {
    color: #9ca3af;
}

[data-theme="dark"] .blog-category-filter {
    background: #374151;
    color: #d1d5db;
    border-color: #4b5563;
}

[data-theme="dark"] .blog-category-filter:hover {
    background: #4b5563;
    color: #f9fafb;
}

[data-theme="dark"] .blog-category-filter.active {
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%) !important;
    color: white !important;
}

[data-theme="dark"] .blog-widget h3 {
    color: #f9fafb;
}

[data-theme="dark"] .blog-widget a {
    color: #f9fafb;
}

[data-theme="dark"] .blog-widget a:hover {
    color: #a78bfa;
}

[data-theme="dark"] .blog-widget .meta {
    color: #9ca3af;
}

[data-theme="dark"] .blog-tag-cloud {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
    color: #e0e7ff;
}

[data-theme="dark"] .blog-tag-cloud:hover {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    color: #f3f4f6;
}

[data-theme="dark"] .blog-post-category-badge {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
    color: #e0e7ff;
}

[data-theme="dark"] .blog-post-category-badge:hover {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    color: #f3f4f6;
}

[data-theme="dark"] .blog-search-autocomplete li a {
    color: #f9fafb;
}

[data-theme="dark"] .blog-search-autocomplete li a:hover,
[data-theme="dark"] .blog-search-autocomplete li a.focused {
    background: #374151;
    color: #a78bfa;
}

[data-theme="dark"] .blog-search-autocomplete li a .summary {
    color: #9ca3af;
}

/* Social Share Buttons */
.blog-social-share {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color, #e5e7eb);
}

.blog-social-share h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary, #111827);
}

.blog-social-share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
}

.blog-share-btn.telegram {
    background: #0088cc;
    color: white;
}

.blog-share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.blog-share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.blog-share-btn.share {
    background: #6b7280;
    color: white;
}

.blog-share-btn.print {
    background: #10b981;
    color: white;
}

.blog-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .blog-social-share {
    border-top-color: #374151;
}

[data-theme="dark"] .blog-social-share h3 {
    color: #f9fafb;
}

/* Related Posts */
.blog-related-posts {
    margin-top: 3rem;
}

.blog-related-posts h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary, #111827);
}

.blog-related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-related-post-card {
    margin: 0;
}

.blog-related-post-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.blog-related-post-card .blog-post-meta {
    font-size: 0.75rem;
}

.blog-related-post-card .blog-post-summary {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

[data-theme="dark"] .blog-related-posts h2 {
    color: #f9fafb;
}

/* Category Filter */
.blog-category-filter.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.blog-category-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Blog Filters Container */
.blog-filters {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card, #ffffff);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color, #e5e7eb);
}

/* Search Form */
.blog-search-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.blog-search-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border-color, #e5e7eb);
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: border-color 0.2s;
    background: var(--bg-primary, #ffffff);
    color: var(--text-primary, #111827);
}

.blog-search-form input::placeholder {
    color: var(--text-secondary, #6b7280);
}

.blog-search-form input:focus {
    outline: none;
    border-color: var(--primary-color, #667eea);
    background: var(--bg-primary, #ffffff);
}

.blog-search-form button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
}

.blog-search-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Search Autocomplete */
.blog-search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary, #ffffff);
    border: 2px solid var(--border-color, #e5e7eb);
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-search-autocomplete ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-search-autocomplete li {
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.blog-search-autocomplete li:last-child {
    border-bottom: none;
}

.blog-search-autocomplete li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-primary, #111827);
    text-decoration: none;
    transition: background 0.2s;
}

.blog-search-autocomplete li a:hover,
.blog-search-autocomplete li a.focused {
    background: var(--bg-secondary, #f3f4f6);
    color: var(--primary-color, #667eea);
}

.blog-search-autocomplete li a .title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.blog-search-autocomplete li a .summary {
    font-size: 0.75rem;
    color: var(--text-secondary, #6b7280);
}

/* Categories Filter */
.blog-categories-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-category-filter {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary, #f3f4f6);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary, #374151);
    font-size: 0.875rem;
    transition: all 0.2s;
    border: 1px solid var(--border-color, #e5e7eb);
}

.blog-category-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    background: var(--bg-tertiary, #e5e7eb);
}

.blog-category-filter.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-color: transparent;
}

/* Blog Sidebar */
.blog-sidebar {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Blog Widget */
.blog-widget {
    background: var(--bg-card, #ffffff);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color, #e5e7eb);
}

.blog-widget h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary, #111827);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-widget li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.blog-widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-widget a {
    color: var(--text-primary, #111827);
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.blog-widget a:hover {
    color: var(--primary-color, #667eea);
}

.blog-widget .title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.blog-widget .meta {
    font-size: 0.75rem;
    color: var(--text-secondary, #6b7280);
}

/* Tags Cloud */
.blog-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag-cloud {
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
    color: #4338ca;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    border: 1px solid transparent;
}

.blog-tag-cloud:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(67, 56, 202, 0.3);
    background: linear-gradient(135deg, #c7d2fe 0%, #c4b5fd 100%);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-article {
        padding: 1.5rem;
    }

    .blog-article-title {
        font-size: 1.75rem;
    }

    .blog-post-card {
        padding: 1.25rem;
    }

    .blog-post-card h2 {
        font-size: 1.25rem;
    }

    .blog-search-form {
        flex-direction: column;
    }

    .blog-social-share > div {
        flex-direction: column;
    }

    .blog-social-share .blog-share-btn {
        width: 100%;
        justify-content: center;
    }
}


