/* Bingo Gold Cash — WordPress Theme Overrides */
/* This file extends the base frontend.css with WordPress-specific styles */

/* ====== WordPress Content Reset ====== */
.wp-block-columns,
.wp-block-group,
.wp-block-cover {
    max-width: 100%;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: var(--font-display);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.entry-content h1 { font-size: 32px; }
.entry-content h2 { font-size: 26px; }
.entry-content h3 { font-size: 20px; }
.entry-content h4 { font-size: 18px; }

.entry-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--gray-700);
}

.entry-content a {
    color: var(--coral);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.entry-content a:hover {
    color: var(--coral-dark);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
    color: var(--gray-700);
    line-height: 1.8;
}

.entry-content li {
    margin-bottom: 6px;
}

.entry-content strong {
    font-weight: 700;
    color: var(--gray-900);
}

.entry-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 16px 24px;
    margin: 20px 0;
    background: var(--gray-100);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--gray-700);
}

/* ====== Blog Card Image Fallback ====== */
.blog-thumb {
    background: linear-gradient(135deg, #FFFCF0, #FFF6E0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====== Sticky Post ====== */
.sticky .blog-card {
    border-color: var(--gold);
}

/* ====== Pagination ====== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 48px 0;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--gray-200);
    color: var(--gray-500);
    transition: .2s;
}

.page-numbers:hover,
.page-numbers.current {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(255, 184, 0, .08);
}

/* ====== Single Post Meta ====== */
.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 600;
}

.post-meta a {
    color: var(--coral);
    text-decoration: none;
}

/* ====== Mobile Menu Toggle ====== */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: .3s;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, .98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 20px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 14px 18px;
        border-radius: 10px;
    }
}

/* ====== Breadcrumb ====== */
.breadcrumb {
    padding: 12px 48px;
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 600;
}

.breadcrumb a {
    color: var(--gray-400);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold-dark);
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 12px 20px;
    }
}
