/* ============ ARTICLE HERO SECTION ============ */
.article-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-bottom: 40px;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.article-hero-content {
    position: relative;
    z-index: 2;
}

.article-hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ============ ARTICLE MAIN CONTENT ============ */
.article-main-section {
    padding: 40px 0;
}

#article-sidebar {
    padding-right: 30px;
}

#article-content {
    padding-left: 30px;
}

.article-panel {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.article-panel-body {
    padding: 30px;
}

.article-media {
    margin: 0 0 25px 0;
    overflow: hidden;
    border-radius: 6px;
}

.article-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Article Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

.article-meta-item {
    display: flex;
    align-items: center;
}

.article-meta-icon {
    margin-right: 5px;
    font-size: 0.9em;
}

/* Article Content */
.article-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 30px;
}

.article-content p {
    margin-bottom: 1.5em;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1em 0;
}

/* Article Actions */
.article-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.article-back-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.article-back-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    color: white;
}

.article-back-button i {
    margin-right: 8px;
}

.article-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.article-action-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.article-action-button i {
    margin-right: 6px;
}

.article-delete {
    background: #e74c3c;
    color: white;
}

.article-delete:hover {
    background: #c0392b;
    color: white;
}

.article-edit {
    background: #3498db;
    color: white;
}

.article-edit:hover {
    background: #2980b9;
    color: white;
}

.article-archive,
.article-activate {
    background: #9b59b6;
    color: white;
}

.article-archive:hover,
.article-activate:hover {
    background: #8e44ad;
    color: white;
}

/* ============ RESPONSIVE ADJUSTMENTS ============ */
@media (max-width: 992px) {
    .article-hero-title {
        font-size: 2.5rem;
    }

    .article-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    #article-sidebar {
        padding-right: 15px;
        margin-bottom: 30px;
    }

    #article-content {
        padding-left: 15px;
    }

    .article-hero {
        padding: 70px 0;
    }

    .article-hero-title {
        font-size: 2rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-panel-body {
        padding: 20px;
    }

    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .article-admin-actions {
        flex-direction: column;
    }

    .article-action-button {
        width: 100%;
        justify-content: center;
    }
}
