/* ===== Article Typography (percent-only sizing) ===== */


.prose {
    letter-spacing: 0.02em;
}

/* Headings */
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
    line-height: 1.25;
    font-weight: 700;
    margin: clamp(16px, 2vw, 32px) 0;
}

.prose h1 {
    font-size: clamp(160%, 4.5vw, 220%);
}

.prose h2 {
    font-size: clamp(140%, 4vw, 190%);
}

.prose h3 {
    font-size: clamp(125%, 3.5vw, 160%);
}

.prose h4 {
    font-size: clamp(110%, 3vw, 140%);
}

.prose h5 {
    font-size: clamp(95%, 2.5vw, 115%);
}

.prose h6 {
    font-size: clamp(85%, 2vw, 100%);
}

.prose p {
    font-size: 100%;
    margin: clamp(16px, 1.8vw, 24px) 0;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

/* Images & figures */
.prose img,
.prose svg {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2.5% 0;
    padding: clamp(8px, 1.5vw, 12px);
    background-color: #ffffff;
    opacity: 1;
    background-size: 4px 4px;
    background-image: repeating-linear-gradient(45deg, #cbcfe3 0, #cbcfe3 0.4px, #ffffff 0, #ffffff 50%);
}


.prose figure {
    margin: 3% 0;
}

.prose figcaption {
    font-size: 90%;
    line-height: 140%;
    margin-top: 1%;
    color: #555;
    text-align: center;
}

/* Lists */
.prose ul,
.prose ol {
    margin: 0 0 2.5% 0;
    padding-left: 5%;
    line-height: 1.4;
    color: #000000;
}

.prose li + li {
    margin-top: 1%;
}

.prose dl {
    margin: 0 0 3% 0;
}

.prose dt {
    font-weight: 600;
    margin-top: 2%;
}

.prose dd {
    margin-left: 3%;
    margin-bottom: 1.5%;
}

/* Blockquotes */
.prose blockquote {
    margin: clamp(12px, 2vw, 32px) clamp(8px, 1.5vw, 12px);
    padding: clamp(8px, 1.5vw, 16px) clamp(16px, 3vw, 32px);
    border-left: clamp(3px, 0.5vw, 5px) solid rgb(49 46 129 / 20%);
    background: rgb(49 46 129 / 1%);
    text-transform: none;
    font-weight: 600;
    font-style: italic;
    color: #333;
    line-height: 1.6;

}

/* Optional: make quotes inside blockquote a bit bigger */
.prose blockquote p {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    margin: 0; /* prevent double margins inside */
}

.prose blockquote p:last-child {
    margin-bottom: 0;
}

.prose blockquote p::first-letter {
    text-transform: uppercase;
}

.prose blockquote p:before,
.prose blockquote p:after {
    content: none !important; /* remove pseudo-element quotes */
}

/* Tables */
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 3% 0;
}

.prose th,
.prose td {
    text-align: left;
    padding: 1.5%;
    vertical-align: top;
}

.prose thead th {
    font-weight: 700;
}

.prose tbody tr:nth-child(odd) {
    background: #fafafa;
}

/* Horizontal rule */
.prose hr {
    height: 0.4%;
    background: #eee;
    margin: 4% 0;
    border: 0;
}

.prose sup,
.prose sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
}

.prose sup {
    top: -0.5%;
}

.prose sub {
    bottom: -0.5%;
}

/* Links */
.prose a {
    color: rgb(30 64 175);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: inherit;
}

.prose .col {
    flex: 1 1 48%;
    padding: 1%;
    border-radius: 1%;
    background: #f9f9fb;
}

.prose .responsive_video {
    position: relative;
    display: block;
    padding-bottom: 56.25% !important;
    margin-bottom: 20px !important;
    width: 100%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.prose p video iframe, .prose p video object, .prose p video embed, .responsive_video iframe, .responsive_video embed, .responsive_video object {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;

}

.prose .faq-section {

    padding: 0%;
    border: 0 dashed rgb(49 46 129 / 20%);
    font-size: 90%;
    display:block;
    background-color: #fff;
}

.prose .faq-section H3 {
    font-style: none;
    font-weight:700;
    margin-top: 0;
    border-radius: 12px;
    padding: 2%;
background-color: #ffffff;
opacity: 1;
background-size: 4px 4px;
background-image: repeating-linear-gradient(45deg, #e1e1e1 0, #e1e1e1 0.4px, #ffffff 0, #ffffff 50%);
}

.prose .faq-item {
    margin-bottom: 20px;  
}

.prose .faq-item p {
    margin: 5px 0;
    font-style: italic;
}