
/* ==========================================================================
   Blog Styles
   ========================================================================== */

/* Blog Container */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blog-header h1 {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.blog-header .btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}

.blog-header .btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Search and Filter Card */
.blog-search-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.blog-search-card .card-body {
    padding: 1.5rem;
}

.blog-search-card .form-control,
.blog-search-card .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.blog-search-card .form-control:focus,
.blog-search-card .form-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.blog-search-card .btn-outline-primary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-search-card .btn-outline-primary:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Filter Alert */
.blog-filter-alert {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #1e40af;
}

.blog-filter-alert .btn-outline-secondary {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.blog-filter-alert .btn-outline-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #374151;
}

/* Blog Post Cards */
.blog-post-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-post-card .card-body {
    padding: 2rem;
}

.blog-post-card .card-title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.blog-post-card .card-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card .card-title a:hover {
    color: #3b82f6;
}

.blog-post-card .card-text {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Post Meta Information */
.blog-post-meta {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-post-meta i {
    margin-right: 0.25rem;
}

/* Badges */
.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-badge.bg-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.blog-badge.bg-secondary:hover {
    background: #e2e8f0;
    color: #334155;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-badge.bg-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.blog-badge.bg-warning:hover {
    background: #fde68a;
    color: #78350f;
}

/* Tags */
.blog-tags {
    margin-bottom: 1.5rem;
}

.blog-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.blog-tag:hover {
    background: #e2e8f0;
    color: #334155;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-decoration: none;
}

/* Action Buttons */
.blog-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.blog-actions .btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}

.blog-actions .btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Secondary Button */
.btn-secondary {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(107, 114, 128, 0.3);
    cursor: pointer;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(107, 114, 128, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.3);
}

/* Danger Button */
.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(239, 68, 68, 0.3);
    cursor: pointer;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(239, 68, 68, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-danger:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}

.blog-actions .btn-outline-primary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.blog-actions .btn-outline-primary:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-1px);
}

.blog-actions .btn-outline-secondary {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.blog-actions .btn-outline-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #374151;
}

.blog-actions .btn-outline-danger {
    background: transparent;
    color: #ef4444;
    border: 1px solid #fecaca;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.blog-actions .btn-outline-danger:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
}

/* Pagination */
.blog-pagination {
    margin-top: 3rem;
}

.blog-pagination .pagination {
    justify-content: center;
    gap: 0.5rem;
}

.blog-pagination .page-link {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
    transform: translateY(-1px);
}

.blog-pagination .page-item.active .page-link {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

/* Empty State */
.blog-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.blog-empty-state i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.blog-empty-state h3 {
    color: #374151;
    margin-bottom: 1rem;
}

.blog-empty-state .btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}

.blog-empty-state .btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Blog Detail Styles */
.blog-detail-header {
    margin-bottom: 2rem;
}

.blog-detail-title {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-detail-meta {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.blog-detail-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.blog-detail-content .card-body {
    padding: 2rem;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h1, .blog-content h2, .blog-content h3, 
.blog-content h4, .blog-content h5, .blog-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 700;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content blockquote {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6b7280;
    background: #f9fafb;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

/* Related Posts */
.blog-related-posts {
    margin-top: 3rem;
}

.blog-related-posts h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.blog-related-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-related-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.blog-related-card .card-title {
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-related-card .card-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-related-card .card-title a:hover {
    color: #3b82f6;
}

.blog-related-card .card-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-related-card .card-footer {
    background: transparent;
    border-top: none;
    padding: 0 1.5rem 1.5rem;
}

.blog-related-card .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

/* Blog Form Styles */
.blog-form-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.blog-form-card .card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem;
}

.blog-form-card .card-header h2 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.blog-form-card .card-body {
    padding: 2rem;
}

.blog-form-card .form-control,
.blog-form-card .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.blog-form-card .form-control:focus,
.blog-form-card .form-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.blog-form-card .form-check {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.blog-form-card .form-check:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
}

.blog-form-card .form-check-input {
    margin: 0;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
}

.blog-form-card .form-check-label {
    font-weight: 500;
    color: #374151;
}

/* Help Card */
.blog-help-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-top: 2rem;
    overflow: hidden;
}

.blog-help-card .card-header {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
}

.blog-help-card .card-header h5 {
    color: #374151;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.blog-help-card .card-body {
    padding: 1.5rem;
}

.blog-help-card ul {
    margin: 0;
    padding-left: 1.25rem;
}

.blog-help-card li {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.blog-help-card strong {
    color: #374151;
}

/* Form Fields Layout */
.blog-form-fields {
    margin-bottom: 2rem;
}

.blog-form-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.blog-form-row:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.blog-form-label {
    padding-top: 0.5rem;
}

.blog-form-label label {
    font-weight: 700;
    color: #374151;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-form-label .form-text {
    color: #6b7280;
    font-size: 0.7rem;
    margin-top: 0.25rem;
    line-height: 1.4;
}

.blog-form-field {
    min-width: 0; /* Prevents grid overflow */
}

.blog-form-field .form-control,
.blog-form-field .form-select {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.blog-form-field .form-control:focus,
.blog-form-field .form-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.blog-form-field textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Group */
.blog-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.blog-checkbox-item:hover {
    border-color: #d1d5db;
    background: #ffffff;
}

.blog-checkbox-item .form-check-input {
    margin: 0;
    margin-top: 0.125rem;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.blog-checkbox-item .form-check-input:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.blog-checkbox-item .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.blog-checkbox-item label {
    font-weight: 500;
    color: #374151;
    margin: 0;
    cursor: pointer;
    flex: 1;
}

.blog-checkbox-item .form-text {
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* Form Errors */
.form-errors {
    margin-top: 0.5rem;
}

.form-errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-errors li {
    color: #dc2626;
    font-size: 0.75rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
}

/* Form Actions */
.blog-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Delete Confirmation */
.blog-delete-card {
    background: #ffffff;
    border: 2px solid #fecaca;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.blog-delete-card .card-header {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-bottom: 1px solid #fecaca;
    padding: 1.5rem;
}

.blog-delete-card .card-header h2 {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.blog-delete-card .card-body {
    padding: 2rem;
}

.blog-delete-card .alert-warning {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.blog-delete-card .btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(239, 68, 68, 0.3);
}

.blog-delete-card .btn-danger:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(239, 68, 68, 0.4);
}

/* Small Button Variant */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

.btn-outline-primary.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

/* General Button Styles */
.btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
    cursor: pointer;
}

.btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Button Group Styles */
.btn-group {
    display: inline-flex;
    gap: 0.5rem;
}

.btn-group .btn {
    margin: 0;
}

/* Utility Classes */
.text-muted {
    color: #6b7280 !important;
}

.text-md-end {
    text-align: right;
}

@media (max-width: 768px) {
    .text-md-end {
        text-align: left;
    }
}

.w-100 {
    width: 100% !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-header {
        padding: 1.5rem;
        text-align: center;
    }
    
    .blog-header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .blog-post-card .card-body {
        padding: 1.5rem;
    }
    
    .blog-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .blog-actions .btn-group {
        justify-content: center;
    }
    
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-content .card-body {
        padding: 1.5rem;
    }
    
    .blog-form-card .card-body {
        padding: 1.5rem;
    }
    
    .blog-form-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .blog-form-actions .btn-group {
        justify-content: center;
    }
    
    .blog-form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .blog-form-label {
        padding-top: 0;
    }
    
    .blog-form-label label {
        font-size: 0.8rem;
    }
    
    .blog-checkbox-group {
        gap: 0.75rem;
    }
    
    .blog-checkbox-item {
        padding: 0.75rem;
    }
}
