/**
 * Insights Archive Styles
 */

/* Header Section */
#list-insights {
    background-color: var(--bs-primary);
}

.text-info1 {
    color: #17a2b8;
}

/* Breadcrumb on dark background */
#list-insights .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #17a2b8;
}

/* Filter Select */
.custom-select-width {
    min-width: 200px;
}

/* Search Input */
.search-desktop-width {
    max-width: 400px;
}

.Insightsearch-icon {
    color: #6c757d;
    font-size: 1.25rem;
}

.no-border:focus {
    box-shadow: none;
    outline: none;
}

/* Insight Cards */
.fs-32 {
    font-size: 2rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.text-body1 {
    color: #6c757d;
}

/* Pagination */
.pagination {
    gap: 0.25rem;
}

.pagination .page-link {
    color: #90BED2;
    border: none;
    border-radius: 0;
    padding: 0.1rem 0.1rem;
    font-weight: 500;
	font-size:24px;
}

.pagination .page-item.active .page-link {
    background-color: transparent;
    border-color: none;
    color:#0E0B2D;
}

/* Responsive */
@media (max-width: 767px) {
    .fs-32 {
        font-size: 1.5rem;
    }
    
    .search-desktop-width {
        max-width: 100%;
    }
}