.search-result-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2b4a;
}

.insights-header {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
@media (min-width: 768px) {
    .insights-header {
        min-height: 280px;
    }
}
.insights-header .header-inner {
    position: relative;
    height: 200px;
}
@media (min-width: 768px) {
    .insights-header .header-inner {
        height: 280px;
    }
}

/* Breadcrumb */
.insights-breadcrumb {
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 1rem;
    z-index: 5;
}
@media (min-width: 768px) {
    .insights-breadcrumb {
        left: 8rem;
    }
}
@media (max-width: 767px) {
    .insights-breadcrumb {
        top: 1rem;
    }
    .insights-breadcrumb a,
    .insights-breadcrumb .breadcrumb-active,
    .insights-breadcrumb .breadcrumb-separator {
        font-size: 2rem;
    }
}
.insights-breadcrumb a {
    color: #1a2b4a;
    text-decoration: none;
    font-size: 0.875rem;
}
.insights-breadcrumb a:hover {
    text-decoration: underline;
}
.insights-breadcrumb .breadcrumb-active {
    color: #F07126;
    font-size: 0.875rem;
}
.insights-breadcrumb .breadcrumb-separator {
    color: #1a2b4a;
    font-size: 0.875rem;
    margin: 0 0.25rem;
}

/* Header Title */
.insights-header .header-title {
    position: absolute;
    font-weight: 700;
    color: #1a2b4a;
    margin: 0;
    white-space: nowrap;
    bottom: 5rem;
    left: 0;
    font-size: 1.75rem;
}
@media (min-width: 768px) {
    .insights-header .header-title {
        top: 50%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        font-size: 2.5rem;
    }
}

/* Toolbar */
.insights-toolbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
@media (min-width: 768px) {
    .insights-toolbar {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

/* Search */
.insights-search {
    position: relative;
    flex: 1;
    min-width: 0;
    max-width: 500px;
}
@media (max-width: 767px) {
    .insights-search {
        flex: 1 1 0;
        max-width: none;
    }
}
.insights-search input {
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0.75rem 3rem 0.75rem 1rem;
    width: 100%;
    font-size: 0.9375rem;
    background: #fff;
}
.insights-search input:focus {
    outline: none;
    border-color: #F07126;
}
.insights-search .search-icon-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.insights-search .search-icon {
    color: inherit;
}

/* Filters */
.insights-filters {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.filter-dropdown {
    position: relative;
}
.filter-dropdown .filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #fff;
    color: #333;
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s;
}
@media (max-width: 767px) {
    .filter-dropdown .filter-btn {
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .filter-dropdown .filter-btn .filter-label {
        display: none;
    }
}
.filter-dropdown .filter-btn:hover,
.filter-dropdown.open .filter-btn {
    border-color: #F07126;
}
.filter-dropdown .filter-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 140px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 10;
    overflow: hidden;
}
.filter-dropdown.open .filter-menu {
    display: block;
}
.filter-menu a {
    display: block;
    padding: 0.625rem 1.25rem;
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.15s;
}
.filter-menu a:hover {
    background: #f5f5f5;
}
.filter-menu a.active {
    color: #F07126;
    background: #fff5f0;
}

/* Featured Card */
.featured-card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    background: #fff;
    padding: 1.25rem;
    transition: box-shadow 0.2s;
}
.featured-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.featured-card .featured-img-wrapper {
    overflow: hidden;
    border-radius: 12px;
    height: auto;
    aspect-ratio: 730 / 411;
}
.featured-card .featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}
.featured-card .featured-body {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.featured-card .featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a2b4a;
    line-height: 1.35;
}
.featured-card .featured-title a {
    color: inherit;
    text-decoration: none;
}
.featured-card .featured-meta {
    font-size: 0.875rem;
    color: #888;
    margin-top: auto;
}

/* Article Card */
.article-card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    background: #fff;
    height: 100%;
    padding: 1rem;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.article-card .article-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.article-card .article-body {
    padding: 0.75rem 0.25rem 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.article-card .article-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2b4a;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-card .article-title a {
    color: inherit;
    text-decoration: none;
}
.article-card .article-date {
    font-size: 0.8125rem;
    color: #888;
    margin-top: auto;
}

/* Pagination */
.insights-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-top: 2rem;
}
.insights-pagination .page-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
    background: #fff;
}
.insights-pagination .page-link.active {
    background: #1a3a6b;
    color: #fff;
    border-color: #1a3a6b;
}
.insights-pagination .page-link:hover:not(.active) {
    background: #f5f5f5;
}

/* Empty State */
.insights-empty-title {
    color: #1a2b4a;
}

/* Content Wrapper */
.insights-content-wrapper {
    background-color: #EDF2F9;
    padding-bottom: 2rem;
}
