/* Echo News Laravel Bloom Theme CSS */

/* Base Styles */
.prose {
    max-width: none;
    color: #374151;
    line-height: 1.75;
}
.prose h2 {
    color: #111827;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}
.prose h3 {
    color: #111827;
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.prose p {
    margin-bottom: 1.5rem;
}
.prose pre {
    background-color: #1f2937;
    color: #10b981;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}
.prose code {
    color: #ef4444;
    font-weight: 500;
}
.prose a {
    color: #ef4444;
    text-decoration: underline;
    font-weight: 500;
}
.prose ul {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    list-style-type: disc;
    padding-left: 1.625rem;
}
.prose ol {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    list-style-type: decimal;
    padding-left: 1.625rem;
}
.prose li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.prose blockquote {
    font-style: italic;
    color: #6b7280;
    border-left-width: 4px;
    border-left-color: #e5e7eb;
    padding-left: 1rem;
    margin: 1.5rem 0;
}

/* Line Clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.pagination .page-item {
    margin: 0 0.25rem;
}
.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    color: #4b5563;
    background-color: #fff;
    border: 1px solid #e5e7eb;
}
.pagination .page-link:hover {
    background-color: #f3f4f6;
}
.pagination .page-item.active .page-link {
    background-color: #ef4444;
    color: #fff;
    border-color: #ef4444;
}
.pagination .page-item.disabled .page-link {
    color: #9ca3af;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .prose h2 {
        font-size: 1.25rem;
    }
    .prose h3 {
        font-size: 1.125rem;
    }
}