 .js-h2-blog {
    font-size: 56px;
    line-height: 105%;
    letter-spacing: -0.28px;
    text-wrap: balance;
    font-weight: 500;
}

.blog-top p,.blog-richtext p {
    color: rgba(0, 0, 0, 0.75);
}
 
 .blog-richtext strong{
    font-weight: 500;
 }

.blog-richtext h2 {
    font-size: 36px;
    line-height: 115%;
    letter-spacing: -0.18px;
    text-wrap: pretty;
    margin: 48px 0px 0px;
    margin-top: 48px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    position:relative;
}

.blog-richtext h2::before{
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background-color: #e85e09;
    margin-bottom: 32px;
}

.blog-richtext h3{
    margin-top: 48px;
    font-size: 28px;
    font-weight: 500;
    line-height: 115%;
    letter-spacing: -0.14px;
    /* text-wrap: pretty; */
}

.blog-richtext p{
    line-height: 170%;
    letter-spacing: -0.085px;
    text-wrap: pretty;
    margin:17px 0px;
}

.blog-richtext.blog-richtext-new.first >p:first-of-type {
    margin-top: 0px;
}


.blog-richtext ul,.blog-richtext ol{
    padding: 0;
flex-direction: column;
    gap: 12px;
    margin-bottom:0px;
}

.blog-richtext ul,
.blog-richtext ol {
  margin-top: 17px; /* default */
}

.blog-richtext p + ul,
.blog-richtext p + ol {
  margin-top: 0; /* override when after paragraph */
}

.blog-richtext ul li{
    display: block;
    list-style: none;
     background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><circle cx='6' cy='6' r='4.5'  stroke-opacity='0.4' stroke-width='3'/></svg>");    background-repeat: no-repeat;
    -webkit-background-position: 0 8px;
    background-position: 0 8px;
line-height: 170%;
letter-spacing: -0.085px;
text-wrap: pretty;
padding-left: 19px;
background-size: 10px;
}

.blog-richtext a {
    color: #00499D !important;
    text-decoration-line: underline !important;
}

/* FAQ item */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}

.blog-richtext .faq-item:first-of-type {
  margin-top: 24px;
}

/* Question (H3) */
.faq-question {
  cursor: pointer;
  position: relative;
  margin-top: 0 !important;
  padding-right: 40px;
  font-size: 24px !important;
  text-wrap: pretty !important;
}

/* ICON CONTAINER */
.faq-icon {
  position: absolute;
  right: 0;
  top: 4px;
  width: 20px;
  height: 20px;

  /* rotation animation */
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* rotate when open */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* icon lines */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: #111;

  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* horizontal line */
.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* vertical line */
.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* morph to minus */
.faq-item.active .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) scaleY(0);
}

/* ANSWER (smooth height animation) */
.faq-answer {
  height: 0;
  overflow: hidden;

  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* spacing inside answer */
.faq-answer > *:first-child {
  margin-top: 10px;
}

/* optional: smoother typography inside */
.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  margin-bottom: 10px;
}

/* optional: hover effect */
.faq-question:hover {
  opacity: 0.8;
}

@media only screen and (max-width:500px){
.js-h2-blog{
    font-size: 36px;
}

.blog-richtext h2{
    font-size: 28px;
}
.blog-richtext h3{
    font-size: 24px;
}
.blog-richtext h2 {
  margin-top: 32px;
}
}