/*----insights header----*/
.insights-page h1,
.insight-detail-header h1 {
    color: var(--st-black);
    font-weight: 700;
    line-height: 1.15;
}

.insights-page h1 {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.insights-page .section-eyebrow,
.insight-detail-header .section-eyebrow {
    color: var(--st-red);
    display: inline-block;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/*----insights----*/
.insights-page .section-eyebrow {
    margin-bottom: 1rem;
}

.insights-page .lead {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.insight-card {
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12);
}

.insight-card-image-link {
    display: block;
    overflow: hidden;
}

.insight-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .35s ease;
}

.insight-card:hover .insight-card-image {
    transform: scale(1.05);
}

.insight-card .badge {
    font-size: .75rem;
    letter-spacing: .04em;
}

.insight-card h2 {
    line-height: 1.3;
}

.insight-card p {
    color: var(--bs-secondary-color);
}

/*----single insight----*/
.insight-detail-header {
    text-align: center;
}

.insight-detail-header h1 {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.insight-detail-header .section-eyebrow {
    margin-bottom: 1rem;
}

.insight-detail-header .d-flex {
    justify-content: center;
}

.insight-detail-figure {
    overflow: hidden;
    border-radius: .75rem;
}

.insight-detail-figure img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.insight-content {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.insight-content h2,
.insight-content h3,
.insight-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.insight-content p,
.insight-content ul,
.insight-content ol,
.insight-content blockquote,
.insight-content table {
    margin-bottom: 1.5rem;
}

.insight-content img {
    max-width: 100%;
    height: auto;
    border-radius: .5rem;
}

.insight-content blockquote {
    padding: 1.25rem 1.5rem;
    margin-left: 0;
    border-left: 4px solid #c00000;
    background: #f8f9fa;
    font-style: italic;
}

.insight-content table {
    width: 100%;
}

.insight-content iframe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.insight-detail .badge {
    padding: .5rem .8rem;
}

.insight-detail .border-top {
    border-color: rgba(0,0,0,.08) !important;
}

/*----responsive----*/
@media (max-width: 991.98px) {
    .insight-content {
        font-size: 1rem;
    }

    .insight-detail-header h1 {
        font-size: clamp(2rem, 5vw, 2.75rem);
    }
}

/*----insight filters----*/
.insight-filter-list li {
    border-bottom: 1px solid var(--st-gray-200);
}

.insight-filter-list li:last-child {
    border-bottom: 0;
}

.insight-filter-list a {
    align-items: center;
    color: var(--st-gray-700);
    display: flex;
    justify-content: space-between;
    padding: .75rem 0;
    text-decoration: none;
}

.insight-filter-list a:hover,
.insight-filter-list a:focus {
    color: var(--st-red);
}

/*----pagination----*/
.insights-page .pagination {
    gap: .35rem;
}

.insights-page .page-link {
    border-color: var(--st-gray-300);
    color: var(--st-gray-700);
    min-width: 2.75rem;
    text-align: center;
}

.insights-page .page-link:hover,
.insights-page .page-link:focus {
    background: var(--st-gray-100);
    border-color: var(--st-red);
    color: var(--st-red);
}

.insights-page .page-item.active .page-link {
    background: var(--st-red);
    border-color: var(--st-red);
    color: var(--st-white);
}

.insights-page .page-item.disabled .page-link {
    background: var(--st-gray-100);
    border-color: var(--st-gray-200);
    color: var(--st-gray-500);
}

/*----insight filters----*/
.insight-filters {
    position: sticky;
    top: .75rem;
    align-self: flex-start;
}

@media (max-width: 991.98px) {
    .insight-filters {
        position: static;
    }
}

.insights-page .second-return {
	display: none;
}