/* Learning Centre Plugin Styles - Master Import File */
/* This file imports all modular CSS files for the Learning Centre plugin */

/* 1. Base - Variables, resets, license message, theme overrides, checkboxes */
@import url('modules/lc-base.css');

/* 2. Hub - Topic grid layout, search icon, hub page styling */
@import url('modules/lc-hub.css');

/* 3. Category - Article cards, listing grids, featured images */
@import url('modules/lc-category.css');

/* 4. Filters - JetSmartFilters styling, pagination, clear filters */
@import url('modules/lc-filters.css');

/* 4.1. JetSearch - JetEngine AJAX search styling */
@import url('modules/lc-jetsearch.css');

/* 5. Header/Footer - Header structures, backgrounds, curves, navigation */
@import url('modules/lc-header-footer.css');

/* 5.1. Taxonomy Header - Breadcrumbs and search icon header for taxonomy pages */
@import url('modules/lc-taxonomy-header.css');

/* 6. Badges - Badge system, difficulty badges, essential badges, card badges */
@import url('modules/lc-badges.css');

/* 7. Article - Single article page, TOC, featured images, video embeds, author bio */
@import url('modules/lc-article.css');

/* 8. Responsive - Media queries for mobile, tablet, and desktop breakpoints */
@import url('modules/lc-responsive.css');

/* ============================================
   CTA BOX (Frontend Taxonomy Pages)
   ============================================ */

/* CTA Box Container */
.lc-plugin-wrapper .lc-header-cta-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 32px;
    margin-top: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.lc-plugin-wrapper .lc-cta-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.lc-plugin-wrapper .lc-cta-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.lc-plugin-wrapper .lc-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.lc-plugin-wrapper .lc-cta-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lc-plugin-wrapper .lc-cta-btn-primary {
    background: #2563eb;
    color: #ffffff;
    border: 2px solid #2563eb;
}

.lc-plugin-wrapper .lc-cta-btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.lc-plugin-wrapper .lc-cta-btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.lc-plugin-wrapper .lc-cta-btn-secondary:hover {
    background: #f0f7ff;
    border-color: #1d4ed8;
    color: #1d4ed8;
    transform: translateY(-2px);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .lc-plugin-wrapper .lc-header-cta-box {
        padding: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .lc-plugin-wrapper .lc-cta-title {
        font-size: 16px;
    }

    .lc-plugin-wrapper .lc-cta-description {
        font-size: 13px;
    }

    .lc-plugin-wrapper .lc-cta-buttons {
        flex-direction: column;
    }

    .lc-plugin-wrapper .lc-cta-btn {
        width: 100%;
        text-align: center;
    }
}
