/* Blog Details and Index Stylesheet - Modern Premium Theme */

:root {
    --primary-color: #099ad1;
    --primary-dark: #0077a3;
    --primary-light: #e0f2fe;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1. Blog Hero Section */
.blog-hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.blog-hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero-category {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
}

.blog-hero-title {
    font-family: 'Tajawal', 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.blog-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.blog-hero-meta-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.blog-hero-meta-item i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-hero {
        height: 380px;
    }
    .blog-hero-title {
        font-size: 1.8rem;
    }
    .blog-hero-meta {
        font-size: 0.85rem;
        gap: 10px;
    }
}

/* 2. Layout & Container */
.blog-main-container {
    background-color: #f8fafc;
}

.blog-content-wrapper {
    background: #ffffff !important;
    border-radius: var(--radius-md) !important;
    padding: 35px !important;
    box-shadow: var(--shadow-md) !important;
    border: 1px solid var(--slate-100) !important;
    margin-bottom: 30px;
}

/* 3. Featured Image */
.blog-featured-image-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.blog-featured-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.blog-featured-image-container:hover .blog-featured-image {
    transform: scale(1.02);
}

/* 4. Meta Subbar */
.blog-meta-subbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--slate-200);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-author-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(9, 154, 209, 0.2);
}

.blog-author-info .author-label {
    display: block;
    font-size: 0.75rem;
    color: var(--slate-600);
}

.blog-author-info .author-name {
    font-weight: 700;
    color: var(--slate-900);
    font-size: 0.95rem;
}

.blog-quick-stats {
    display: flex;
    gap: 15px;
    color: var(--slate-600);
    font-size: 0.85rem;
}

.blog-quick-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 5. Typography Content */
.blog-content-body {
    color: var(--slate-700);
    font-size: 1.15rem;
    line-height: 1.95;
    font-family: 'Tajawal', sans-serif;
}

.blog-content-body p {
    margin-bottom: 1.6rem;
    text-align: justify;
}

.blog-content-body h1, 
.blog-content-body h2, 
.blog-content-body h3, 
.blog-content-body h4 {
    font-family: 'Tajawal', sans-serif;
    color: var(--slate-900);
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content-body h2 {
    font-size: 1.7rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--slate-100);
    position: relative;
}

.blog-content-body h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.blog-content-body h3 {
    font-size: 1.45rem;
}

.blog-content-body h4 {
    font-size: 1.25rem;
}

.blog-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 1.5rem auto;
    display: block;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200);
}

.blog-content-body ul, 
.blog-content-body ol {
    margin-bottom: 1.6rem;
    padding-left: 20px;
}

.blog-content-body li {
    margin-bottom: 0.6rem;
}

.blog-content-body blockquote {
    background: var(--slate-50);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 2rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--slate-800);
    font-size: 1.2rem;
    line-height: 1.8;
}

/* 6. Sidebar Styling */
.widget {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    margin-bottom: 25px;
}

.widget-title {
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--slate-900);
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--slate-100);
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 45px;
    height: 2px;
    background: var(--primary-color);
}

.widget-divider {
    border: 0;
    height: 1px;
    background: var(--slate-200);
    margin: 20px 0;
}

/* Search widget */
.search-widget {
    padding: 15px 20px;
}

.search-input-group {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    transition: var(--transition);
}

.search-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(9, 154, 209, 0.15);
}

.search-input-group input {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 10px 15px;
    height: auto;
    font-size: 0.95rem;
}

.search-submit-btn {
    border: 0 !important;
    background: var(--primary-color) !important;
    color: #ffffff !important;
    padding: 10px 18px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    transition: var(--transition) !important;
}

.search-submit-btn:hover {
    background: var(--primary-dark) !important;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--slate-100);
    list-style: none;
    transition: var(--transition);
}

.recent-post-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.recent-post-thumb {
    width: 65px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--slate-200);
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.recent-post-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.recent-post-title {
    color: var(--slate-800);
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.4;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Tajawal', sans-serif;
}

.recent-post-title:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

.recent-post-date {
    font-size: 0.75rem;
    color: var(--slate-600);
    display: flex;
    align-items: center;
    gap: 4px;
}

.recent-post-date i {
    font-size: 0.8rem;
}

/* Tags Widget */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill {
    display: inline-block;
    padding: 6px 14px;
    background: var(--slate-100);
    color: var(--slate-700);
    border-radius: var(--radius-lg);
    font-size: 0.82rem;
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid var(--slate-200);
    font-family: 'Tajawal', sans-serif;
}

.tag-pill:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* 7. Social Share Section */
.social-share-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--slate-200);
}

.share-title {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--slate-900);
    margin-bottom: 15px;
    font-family: 'Tajawal', sans-serif;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.share-btn.fb { background-color: #1877f2; }
.share-btn.fb:hover { background-color: #166fe5; transform: translateY(-2px); }

.share-btn.tw { background-color: #0f1419; }
.share-btn.tw:hover { background-color: #272c30; transform: translateY(-2px); }

.share-btn.wa { background-color: #25d366; }
.share-btn.wa:hover { background-color: #20ba5a; transform: translateY(-2px); }

.share-btn.tg { background-color: #24A1DE; }
.share-btn.tg:hover { background-color: #1e87bb; transform: translateY(-2px); }

.share-btn.cp { 
    background-color: var(--slate-200); 
    color: var(--slate-800) !important;
    border: 1px solid var(--slate-300);
}
.share-btn.cp:hover { 
    background-color: var(--slate-300); 
    transform: translateY(-2px); 
}

.share-btn.cp svg {
    stroke: currentColor;
    fill: none;
}

/* 8. Comments Section */
.comments-section-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--slate-200);
}

.section-title {
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--slate-900);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary-color);
}

.comments-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    list-style: none;
}

.comment-avatar-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
}

.comment-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content-block {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    flex-grow: 1;
    position: relative;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.comment-author-name {
    font-weight: 700;
    color: var(--slate-900);
    font-size: 0.95rem;
}

.comment-meta-divider {
    color: var(--slate-300);
}

.comment-date-posted {
    font-size: 0.78rem;
    color: var(--slate-600);
    display: flex;
    align-items: center;
    gap: 4px;
}

.comment-text-content {
    color: var(--slate-700);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.92rem;
}

/* Speech bubble arrow effect */
.comment-content-block::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid var(--slate-200);
}

.comment-content-block::after {
    content: '';
    position: absolute;
    top: 15px;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid var(--slate-50);
}

/* 9. Reply Form Section */
.comment-reply-form-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--slate-200);
}

.floating-label-group {
    position: relative;
    margin-bottom: 25px;
}

.modern-input, 
.modern-textarea {
    width: 100%;
    background: var(--slate-50) !important;
    border: 1px solid var(--slate-200) !important;
    border-radius: var(--radius-sm) !important;
    padding: 14px 16px !important;
    color: var(--slate-800) !important;
    font-size: 0.95rem !important;
    height: auto !important;
    transition: var(--transition) !important;
    box-shadow: none !important;
}

.modern-textarea {
    resize: none;
}

.modern-input:focus, 
.modern-textarea:focus {
    border-color: var(--primary-color) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(9, 154, 209, 0.15) !important;
}

/* Label styling */
.floating-label {
    position: absolute;
    top: 15px;
    left: 16px;
    color: var(--slate-600);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition);
    transform-origin: left top;
    font-family: 'Tajawal', sans-serif;
    margin-bottom: 0;
}

/* Move label up on focus or when input is not empty */
.modern-input:focus ~ .floating-label,
.modern-textarea:focus ~ .floating-label,
.modern-input:not(:placeholder-shown) ~ .floating-label,
.modern-textarea:not(:placeholder-shown) ~ .floating-label {
    transform: translateY(-24px) scale(0.8);
    color: var(--primary-color);
    font-weight: 700;
    background: #ffffff;
    padding: 0 6px;
}

.recaptcha-wrapper {
    margin-bottom: 20px;
}

.form-actions-group {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-modern i {
    font-size: 1rem;
}

.btn-modern.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-modern.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-modern.btn-secondary {
    background: var(--slate-100);
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
}

.btn-modern.btn-secondary:hover {
    background: var(--slate-200);
    color: var(--slate-900);
}

/* 10. Copy Link Toast Notification */
.share-toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 50px);
    background: var(--slate-900);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.share-toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.toast-check-icon {
    color: #10b981;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-content-wrapper {
        padding: 20px !important;
    }
    .form-actions-group {
        flex-direction: column-reverse;
    }
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    .comment-item {
        flex-direction: column;
        gap: 10px;
    }
    .comment-avatar-wrapper {
        width: 40px;
        height: 40px;
    }
    .comment-content-block::before,
    .comment-content-block::after {
        display: none;
    }
    .blog-meta-subbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .share-btn {
        flex-grow: 1;
        justify-content: center;
    }
}

/* 11. Blog Listing Layout */
.blog-list-item {
    margin-bottom: 45px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--slate-200);
}

.blog-list-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.post-image-link {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 16 / 9;
}

.post-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-list-item:hover .post-image-link img {
    transform: scale(1.02);
}

.post-title-link {
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    font-size: 1.65rem;
    color: var(--slate-900) !important;
    line-height: 1.4;
    transition: var(--transition);
    text-decoration: none !important;
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
}

.post-title-link:hover {
    color: var(--primary-color) !important;
}

.post-excerpt {
    color: var(--slate-700);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 25px;
    text-align: justify;
    font-family: 'Tajawal', sans-serif;
}

.btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--slate-100);
    color: var(--slate-800) !important;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none !important;
    border: 1px solid var(--slate-200);
}

.btn-readmore:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-readmore i {
    font-size: 0.8rem;
}

/* 12. Blog Cards Grid (for Sights/Tours) */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--slate-200);
}

.blog-card-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(9, 154, 209, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image-overlay {
    opacity: 1;
}

.card-read-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.blog-card:hover .card-read-icon {
    transform: scale(1);
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-decoration: none !important;
    transition: var(--transition);
}

.blog-card-tag:hover, .blog-card-tag-active {
    background: var(--primary-color);
    color: #ffffff !important;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 12px;
    font-family: 'Tajawal', sans-serif;
}

.blog-card-title-link {
    color: var(--slate-900) !important;
    text-decoration: none !important;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title-link:hover {
    color: var(--primary-color) !important;
}

.blog-card-excerpt {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--slate-100);
    margin-top: auto;
}

.card-meta-date {
    font-size: 0.85rem;
    color: var(--slate-500);
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-readmore-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
}

/* Empty State */
.blog-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px dashed var(--slate-300);
    grid-column: 1 / -1;
}

.empty-state-icon {
    font-size: 3rem;
    color: var(--slate-300);
    margin-bottom: 15px;
}

.empty-state-title {
    font-size: 1.5rem;
    color: var(--slate-800);
    margin-bottom: 10px;
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
}

.empty-state-desc {
    color: var(--slate-600);
    margin-bottom: 25px;
}

/* Pagination modern styling */
.blog-pagination-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.blog-pagination-nav .pagination {
    gap: 5px;
}

.blog-pagination-nav .page-item .page-link {
    border-radius: var(--radius-sm);
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
}

.blog-pagination-nav .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.blog-pagination-nav .page-item .page-link:hover {
    background: var(--slate-100);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
    }
}