/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */

:root {
    /* =============================================
       DESIGN SYSTEM — Light Mode Colors
       Based on: Colors - Light.pdf
       ============================================= */

    /* --- Body / Background --- */
    --color-white: #ffffff;
    --color-body-white: #ffffff;
    --color-body-level-2: #f5f5f5;
    --color-bg-grey: #f5f5f5;
    --color-bg-smoky: #fafafa;
    --color-smoky-white: #f8f8f8;
    --color-bg-soft-grey: #f2f5f9;

    /* --- Gradient --- */
    --gradient-bg-1: linear-gradient(90deg, #ef7f1a, #be2a2a);
    --gradient-bg-2: linear-gradient(90deg,
            #be2a2a,
            #ef7f1a,
            rgba(255, 255, 255, 0));
    --gradient-orange: linear-gradient(282deg, #fc6524 26.16%, #f78900 42.4%);

    /* --- Black Shades / Text --- */
    --color-text-primary: #353535;
    --color-text-secondary: #666666;
    --color-text-tertiary: #767676;
    --color-text-black: #000000;
    --color-chinese-black: #353535;
    --color-dark-grey: #505050;
    --color-stone-grey: #555555;
    --metal-platinum: #d6d6d6;

    /* --- Divider / Border / Disabled --- */
    --color-divider: #ebebeb;
    --color-border: #dcdcdc;
    --color-border-light: #e2e2e2;
    --color-disabled-text: #c0c0c0;
    --color-disabled-bg: #f5f5f5;
    --color-grey80: #cccccc;
    --box-shadow: #d4d9de;

    /* --- Status Colors --- */
    --color-status-green: #269c32;
    --color-status-red: #fe3c30;
    --color-status-yellow: #ffac33;
    --color-status-orange: #e3530f;

    /* --- CTA / Hyperlink --- */
    --color-cta: #e3530f;
    --color-orange: #e3530f;
    --color-vivid-orange: #e3530f;
    --color-reddish-orange: #e3530f;
    --color-salsa: #f04c23;

    /* --- Highlight & Card Surface --- */
    --color-card-surface: #fdf1ec;
    --color-card-surface-dark: #f5c1a9;
    --color-surface-orange: #fff2eb;
    --color-floral-white: #fff7f3;
    --color-seashell: #fef2ed;
    --color-progress-bar-bg: #f5c1a9;

    /* --- Nudge / Tag BG (16% of status) --- */
    --color-nudge-green: #dcefde;
    --color-nudge-red: #ffe0de;
    --color-nudge-yellow: #fff2de;
    --color-nudge-orange: #fdf1ec;

    /* --- Charts & Solid --- */
    --color-chart-green: #44c795;
    --color-chart-red: #fe6359;
    --color-chart-yellow: #ffcc4d;
    --color-chart-blue: #18a0fb;
    --color-chart-navy: #053c6d;
    --color-chart-peach: #f0ae74;
    --color-chart-green-light: #a1e3ca;
    --color-chart-red-light: #fe928b;
    --color-chart-yellow-light: #ffe5a6;
    --color-chart-blue-light: #a3d9fd;
    --color-chart-navy-light: #3b668d;
    --color-chart-peach-light: #f7d7b9;

    /* --- Primary Brand --- */
    --color-darkest-blue: #053c6d;
    --color-navy-blue: #20446c;
    --color-red: #97291e;
    --color-matte-graphite: #444444;

    /* custom scroll bar color variables */
    --anti-flash-white: #f3f3f3;
    --american-silver: #cfcfcf;
    --philip-silver: #b5b5b5;

    /* --- Legacy aliases (backward compatibility) --- */
    --text-color: var(--color-text-tertiary);
    --color-granite-gray: var(--color-text-secondary);
    --color-lightest-grey: var(--color-border);
    --color-border-light-grey: var(--color-border-light);
    --link-color: #3b63fb;
    --link-hover-color: #1d3ecf;
    --Salsa-Habanero: var(--color-salsa);
    --floral-white: var(--color-floral-white);
    --Reddish-orange: var(--color-reddish-orange);
    --text-by-default: var(--color-text-black);
    --surface-orange: var(--color-surface-orange);
    --vivid-orange: var(--color-vivid-orange);
    --stone-cold-grey: var(--color-stone-grey);
    --neutral-gray: var(--color-text-primary);
    --Gainsboro: var(--color-border);
    --smoky-background-color: var(--color-bg-smoky);
    --green: var(--color-status-green);
    --Color-Font-Hyperlink: var(--color-cta);
    --light-background-color: var(--color-bg-grey);
    --Color-Nudge-surface-Orange-surface: var(--color-card-surface);

    /* fonts */
    --font-mulish: "Mulish", sans-serif;

    /* font-family weight variants (used across blocks) */
    --body-font-family-extralight: "Mulish", sans-serif;
    --body-font-family-light: "Mulish", sans-serif;
    --body-font-family-regular: "Mulish", sans-serif;
    --body-font-family-medium: "Mulish", sans-serif;
    --body-font-family-semibold: "Mulish", sans-serif;
    --body-font-family-bold: "Mulish", sans-serif;

    /* body sizes */
    --body-font-size-m: 22px;
    --body-font-size-s: 18px;
    --body-font-size-xs: 16px;
    --body-font-size-xxs: 14px;

    /* heading sizes */
    --heading-font-size-xxl: 55px;
    --heading-font-size-xl: 44px;
    --heading-font-size-l: 34px;
    --heading-font-size-m: 28px;
    --heading-font-size-s: 24px;
    --heading-font-size-xs: 20px;

    /* nav height */
    --nav-height: 52px;
    /* Headlines */
    --headline-1-size: 72px;
    --headline-1-line: 90px;

    --headline-1-sm-size: 54px;
    --headline-1-sm-line: 68px;

    --headline-2-size: 40px;
    --headline-2-line: 60px;

    --headline-3-size: 32px;
    --headline-3-line: 40px;

    --headline-4-size: 28px;
    --headline-4-line: 36px;

    --heading-5-size: 24px;
    --heading-6-size: 20px;

}

/* =============================================
   ACCESSIBILITY — High Contrast Overrides
   Applied when Color Contrast toggle is ON
   (adds .high-contrast class to <html>)
   Based on: Accessibility- Colors - Light.pdf
   ============================================= */
.high-contrast {
    /* --- Body / Background (darker greys) --- */
    --color-body-level-2: #dcdcdc;
    --color-bg-grey: #dcdcdc;
    --color-disabled-bg: #dcdcdc;

    /* --- Divider / Border / Disabled (higher contrast) --- */
    --color-divider: #dcdcdc;
    --color-border: #666666;
    --color-border-light: #666666;
    --color-disabled-text: #666666;

    /* --- Status Colors (darker for contrast) --- */
    --color-status-green: #1d7a28;
    --color-status-red: #c92318;
    --color-status-yellow: #aa6705;
    --color-status-orange: #c93f04;

    /* --- CTA / Hyperlink (darker orange) --- */
    --color-cta: #c93f04;
    --color-orange: #c93f04;
    --color-vivid-orange: #c93f04;
    --color-reddish-orange: #c93f04;
    --color-salsa: #c93f04;
    --Color-Font-Hyperlink: #c93f04;

    /* --- Legacy aliases update --- */
    --color-lightest-grey: #666666;
    --color-border-light-grey: #666666;
    --Gainsboro: #666666;
    --green: #1d7a28;
    --light-background-color: #dcdcdc;
}

/* =============================================
   ACCESSIBILITY — Font Size Scaling
   Applied when Text Size option is changed
   ============================================= */

/* Decrease font size by ~10% */
html.font-small {
    font-size: 90% !important;
}

/* Default font size (no scaling) */
html.font-default {
    font-size: 100% !important;
}

/* Increase font size by ~10% */
html.font-large {
    font-size: 110% !important;
}

/* =============================================
   ACCESSIBILITY — Reduced Motion
   Applied when Pause Animations toggle is ON
   ============================================= */
html.reduce-motion,
html.reduce-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: #000;
    border: 1px solid #000;
    color: #fff;
    padding: 8px 16px;
    font-weight: 600;
    z-index: 9999;
    text-decoration: none;
    font-size: var(--body-font-size-s, 14px);
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

body {
    display: none;
    margin: 0;
    background-color: var(--background-color);
    color: var(--color-granite-gray);
    font-family: var(--font-mulish);
    font-size: var(--body-font-size-xs);
    line-height: 1.4;
}

body.appear {
    display: block;
}

@media screen and (min-width: 901px) and (max-width: 1280px) {
    body {
        zoom: 95.5%;
    }

}

header {
    height: var(--nav-height);
}

header .header,
footer .footer {
    visibility: hidden;
}

header .header[data-block-status="loaded"],
footer .footer[data-block-status="loaded"] {
    visibility: visible;
}

h1 {
    font-family: var(--font-mulish);
    font-size: var(--headline-1-size);
    line-height: var(--headline-1-line);
    font-weight: 200;
    margin-top: 24px;
    margin-bottom: 24px;
}

h2 {
    font-family: var(--font-mulish);
    font-size: var(--headline-2-size);
    /* line-height: var(--headline-2-line); */
    font-weight: 300;
    margin-top: 24px;
    margin-bottom: 24px;
}

h3 {
    font-family: var(--font-mulish);
    font-size: var(--headline-3-size);
    line-height: var(--headline-3-line);
    font-weight: 300;
    margin-top: 24px;
    margin-bottom: 24px;
}

h4 {
    font-family: var(--font-mulish);
    font-size: var(--headline-4-size);
    line-height: var(--headline-4-line);
    font-weight: 300;
    margin-top: 24px;
    margin-bottom: 24px;
}

h5 {
    font-size: var(--heading-font-size-s);
    margin-top: 24px;
    margin-bottom: 24px;

}

h6 {
    font-size: var(--heading-font-size-xs);
    margin-top: 24px;
    margin-bottom: 24px;
}

/* 
p,
dl,
ol,
ul,
pre,
blockquote {
    margin-top: 0.4em;
    margin-bottom: 0.25em;
} */

.columns-wrapper p {
    margin-top: 0.4em;
    margin-bottom: 0.25em;
}

.columns-wrapper p:has(>strong) {
    margin-top: 14px;
    margin-bottom: 12px
}


.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section.display-flex {
    display: flex;
    align-items: stretch;
    /* padding: 0 16px 0; */
    max-width: 1280px;
    margin: auto;
    gap: 40px;
}

.section.no-padding-top {
    padding-top: 0;
}

.section.no-padding-bottom {
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .display-flex {
        flex-direction: column;
    }

    .section.display-flex {
        gap: 48px;
    }

    h2 {
        font-size: 24px;
        margin: 0;
        line-height: 120%;
    }

    h3 {
        font-size: var(--heading-font-size-m);
        margin-bottom: 12px;
    }

    body {
        font-size: var(--body-font-size-xxs);
    }

}

code,
pre {
    font-size: var(--body-font-size-s);
}

input,
textarea,
select,
button {
    font: inherit;
}

/* links */
a:any-link {
    text-decoration: none;
    overflow-wrap: break-word;
}

/* buttons */
a.button:any-link,
a.btnoutline,
button {
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    max-width: 100%;
    font-family: var(--font-mulish);
    margin: 12px 0;
    border: 2px solid transparent;
    padding: 12px 15px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 0.25rem;
    line-height: 120%;
    position: relative;
    overflow: hidden;
}

/* Normal button with white animation and orange background */
button.primary,
a.primary {
    background-color: var(--color-orange);
    color: var(--color-white);
}

button.primary:before,
a.primary:before {
    background: rgba(255, 255, 255, 0.2);
    content: "";
    height: 9.688rem;
    left: -4.688rem;
    opacity: 1;
    position: absolute;
    top: -3.125rem;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 3.125rem;
    z-index: 2;
    overflow: hidden;
}

button.primary:hover:before,
a.primary:hover:before {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

/* button with orange animation and white background used in hero banner */
button.white-bg,
a.white-bg {
    background: var(--color-white);
}

button.white-bg:before,
a.white-bg:before {
    background: rgba(227, 83, 15, 0.07);
}

/* button with orange animation and orange outline border */
button.outline-border,
a.outline-border {
    background: var(--color-white);
    color: var(--color-orange);
    border: 1px solid var(--color-orange) !important;
}

button.outline-border:before,
a.outline-border:before {
    background: rgba(227, 83, 15, 0.07);
}

/* White button variation */

a.button:hover,
a.button:focus,
button:hover,
button:focus,
a.btnoutline {
    cursor: pointer;
}

a.button.secondary,
button.secondary {
    background-color: unset;
    border: 2px solid currentcolor;
    color: var(--text-color);

}


a.btnoutline {
    background: var(--color-white);
    color: var(--color-cta);
    border-color: var(--color-cta);
}

a.btnoutline:before {
    background: rgba(227, 83, 15, 0.07);
    content: "";
    height: 9.688rem;
    left: -4.688rem;
    opacity: 1;
    position: absolute;
    top: -3.125rem;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 3.125rem;
    z-index: 2;
    overflow: hidden;
}

a.btnoutline:hover:before {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

em {
    font-style: normal;
}

main img {
    max-width: 100%;
    width: auto;
    height: auto;
    aspect-ratio: auto;
}

main picture img {
    height: auto;
    aspect-ratio: auto;
}

.icon {
    display: inline-block;
    height: 24px;
    width: 24px;
}

.icon img {
    height: 100%;
    width: 100%;
}

main>.section:first-of-type,
main>.section:nth-of-type(2) {
    margin-top: 0;
    padding: 0;
}

main>.section>div {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.btn.btn-custom {
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.938rem 1.5rem;
    border-radius: 0.25rem;
    line-height: 1rem;
    font-weight: 700;
    overflow: hidden;
    position: relative;
}

.btn.btn-custom::before {
    background: rgba(255, 255, 255, 0.2);
    content: "";
    height: 9.688rem;
    left: -4.688rem;
    opacity: 1;
    position: absolute;
    top: -3.125rem;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 3.125rem;
    z-index: 2;
}

.btn.btn-custom.btn-white,
.btn.btn-custom.btn-white:hover {
    background: var(--color-white);
    color: var(--color-orange-e3530f);
}


.faqs-answer p a {
    color: var(--color-cta);
    text-decoration: underline;
}

.section.bg-orange-surface {
    background: var(--color-card-surface);
}

.section.bg-smoky-grey {
    background: var(--color-bg-smoky);
}

.section.bg-orange-linear-gradient {
    background: linear-gradient(270deg, #fb6125 8.16%, #f78900 47.4%);
    background: var(--gradient-orange);
}

.section.bg-matte-graphite {
    background: var(--color-matte-graphite);
}

.section.bg-matte-graphite .default-content-wrapper h2 {
    color: var(--color-white);
}

.section.bg-matte-graphite .default-content-wrapper p {
    color: var(--color-white);
}

.section.bg-matte-graphite .stock-recommendation .scroll-dot.active {
    background: var(--color-white);
}

.section.bg-soft-grey {
    background: var(--color-bg-soft-grey);
}

.section.text-left .default-content-wrapper h2 {
    text-align: left;
}

.section .default-content-wrapper h2 {
    text-align: center;
    color: var(--color-darkest-blue);
    margin-bottom: 32px;
    margin-top: 0;
}

.section .default-content-wrapper h3 {
    color: var(--color-text-primary);
    /* color: var(--color-darkest-blue); */
    margin-top: 0;

}

.section .default-content-wrapper:has(h2) p {
    line-height: 24px;
}

/* GLobally set for all ul  */
.section .default-content-wrapper ul {
    padding-left: 18px;
}

/* 
.section.faqs-container .default-content-wrapper {
    padding-top: 80px;
} */


.section.faqs-container .default-content-wrapper p a {
    color: var(--color-cta);
    font-weight: 600;
    text-decoration: underline;
}

.is-dragging,
.is-dragging * {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .section .default-content-wrapper h2 {
        font-size: 28px;
        margin: 0;
        line-height: 120%;
        margin-bottom: 16px;
    }

    .section .default-content-wrapper h3 {
        font-size: 24px;
    }

    a.button:any-link,
    button {
        padding: 6px 15px;
    }

    main>.section>div {
        padding: 0 12px;
    }

    .section .default-content-wrapper ul {
        padding-left: 16px;

    }
}

.section.light-background-color {
    background-color: var(--light-background-color);
}

.section.padding-top-bottom {
    padding: 40px 0;
}

footer .section.footer-accordion {
    padding: 40px 16px;
}

.section.full-padding-bottom {
    padding-bottom: 80px !important;
}

.section.full-padding-top {
    padding-top: 80px !important;
}

@media (width >=768px) {
    .section.padding-top-desktop {
        padding-top: 40px;
        padding-bottom: unset;
    }

    .section.padding-bottom-desktop {
        padding-bottom: 40px !important;
        padding-top: unset;
    }

    .section.no-padding-desktop {
        padding-top: unset;
        padding-bottom: unset;
    }

}

@media (width <=767px) {
    .section.padding-top-mobile {
        padding-top: 40px;
        padding-bottom: unset;
    }

    .section.padding-bottom-mobile {
        padding-bottom: 40px;
        padding-top: unset;
    }

    .section.no-padding-mobile {
        padding-top: unset !important;
        padding-bottom: unset;
    }

    .section.no-padding-top-mobile {
        padding-top: unset !important;
    }

    .section.no-padding-bottom-mobile {
        padding-bottom: unset !important;
    }

    footer .section.footer-accordion {
        padding: 40px 12px;
    }
}

.section-padding-remove {
    padding: 0 !important;
}

.section-padding-remove>div {
    padding: 0 !important;
}

/* .full-width-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
} */

.full-width-section>div:not(.default-content-wrapper) {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* .full-width-block>div:not(.default-content-wrapper) {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
} */

.section.box-shadow {
    box-shadow: 0px 4px 4px 0px #35353514;
}

.section.border-radius {
    border-radius: 12px;
}

.company-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-chinese-black);
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.stocks-page-padding {
    padding-top: 40px;
    padding-bottom: 40px;
}

.block-box-shadow .block {
    border-radius: 0.75rem;
    box-shadow: 0 -0.25rem 2rem -2px var(--box-shadow);
    padding: 2rem;
}

/* ── auto-choice-tab-wrapper: section IS the unified card ── */
.section.auto-choice-tab-wrapper,
.auto-choice-detail-container {
    background: var(--color-white);
    border-radius: 12px;
    padding: 24px 32px;
    max-width: 1216px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}

.section.auto-choice-tab-wrapper .default-content-wrapper {
    padding: 0
}

.section.auto-choice-tab-wrapper.box-shadow {
    box-shadow:
        0px 9px 20px rgba(0, 0, 0, 0.08),
        0px 10px 100px rgba(0, 0, 0, 0.1);
}

.section.cards-container h2,
.section.research-tab-image-container h2 {
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .section .default-content-wrapper h2 {
        margin-bottom: 24px;
        /*  mobile view margin set globally */
    }

    .section.auto-choice-tab-wrapper,
    .auto-choice-detail-container {
        border-radius: 8px;
        padding: 24px 16px;
        margin: 0 16px;
    }

    .auto-choice-tab-wrapper .auto-choice-detail-wrapper .auto-choice-detail {
        border-radius: 0 0 8px 8px;
    }

    .section.full-padding-bottom {
        padding-bottom: 40px !important;
    }

    .section.full-padding-top {
        padding-top: 40px !important;
    }
}

.block-bottom-red-after .block,
.block-bottom-red-after-v2 .block {
    position: relative;
}

.block-bottom-red-after .block>div::after,
.block-bottom-red-after-v2 .block::after {
    content: "";
    background: linear-gradient(96.28deg,
            #e9680b 55.94%,
            rgba(12, 90, 242, 0.5) 94.89%);
    position: absolute;
    width: 95%;
    height: 3rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2px;
    filter: blur(0.938rem);
    z-index: -1;
}

.list-with-bullets ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 50px;
}


.list-with-bullets ul:has(li:only-child) {
    grid-template-columns: repeat(1, 1fr);
    padding-left: 0;
}

.list-with-bullets ul li {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-darkest-blue);
    position: relative;
    padding-left: 35px;
    display: flex;
    line-height: 140%;
    flex-direction: column;
    gap: 10px;
}

.list-with-bullets ul li strong {
    margin: 0;
    font-size: 16px;
    color: var(--neutral-gray);
    line-height: 27px;
    font-weight: 400;
}

.list-with-bullets ul li:before {
    top: 4px;
    color: white;
    font-size: 10px;
    line-height: 1;
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--color-cta);
    border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .default-content-wrapper p:not(.button-container) a {
    color: var(--color-cta);
    /* font-weight: 600; */
    /* text-decoration: underline; */
}

.section.box-shadow-fix-container {
    border-radius: 0.75rem;
    box-shadow: 0 -0.25rem 2rem -2px var(--box-shadow);
    max-width: 1280px;
    margin: 80px auto;
    padding: 32px 0;
}

.section.box-shadow-fix-container>div {
    padding: 0 32px !important;
}

.section.gray-border {
    border-radius: 12px;
    border: 1px solid #E6E8ED;
    max-width: 1280px;
    margin: 80px auto;
    padding: 32px 0;
}

.section.gray-border>div {
    padding: 0 32px !important;
}

.section.small-container {
    max-width: 1080px !important;
}

a.download-link {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

a.download-link::before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 14px;
    background-image: url('/icons/pdf-orange-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.section.is-hidden {
    padding: 0 !important;
}

.fragment-wrapper {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


@media (max-width: 767px) {
    .company-title {
        font-size: 20px !important;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .stocks-page-padding {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .block-box-shadow .block {
        padding: 12px;
    }

    .list-with-bullets .default-content-wrapper ul {
        grid-template-columns: repeat(1, 1fr);
        padding-left: 0;
        gap: 15px;
        margin-top: 20px;
    }

    .list-with-bullets ul li {
        padding-left: 30px;
        font-size: 18px;
        font-weight: 500;
        gap: 5px;
    }

    .list-with-bullets ul li strong {
        font-size: 14px;
        line-height: 21px;
        width: 100%;
    }

    .block-bottom-red-after .block>div::after,
    .block-bottom-red-after-v2 .block::after {
        width: 85%;
        height: 1.5rem;
    }

    /* .section.box-shadow.cards-container {
        box-shadow: none !important;
    } */
    .section.box-shadow-fix-container {
        padding: 16px 0;
        margin: 48px 12px;
    }

    .section.box-shadow-fix-container>div {
        padding: 0 16px !important;
    }

    .section.gray-border {
        padding: 16px 0;
        margin: 48px 12px;
    }

    .section.gray-border>div {
        padding: 0 16px !important;
    }
}

/* Card Carousel — activated by adding "card-carousel" as a block variant */
.card-carousel-container::-webkit-scrollbar {
    display: none;
}

.card-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.card-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    border: none;
    padding: 0;
    display: inline-block;
}

/* }
    grid-template-columns: repeat(1, 1fr);
    padding-left: 0;
} */

.list-with-bullets ul li {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-darkest-blue);
    position: relative;
    padding-left: 35px;
    display: flex;
    line-height: 140%;
    flex-direction: column;
    gap: 10px;
}

.list-with-bullets ul li strong {
    margin: 0;
    font-size: 16px;
    color: var(--neutral-gray);
    line-height: 27px;
    font-weight: 400;
}

.list-with-bullets ul li:before {
    top: 4px;
    color: white;
    font-size: 10px;
    line-height: 1;
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--color-cta);
    border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .default-content-wrapper p:not(.button-container) a {
    color: var(--color-cta);
    /* font-weight: 600; */
    /* text-decoration: underline; */
}

.section.box-shadow-fix-container {
    border-radius: 0.75rem;
    box-shadow: 0 -0.25rem 2rem -2px var(--box-shadow);
    max-width: 1280px;
    margin: 80px auto;
    padding: 32px 0;
}

.section.box-shadow-fix-container>div {
    padding: 0 32px !important;
}

.section.gray-border {
    border-radius: 12px;
    border: 1px solid #E6E8ED;
    max-width: 1280px;
    margin: 80px auto;
    padding: 32px 0;
}

.section.gray-border>div {
    padding: 0 32px !important;
}

.section.small-container {
    max-width: 1080px !important;
}

a.download-link {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

a.download-link::before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 14px;
    background-image: url('/icons/pdf-orange-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.section.is-hidden {
    padding: 0 !important;
}

.fragment-wrapper {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


@media (max-width: 767px) {
    .company-title {
        font-size: 20px !important;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .stocks-page-padding {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .block-box-shadow .block {
        padding: 12px;
    }

    .list-with-bullets .default-content-wrapper ul {
        grid-template-columns: repeat(1, 1fr);
        padding-left: 0;
        gap: 15px;
        margin-top: 20px;
    }

    .list-with-bullets ul li {
        padding-left: 30px;
        font-size: 18px;
        font-weight: 500;
        gap: 5px;
    }

    .list-with-bullets ul li strong {
        font-size: 14px;
        line-height: 21px;
        width: 100%;
    }

    .block-bottom-red-after .block>div::after,
    .block-bottom-red-after-v2 .block::after {
        width: 85%;
        height: 1.5rem;
    }

    /* .section.box-shadow.cards-container {
        box-shadow: none !important;
    } */
    .section.box-shadow-fix-container {
        padding: 16px 0;
        margin: 48px 12px;
    }

    .section.box-shadow-fix-container>div {
        padding: 0 16px !important;
    }

    .section.gray-border {
        padding: 16px 0;
        margin: 48px 12px;
    }

    .section.gray-border>div {
        padding: 0 16px !important;
    }
}

/* Card Carousel — activated by adding "card-carousel" as a block variant */
.card-carousel-container::-webkit-scrollbar {
    display: none;
}

.card-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.card-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    border: none;
    padding: 0;
    display: inline-block;
}

.card-carousel-dot.active {
    background: var(--color-cta, #e87722);
}

.background-color-white {
    background-color: var(--color-white);
    z-index: 8;
    position: relative;
}

footer,
.footer-wrapper {
    position: relative;
    /* z-index: 9; */
    background-color: var(--color-bg-grey);
}