/* ===========================================
   LAKE CHARLES BIZ HIVE - ARTICLE PAGE STYLES
   Extends home.css with article page styles
   =========================================== */

/* --- ARTICLE HEADER --- */
.article-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 120px 0 30px;
    color: var(--white);
}

.article-header .breadcrumbs {
    color: var(--white);
    font-size: 0.9rem;
}

.article-header .breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.article-header .breadcrumbs a:hover {
    color: var(--white);
}

.article-header .breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    font-size: 0.7rem;
}

.article-header .breadcrumbs .current {
    color: var(--white);
}

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

/* --- ARTICLE LAYOUT --- */
.article-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* --- ARTICLE CONTENT --- */
.article-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

/* --- TITLE SECTION --- */
.article-title-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.article-category-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    transition: var(--transition);
}

.article-category-badge:hover {
    background: var(--primary-dark);
}

.article-title-section h1 {
    font-size: 1.8rem;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.meta-item a {
    color: var(--primary);
}

.meta-item a:hover {
    color: var(--accent);
}

/* --- ARTICLE BODY --- */
.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.article-body p {
    margin-bottom: 1.5em;
}

/* --- SHARE SECTION --- */
.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

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

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.copy {
    background: var(--text-muted);
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* --- AUTHOR CARD --- */
.author-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

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

.author-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.author-details {
    display: flex;
    flex-direction: column;
}

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

.author-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.author-name:hover {
    color: var(--accent);
}

/* --- SIDEBAR --- */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- SIDEBAR CARDS --- */
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h3 i {
    color: var(--primary);
}

/* --- RELATED ARTICLES --- */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    display: block;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.related-item:hover {
    background: #e8e8e8;
}

.related-category {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.related-item h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 8px;
}

.related-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.related-meta i {
    margin-right: 5px;
}

/* --- CATEGORY LIST --- */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-link {
    display: block;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition);
}

.category-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* --- CTA CARD --- */
.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.cta-card h3 {
    color: var(--white);
}

.cta-card h3 i {
    color: var(--accent);
}

.cta-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* --- BACK LINK --- */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 0;
}

.back-link:hover {
    color: var(--accent);
}

.back-link i {
    transition: transform 0.3s;
}

.back-link:hover i {
    transform: translateX(-5px);
}

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

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .article-title-section h1 {
        font-size: 2.2rem;
    }

    .article-body {
        font-size: 1.1rem;
    }
}

/* Desktop - 992px and up */
@media (min-width: 992px) {
    .article-layout {
        grid-template-columns: 2fr 1fr;
    }

    .article-title-section h1 {
        font-size: 2.5rem;
    }
}
