/* ============================================================
   INSIGHTS MOCKUP CSS — layered on top of the site's style.css
   Uses only existing brand tokens:
   #18014d (deep purple) · #2e0f7b (purple) · #FB698E (pink)
   #d60ad6 (magenta) · #222222 / #333333 / #747483 (text)
   #f5f5f5 / #EBEBEB (greys) · Raleway-Bold / OpenSans
   ============================================================ */

/* ---------- Page banner (matches term_condition_banner scale) ---------- */
.insights_banner {
    background: linear-gradient(120deg, #18014d 0%, #2e0f7b 55%, #6a0dad 100%);
    padding: 140px 0 70px 0;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.insights_banner::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 105, 142, 0.35) 0%, rgba(251, 105, 142, 0) 70%);
}

.insights_banner h1 {
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    font-family: Raleway-Bold;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.insights_banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 28px;
    font-family: OpenSans-Regular;
    max-width: 640px;
    margin: 12px auto 0;
    position: relative;
    z-index: 1;
}

.insights_breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.insights_breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.insights_breadcrumb a:hover {
    color: #FB698E;
}

/* ---------- Category chips ---------- */
.cat_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 36px 0;
}

.cat_chip {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #DBDBDB;
    background: #fff;
    color: #333333;
    font-size: 13px;
    font-family: OpenSans-Bold;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.2s ease-in-out;
}

.cat_chip:hover {
    border-color: #FB698E;
    color: #FB698E;
}

.cat_chip.active {
    background: #18014d;
    border-color: #18014d;
    color: #fff;
}

/* ---------- Cards ---------- */
.insights_section {
    padding: 50px 0 30px 0;
    background: #fff;
}

.insight_card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.insight_card:hover {
    box-shadow: 0 6px 20px rgba(24, 1, 77, 0.12);
    transform: translateY(-2px);
}

.insight_thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.insight_thumb svg {
    width: 74px;
    height: 74px;
    opacity: 0.35;
}

.grad_1 { background: linear-gradient(135deg, #18014d 0%, #4a1d96 100%); }
.grad_2 { background: linear-gradient(135deg, #d60ad6 0%, #FB698E 100%); }
.grad_3 { background: linear-gradient(135deg, #2e0f7b 0%, #d60ad6 100%); }
.grad_4 { background: linear-gradient(135deg, #FB698E 0%, #f9a8c0 100%); }
.grad_5 { background: linear-gradient(135deg, #0d0033 0%, #2e0f7b 100%); }
.grad_6 { background: linear-gradient(135deg, #6a0dad 0%, #FB698E 100%); }

.insight_card_body {
    padding: 20px 22px 22px;
}

.insight_card_cat {
    font-size: 12px;
    font-family: OpenSans-Bold;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #d60ad6;
    margin-bottom: 8px;
    display: block;
}

.insight_card_body h3 {
    font-family: Raleway-Bold;
    font-size: 19px;
    line-height: 27px;
    color: #222222;
    margin: 0 0 10px 0;
    transition: color 0.2s ease;
}

.insight_card:hover h3 {
    color: #2e0f7b;
}

.insight_card_body p {
    color: #747483;
    font-size: 14px;
    line-height: 23px;
    margin: 0 0 16px 0;
}

/* ---------- Meta row (author / date / read time) ---------- */
.insight_meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #747483;
    font-size: 13px;
}

.insight_meta .meta_avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #18014d;
    color: #fff;
    font-family: Raleway-Bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
}

.insight_meta .meta_name {
    color: #222222;
    font-family: OpenSans-SemiBold;
}

.insight_meta .meta_dot {
    color: #DBDBDB;
}

/* ---------- Featured card (Option A) ---------- */
.featured_card {
    display: flex;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 44px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.featured_card:hover {
    box-shadow: 0 8px 26px rgba(24, 1, 77, 0.14);
    transform: translateY(-2px);
}

.featured_thumb {
    flex: 0 0 52%;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.featured_thumb svg {
    width: 120px;
    height: 120px;
    opacity: 0.35;
}

.featured_tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #FB698E;
    color: #fff;
    font-size: 12px;
    font-family: OpenSans-Bold;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 6px 14px;
    border-radius: 16px;
}

.featured_body {
    padding: 38px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured_body h2 {
    font-family: Raleway-Bold;
    font-size: 28px;
    line-height: 38px;
    color: #222222;
    margin: 0 0 14px 0;
}

.featured_card:hover .featured_body h2 {
    color: #2e0f7b;
}

.featured_body > p {
    color: #747483;
    font-size: 15px;
    line-height: 26px;
    margin: 0 0 20px 0;
}

/* ---------- Section headings (About-page underline accent) ---------- */
.insights_h2 {
    font-family: Raleway-Bold;
    font-size: 28px;
    font-weight: 600;
    color: #222222;
    position: relative;
    margin-bottom: 34px;
}

.insights_h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 55px;
    height: 3px;
    background: #d60ad6;
}

.insights_h2.centered {
    text-align: center;
}

.insights_h2.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ---------- Pagination ---------- */
.insights_pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 40px;
}

.insights_pagination a {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #DBDBDB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-size: 14px;
    font-family: OpenSans-Bold;
    transition: all 0.2s ease;
}

.insights_pagination a.active {
    background: #18014d;
    border-color: #18014d;
    color: #fff;
}

.insights_pagination a:hover:not(.active) {
    border-color: #FB698E;
    color: #FB698E;
}

/* ---------- Option B: editorial list ---------- */
.editorial_head {
    padding: 120px 0 10px;
}

.editorial_head h1 {
    font-family: Raleway-Bold;
    font-size: 40px;
    color: #222222;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 30px;
}

.editorial_head h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: #d60ad6;
}

.editorial_head p {
    color: #747483;
    font-size: 16px;
    line-height: 28px;
    max-width: 620px;
    margin-bottom: 8px;
}

.editorial_row {
    display: flex;
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid #ebebeb;
    align-items: center;
}

.editorial_row:last-child {
    border-bottom: none;
}

.editorial_thumb {
    flex: 0 0 240px;
    height: 160px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.editorial_thumb svg {
    width: 64px;
    height: 64px;
    opacity: 0.35;
}

.editorial_content h3 {
    font-family: Raleway-Bold;
    font-size: 22px;
    line-height: 31px;
    color: #222222;
    margin: 6px 0 10px;
    transition: color 0.2s ease;
}

.editorial_content h3 a {
    color: inherit;
}

.editorial_content h3 a:hover {
    color: #2e0f7b;
}

.editorial_content > p {
    color: #747483;
    font-size: 14.5px;
    line-height: 24px;
    margin-bottom: 12px;
}

/* Sidebar */
.insights_sidebar_bx {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.insights_sidebar_bx h6 {
    font-family: OpenSans-Bold;
    font-size: 15px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.4px;
    position: relative;
    margin-bottom: 20px;
}

.insights_sidebar_bx h6::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #d60ad6;
}

.insights_sidebar_bx ul li {
    padding: 9px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insights_sidebar_bx ul li:last-child {
    border-bottom: none;
}

.insights_sidebar_bx ul li a {
    color: #333333;
    font-size: 14.5px;
    transition: color 0.2s ease;
}

.insights_sidebar_bx ul li a:hover {
    color: #FB698E;
}

.insights_sidebar_bx ul li span {
    background: #f5f5f5;
    color: #747483;
    border-radius: 12px;
    font-size: 12px;
    padding: 2px 10px;
}

.author_bx {
    text-align: center;
}

.author_bx .author_avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #18014d;
    color: #fff;
    font-family: Raleway-Bold;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.author_bx h5 {
    font-family: Raleway-Bold;
    font-size: 17px;
    color: #222222;
    margin-bottom: 2px;
}

.author_bx .author_role {
    color: #d60ad6;
    font-size: 13px;
    font-family: OpenSans-SemiBold;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 12px;
}

.author_bx p {
    color: #747483;
    font-size: 13.5px;
    line-height: 22px;
}

/* ---------- Option C: dark hero ---------- */
.insights_hero_dark {
    background: linear-gradient(115deg, #0d0033 0%, #18014d 55%, #2e0f7b 100%);
    padding: 130px 0 70px;
    overflow: hidden;
    position: relative;
}

.insights_hero_dark::before {
    content: '';
    position: absolute;
    left: -140px;
    bottom: -160px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 10, 214, 0.25) 0%, rgba(214, 10, 214, 0) 70%);
}

.hero_kicker {
    color: #FB698E;
    font-family: OpenSans-Bold;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
}

.insights_hero_dark h1 {
    color: #fff;
    font-family: Raleway-Bold;
    font-size: 34px;
    line-height: 48px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.insights_hero_dark .hero_standfirst {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 26px;
    max-width: 520px;
}

.hero_read_btn {
    background: #FB698E;
    color: #fff !important;
    font-family: OpenSans-Bold;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 26px;
    padding: 15px 34px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero_read_btn:hover {
    background: #fff;
    color: #18014d !important;
}

.hero_thumb {
    border-radius: 16px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    position: relative;
}

.hero_thumb svg {
    width: 110px;
    height: 110px;
    opacity: 0.35;
}

/* ---------- Article page ---------- */
.article_head_section {
    padding: 120px 0 24px;
}

.article_col {
    max-width: 760px;
    margin: 0 auto;
}

.article_breadcrumb {
    color: #747483;
    font-size: 13px;
    margin-bottom: 22px;
}

.article_breadcrumb a {
    color: #747483;
}

.article_breadcrumb a:hover {
    color: #FB698E;
}

.article_cat_chip {
    display: inline-block;
    background: rgba(214, 10, 214, 0.08);
    color: #d60ad6;
    font-size: 12px;
    font-family: OpenSans-Bold;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 6px 14px;
    border-radius: 16px;
    margin-bottom: 18px;
}

.article_col h1 {
    font-family: Raleway-Bold;
    font-size: 36px;
    line-height: 48px;
    color: #222222;
    margin-bottom: 16px;
}

.article_standfirst {
    color: #747483;
    font-size: 18px;
    line-height: 31px;
    margin-bottom: 24px;
}

.article_meta_row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 30px;
}

.article_meta_row .meta_avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #18014d;
    color: #fff;
    font-family: Raleway-Bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article_meta_row .meta_names {
    line-height: 20px;
}

.article_meta_row .meta_names strong {
    display: block;
    color: #222222;
    font-family: OpenSans-SemiBold;
    font-size: 14.5px;
    font-weight: 600;
}

.article_meta_row .meta_names span {
    color: #747483;
    font-size: 13px;
}

.article_meta_row .meta_right {
    margin-left: auto;
    color: #747483;
    font-size: 13px;
    text-align: right;
    line-height: 21px;
}

.article_hero_img {
    border-radius: 14px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.article_hero_img svg {
    width: 110px;
    height: 110px;
    opacity: 0.35;
}

.article_img_caption {
    color: #9a9aa5;
    font-size: 12.5px;
    margin-bottom: 34px;
}

.article_body p {
    color: #3c3c46;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 22px;
}

.article_body h2 {
    font-family: Raleway-Bold;
    font-size: 26px;
    color: #222222;
    position: relative;
    margin: 40px 0 28px;
}

.article_body h2::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 55px;
    height: 3px;
    background: #d60ad6;
}

.key_takeaways {
    background: #f7f5fc;
    border-left: 4px solid #d60ad6;
    border-radius: 0 12px 12px 0;
    padding: 26px 30px;
    margin: 0 0 32px;
}

.key_takeaways h4 {
    font-family: Raleway-Bold;
    font-size: 17px;
    color: #18014d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.key_takeaways ul li {
    color: #3c3c46;
    font-size: 15px;
    line-height: 26px;
    padding: 5px 0 5px 26px;
    position: relative;
}

.key_takeaways ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FB698E;
}

.pull_quote {
    margin: 36px 0;
    padding: 8px 0 8px 30px;
    border-left: 4px solid #FB698E;
}

.pull_quote p {
    font-family: Raleway-Bold;
    font-size: 23px;
    line-height: 36px;
    color: #18014d;
    margin: 0;
}

.article_faq {
    margin: 10px 0 36px;
}

.article_faq .faq_item {
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 14px;
}

.article_faq .faq_item h5 {
    font-family: OpenSans-Bold;
    font-size: 16px;
    color: #222222;
    margin-bottom: 8px;
}

.article_faq .faq_item p {
    color: #747483;
    font-size: 14.5px;
    line-height: 25px;
    margin: 0;
}

.article_sources {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 40px;
}

.article_sources h6 {
    font-family: OpenSans-Bold;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
}

.article_sources ol {
    margin: 0 0 0 18px;
}

.article_sources ol li {
    list-style-type: decimal;
    color: #747483;
    font-size: 13.5px;
    line-height: 24px;
    padding: 3px 0;
}

.article_sources ol li a {
    color: #2e0f7b;
}

.article_sources ol li a:hover {
    color: #FB698E;
}

.article_author_bx {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 50px;
}

.article_author_bx .author_avatar {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 50%;
    background: #18014d;
    color: #fff;
    font-family: Raleway-Bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article_author_bx h5 {
    font-family: Raleway-Bold;
    font-size: 18px;
    color: #222222;
    margin-bottom: 2px;
}

.article_author_bx .author_role {
    color: #d60ad6;
    font-size: 12.5px;
    font-family: OpenSans-SemiBold;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
    display: block;
}

.article_author_bx p {
    color: #747483;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

.related_section {
    background: #f5f5f5;
    padding: 50px 0 60px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .featured_card {
        flex-direction: column;
    }

    .featured_thumb {
        min-height: 220px;
    }

    .featured_body {
        padding: 26px 24px;
    }

    .editorial_row {
        flex-direction: column;
        align-items: flex-start;
    }

    .editorial_thumb {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 767.98px) {
    .insights_banner {
        padding: 110px 0 50px;
    }

    .article_col h1 {
        font-size: 28px;
        line-height: 39px;
    }

    .insights_hero_dark h1 {
        font-size: 26px;
        line-height: 38px;
    }

    .article_meta_row .meta_right {
        display: none;
    }
}

/* ============================================================
   Renderer block styles (AD-112) — blocks not present in mockups
   ============================================================ */

.article_body .article_list {
    margin: 0 0 22px 22px;
}

.article_body .article_list li {
    color: #3c3c46;
    font-size: 16px;
    line-height: 30px;
    padding: 2px 0;
}

.article_body ul.article_list li {
    list-style-type: disc;
}

.article_body ol.article_list li {
    list-style-type: decimal;
}

.article_quote {
    border-left: 4px solid #DBDBDB;
    padding: 8px 0 8px 24px;
    margin: 0 0 24px;
}

.article_quote p {
    color: #3c3c46;
    font-style: italic;
    margin-bottom: 6px;
}

.article_quote cite {
    color: #747483;
    font-size: 14px;
    font-style: normal;
}

.article_callout {
    background: #f7f5fc;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 0 0 24px;
}

.article_callout.callout_warning {
    background: #fdf1f4;
}

.article_callout h4 {
    font-family: Raleway-Bold;
    font-size: 16px;
    color: #18014d;
    margin-bottom: 8px;
}

.article_callout p {
    color: #3c3c46;
    font-size: 15px;
    line-height: 26px;
    margin: 0;
}

.article_divider {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 34px auto;
    width: 120px;
}

.article_figure {
    margin: 0 0 24px;
}

.article_figure img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.article_figure figcaption {
    color: #9a9aa5;
    font-size: 12.5px;
    margin-top: 8px;
}

.article_figure .image_credit {
    color: #b6b6bf;
}

.article_embed {
    position: relative;
    padding-top: 56.25%;
    margin: 0 0 24px;
    border-radius: 12px;
    overflow: hidden;
    background: #0d0033;
}

.article_embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.article_gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 0 0 24px;
}

.article_gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.article_gallery figcaption {
    color: #9a9aa5;
    font-size: 12px;
    margin-top: 6px;
}

.article_video {
    margin: 0 0 24px;
}

.article_video video {
    width: 100%;
    border-radius: 12px;
    background: #0d0033;
}

.article_video .video_title {
    color: #9a9aa5;
    font-size: 12.5px;
    margin-top: 8px;
}

.article_table_wrap {
    overflow-x: auto;
    margin: 0 0 24px;
}

.article_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}

.article_table th {
    background: #18014d;
    color: #fff;
    font-family: OpenSans-Bold;
    text-align: left;
    padding: 10px 14px;
}

.article_table td {
    border-bottom: 1px solid #ebebeb;
    color: #3c3c46;
    padding: 10px 14px;
}

.article_statistic {
    background: linear-gradient(135deg, #18014d 0%, #2e0f7b 100%);
    border-radius: 14px;
    color: #fff;
    text-align: center;
    padding: 30px 24px;
    margin: 0 0 24px;
}

.article_statistic .stat_value {
    display: block;
    font-family: Raleway-Bold;
    font-size: 42px;
    line-height: 1.1;
    color: #FB698E;
}

.article_statistic .stat_label {
    display: block;
    font-size: 15px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.9);
}

.article_statistic .stat_source {
    display: block;
    font-size: 12px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.55);
}

.heading_permalink {
    color: #DBDBDB;
    font-size: 0.8em;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.article_body h2:hover .heading_permalink,
.article_body h3:hover .heading_permalink,
.article_body h4:hover .heading_permalink {
    opacity: 1;
}

.heading_permalink:hover {
    color: #FB698E;
}

.article_body h3 {
    font-family: Raleway-Bold;
    font-size: 21px;
    color: #222222;
    margin: 30px 0 18px;
}

.article_body h4 {
    font-family: OpenSans-Bold;
    font-size: 17px;
    color: #222222;
    margin: 24px 0 14px;
}

.article_toc {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 0 0 30px;
}

.article_toc h6 {
    font-family: OpenSans-Bold;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #747483;
    margin-bottom: 10px;
}

.article_toc ol {
    margin: 0 0 0 18px;
}

.article_toc ol li {
    list-style-type: decimal;
    color: #747483;
    font-size: 14px;
    padding: 3px 0;
}

.article_toc a {
    color: #2e0f7b;
}

.article_toc a:hover {
    color: #FB698E;
}

.article_embed_link a {
    color: #2e0f7b;
    font-family: OpenSans-SemiBold;
}

.preview_banner {
    background: #d60ad6;
    color: #fff;
    text-align: center;
    font-family: OpenSans-Bold;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 16px;
    position: relative;
    z-index: 10000;
}

.insights_empty {
    text-align: center;
    color: #747483;
    padding: 60px 0;
}
