/* ===========================================
   LAKE CHARLES BIZ HIVE - ARTICLES LIST STYLES
   Extends home.css with articles page styles
   =========================================== */

/* --- PAGE HEADER --- */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 120px 0 40px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- ARTICLES MAIN --- */
.articles-main {
    padding: 40px 0 60px;
    background: var(--bg-light);
    min-height: 50vh;
}

/* --- FILTER BAR --- */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.category-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-filter label {
    font-weight: 500;
    color: var(--text-dark);
}

.category-filter select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--white);
    cursor: pointer;
    min-width: 180px;
}

.category-filter select:focus {
    outline: none;
    border-color: var(--primary);
}

.results-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- ARTICLES GRID --- */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* --- ARTICLE CARD --- */
.article-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.article-category {
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.article-date i {
    margin-right: 5px;
}

.article-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.article-title a:hover {
    color: var(--primary);
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.article-author {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-author i {
    color: var(--primary);
    margin-right: 5px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent);
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* --- NO RESULTS --- */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.no-results i {
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.3;
    margin-bottom: 20px;
}

.no-results h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-muted);
}

/* ===========================================
   RESPONSIVE BREAKPOINTS
   =========================================== */

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 3rem;
    }
}

/* Desktop - 992px and up */
@media (min-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
