/* News Article Page Styles */
.article-title {
    color: #2c3e50;
    line-height: 1.2;
}

.article-featured-image img {
    max-width: 100%;
    height: auto;
}

.page-header {
    padding: 80px 0;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .article-sidebar {
        margin-top: 50px;
    }
}


.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

:not(.btn-check)+.btn:active {
    background-color: #ff9600;
    border-color: #ff9600;
}

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

.article-body img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 8px;
}

.article-body blockquote {
    border-left: 4px solid #ff9600;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6c757d;
}

.recent-article h6 a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.recent-article h6 a:hover {
    color: #ff9600;
}

.social-share .btn {
    width: 35px;
    height: 35px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb a {
    color: #ff9600;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.card-img-top-container {
    position: relative;
    overflow: hidden;
}

.card-img-top-container img {
    transition: transform 0.3s ease;
}

.hover-shadow:hover .card-img-top-container img {
    transform: scale(1.05);
}

.empty-state {
    padding: 60px 20px;
}

.empty-state i {
    opacity: 0.5;
}

/* Custom pagination styling */
.pagination .page-link {
    color: #0d6efd;
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}