/* ==========================================================================
   CASINO QATAR - SINGLE BLOG ARTICLE STYLES (LIGHT LUXURY THEME)
   ========================================================================== */

.single-article-page {
    width: 100%;
    background-color: #f8fafc;
    padding: 30px 0 70px 0;
    direction: rtl;
    color: #334155;
    font-family: inherit;
}

.article-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumbs */
.article-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 25px;
}

.article-breadcrumbs a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-breadcrumbs a:hover {
    color: #8a1538;
}

.article-breadcrumbs .breadcrumb-sep {
    color: #cbd5e1;
    font-size: 11px;
}

.article-breadcrumbs .current {
    color: #0f172a;
    font-weight: 700;
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Layout Grid: 2 Columns */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}

/* Main Article Column */
.article-main-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

/* Header Info */
.article-header {
    margin-bottom: 30px;
}

.article-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fdf2f8;
    color: #8a1538;
    border: 1px solid #fbcfe8;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.article-cat-badge:hover {
    background: #8a1538;
    color: #ffffff;
}

.article-main-title {
    font-size: 30px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.4;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

/* Meta Bar */
.article-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    color: #64748b;
}

.article-meta-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #d4af37;
    font-size: 14px;
}

.author-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-weight: 700;
}

.author-pill i {
    color: #8a1538;
}

/* Share Bar */
.article-share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-label {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 600;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.telegram { background: #0088cc; }
.share-btn.copy { background: #64748b; cursor: pointer; border: none; }

/* Featured Image */
.article-featured-image {
    width: 100%;
    max-height: 440px;
    border-radius: 16px;
    overflow: hidden;
    margin: 25px 0 35px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    background: #f1f5f9;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Article Content Body */
.article-body-content {
    font-size: 16px;
    line-height: 1.9;
    color: #334155;
}

.article-body-content p {
    margin: 0 0 20px 0;
}

.article-body-content h2 {
    font-size: 23px;
    font-weight: 900;
    color: #0f172a;
    margin: 40px 0 16px 0;
    padding-right: 14px;
    border-right: 4px solid #8a1538;
    line-height: 1.4;
}

.article-body-content h3 {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin: 30px 0 14px 0;
    padding-right: 10px;
    border-right: 3px solid #d4af37;
    line-height: 1.4;
}

.article-body-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 24px 0 12px 0;
}

.article-body-content ul, 
.article-body-content ol {
    margin: 0 0 24px 0;
    padding-right: 28px;
}

.article-body-content li {
    margin-bottom: 10px;
    position: relative;
}

.article-body-content ul li::marker {
    color: #8a1538;
}

.article-body-content ol li::marker {
    color: #8a1538;
    font-weight: 700;
}

.article-body-content a {
    color: #8a1538;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.2s;
}

.article-body-content a:hover {
    color: #d4af37;
}

.article-body-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.article-body-content blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    background: #fffdf5;
    border-right: 4px solid #d4af37;
    border-radius: 0 12px 12px 0;
    color: #475569;
    font-style: italic;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.06);
}

/* Tables inside content */
.article-body-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 14.5px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.article-body-content th {
    background: #0f172a;
    color: #ffffff;
    padding: 14px 16px;
    text-align: right;
    font-weight: 700;
    border-bottom: 2px solid #d4af37;
}

.article-body-content td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

.article-body-content tr:nth-child(even) {
    background-color: #f8fafc;
}

.article-body-content tr:hover {
    background-color: #f1f5f9;
}

/* In-Content VIP Banner Callout */
.article-incontent-vip-box {
    background: linear-gradient(135deg, #2d0b16 0%, #4a0f23 50%, #8a1538 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 36px 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(138, 21, 56, 0.2);
}

.vip-box-content h4 {
    color: #f6e05e;
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 6px 0;
}

.vip-box-content p {
    color: #e2e8f0;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.vip-box-cta-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #b8860b 100%);
    color: #0f172a;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
    transition: all 0.25s ease;
}

.vip-box-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
    color: #000000;
}

/* Author Box */
.article-author-bio {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-bio-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
    flex-shrink: 0;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 24px;
}

.author-bio-info h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.author-bio-info p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Article Navigation */
.article-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.nav-post-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.22s ease;
    display: flex;
    flex-direction: column;
}

.nav-post-card:hover {
    border-color: #8a1538;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.nav-post-label {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-post-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   SIDEBAR WIDGETS
   ========================================================================== */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 26px;
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.sidebar-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-widget-header i {
    color: #8a1538;
    font-size: 18px;
}

.sidebar-widget-title {
    font-size: 15.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

/* Top Casinos Mini Cards */
.top-casino-mini-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.top-casino-mini-card {
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 12px 14px;
    background: #f8fafc;
    transition: all 0.22s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-casino-mini-card:hover {
    border-color: #cbd5e1;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.mini-card-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-card-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #0f172a;
    padding: 4px;
    object-fit: contain;
}

.mini-card-name {
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.mini-card-bonus {
    font-size: 11px;
    color: #8a1538;
    font-weight: 700;
}

.mini-card-btn {
    background: linear-gradient(135deg, #5c0632 0%, #8a1538 100%);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.mini-card-btn:hover {
    background: #0f172a;
    color: #ffffff;
}

/* Related Posts Widget */
.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.related-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.related-post-item:hover .related-post-title {
    color: #8a1538;
}

.related-post-thumb {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f1f5f9;
}

.related-post-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.related-post-date {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
    display: block;
}

/* Sidebar VIP Card */
.sidebar-vip-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid #d4af37;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.sidebar-vip-banner h4 {
    color: #d4af37;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.sidebar-vip-banner p {
    font-size: 12.5px;
    color: #cbd5e1;
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.sidebar-vip-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #b8860b 100%);
    color: #0f172a;
    font-weight: 800;
    font-size: 13px;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-main-card {
        padding: 28px 20px;
    }
    .article-main-title {
        font-size: 24px;
    }
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .article-meta-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .article-incontent-vip-box {
        flex-direction: column;
        text-align: center;
    }
    .article-post-navigation {
        grid-template-columns: 1fr;
    }
}
