/* Block Styles */
.hero-faq-block {
    margin: 5em 0;
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: visible;
    
}
.hero-faq-block.shaded-background {
    background: var(--shaded-background-color);
    padding: 5em 0;
}

.acf-block-preview .hero-faq-block {
    margin:unset;
    width: unset;
    padding: 5em 2em;
    
}
.hero-faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--content-width, 1300px);
    margin: auto;
    gap:5em;
    width: calc(100vw - 40px);
}
.hero-faq-block.full-width .hero-faq-container {
    grid-template-columns: 1fr;
    gap: 3em;
}
@media(max-width:1000px) {
    .hero-faq-container {
        grid-template-columns: 1fr;
        gap: 2em;
    }
}
.hero-faq-title {
    font-size: 2em;
}
.hero-faq-container-right {
    display: grid;
    gap: 1em;
    align-items: self-start;
    font-size: clamp(12px, 2vw, 16px);
}
.hero-faq-item {
    background: var(--shaded-background-color);
    /* padding: 1.375em; */
    border-radius: 20px;
    box-shadow: 0 5px 5px -5px rgba(0,0,0,0.3);
    transition: 0.2s ease;
}
.hero-faq-block.shaded-background .hero-faq-item {
    background: white;
    box-shadow: 0 5px 5px -5px rgba(0,0,0,0.1);
}

.hero-faq-item:hover {
    transform: translateY(-2px);
}
.hero-faq-question-container {
    display: grid;
    grid-template-columns: 24px auto min-content;
    gap: 12px;
    grid-template-rows: min-content;
    align-items: self-start;
    padding: 1.375em;
}
.hero-faq-question {
    margin: 0;
    font-weight: bold;
    align-self: center;
}
.hero-faq-question-container {
    position: relative;
}
.hero-faq-answer {
    padding: 0 1.375em 1.375em 1.375em;
    transition: .5s ease;
    overflow: hidden;
    /* height: 50px; */
}
.hero-faq-answer p {
    margin: 0
}
.hero-faq-content {
    display: grid;
    /* gap: 0.51em; */
}
.hero-faq-toggle {
    background: unset;
    border: unset;
    padding: 0;
    
}
.hero-faq-toggle:before  {
    content: '';
    display: inline-flex;
    min-width: 8px;
    height: 8px;
    border: 2px solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: 2px;
    transition: .5s ease;
}
.hero-faq-item.is-open .hero-faq-toggle:before  {
    transform: rotate(-135deg);
}
.hero-faq-toggle:after  {
    content:'';
    display: block;
    background: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top:0;
    cursor: pointer;
}
.hero-key-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
    margin-top:2em;
    font-size: clamp(12px, 2vw, 16px);
}
.hero-key-feature {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 5px -5px rgba(0,0,0,0.1);
    transition: 0.2s ease;
    padding: 1.375em;
    display: flex;
    align-items: center;
    gap: 1em;
}
@media(max-width: 550px) {
    .hero-key-feature {
        flex-direction: column;
        text-align: center;
    }
}
.hero-key-feature-content {
    font-size: 0.875em;
    line-height: 1.2
}

.hero-key-feature {--accent: var(--orange);}
.hero-key-feature:nth-child(7n+1) { --accent: var(--orange) }
.hero-key-feature:nth-child(7n+2) { --accent: var(--blue) }
.hero-key-feature:nth-child(7n+3) { --accent: var(--pink) }
.hero-key-feature:nth-child(7n+4) { --accent: var(--green) }
.hero-key-feature:nth-child(7n+5) { --accent: var(--yellow) }
.hero-key-feature:nth-child(7n+6) { --accent: var(--aqua) }
.hero-key-feature:nth-child(7n+7) { --accent: var(--purple) }



.hero-key-feature svg path:not([stroke="none"]) {
	stroke: var(--accent);
}
.hero-key-feature-icon {
	background: color-mix(in srgb, var(--accent) 10%, white);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.25em;
    width: 3.25em;
    min-width:3.25em;
    border-radius:100px;
    grid-row: 1/3;
}

.hero-key-feature-title {
    font-weight: bold;
}
.hero-key-feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}