html {
    height: 100%;
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 100, 100, 0.6) transparent;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100%;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(100, 100, 100, 0.6);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 100, 100, 0.8);
}

#comic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 0;
}

#container-wrapper {
    max-width: 900px;
    margin: 3rem auto 6rem;
}

#content-container {
    position: relative;
    z-index: 1;
    max-width: 876px;
    margin: 3rem auto 6rem;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.wrapper {
    position: relative;
    min-height: 100vh;
    padding: 0 12px;
    padding-bottom: 1rem;
}

#logo {
    width: 100%;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
}

.tagline {
    text-align: left;
    font-family: Poppins, sans-serif;
    font-weight: 900;
    font-size: clamp(14px, 2vw, 24px);
    line-height: 2rem;
    color: #5a7cae;
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: -.05rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    width: 80%;
    padding: 1rem;
    box-sizing: border-box;
    margin-left: 20%;
}

.tagline {
    margin: 0;
    text-align: left;
    font-size: 2rem;
}

.badges {
    position: absolute;
    right: 85px; /* Position to the left of cosmic code logo */
    top: 16px;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.badges img {
    height: 40px;
    width: auto;
}

.badges img[src*="DTM"],
.badges img[src*="climate-reality"] {
    height: 45px;
}

.badges img[src*="ATD"] {
    height: 35px;
}

.badges img:hover {
    opacity: 1;
}

.main-content {
    position: relative;
    padding: 0 2rem;
    flex-grow: 1;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    margin-top:-4.5rem;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

.main-content h1 {
    flex: 1;
    text-align: left;
    font-family: captain-comic, sans-serif;
    font-size: 1.8rem !important;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

h1 .question-text {
    font-size: 1.8rem !important;
    padding: 0;
    margin-top: 3rem;
}

.question-text {
    flex: 1;
    text-align: left;
    padding: 0 1rem;
    font-family: captain-comic, sans-serif;
    font-size: 1.2rem;
    line-height: 1.8rem;
}

.footer {
    background-image: url('images/footer-bar-ink.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 2rem;
    margin-top: auto;
    box-sizing: border-box;
    width: 100%;
    max-width: 876px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 300;
    gap: 1rem;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a i {
    margin-left: 0.5rem;
    color: #fff;
}

.contact-info a:hover {
    opacity: 0.8;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 1.5rem;
    margin: 1rem 0;
    padding: 2rem;
    padding-top: 4rem;
    align-items: center;
    background-image: url('images/space.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    border: 2px solid #000;
    border-radius: 0.5rem;
    filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="4" seed="1" /><feDisplacementMap in="SourceGraphic" scale="2" /></filter></svg>#filter');
}

.client-logos::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid #000;
    border-radius: 0.5rem;
    pointer-events: none;
    z-index: 1;
    filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="4" seed="2" /><feDisplacementMap in="SourceGraphic" scale="2" /></filter></svg>#filter');
}

.client-logos-title {
    position: absolute;
    top: -1.0rem;
    left: -.75rem;
    background: linear-gradient(#ffcc00, #ff9900);
    padding: .25rem 2rem;
    font-family: captain-comic, sans-serif;
    font-weight: bold;
    font-style: italic;
    font-size: 1.5rem;
    border: 2px solid #000;
    z-index: 3;
    border-radius: .2rem;
}

.client-logos img {
    width: 120%;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    transform: translateX(-10%);
    position: relative;
    z-index: 2;
}

.client-logos img:hover {
    opacity: 1;
}

.questions-accordion {
    margin: 2rem 0;
}

.question-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
    padding: 1.5rem;
    border: 2px solid #000;
    filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="5" seed="1" /><feDisplacementMap in="SourceGraphic" in2="noise" scale="3" /></filter></svg>#filter');
    background-image: 
        linear-gradient(#ffcccc, #ffcccc),
        url('images/paper.jpg');
    background-blend-mode: multiply, normal;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center;
    border-radius: .3rem;
    overflow: hidden;
    box-sizing: border-box;
}

.question-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid #000;
    filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="5" seed="1" /><feDisplacementMap in="SourceGraphic" in2="noise" scale="3" /></filter></svg>#filter');
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: multiply;
}

.question-item .halftone {
    content: '';
    position: absolute;
    inset: -2px;
    background: url('images/halftones/halftone-simple.svg') repeat-x center;
    background-size: auto 100%;
    mix-blend-mode: soft-light;
    opacity: 0.45;
    z-index: 2;
    pointer-events: none;
}

.question-item:nth-child(1) { background-image: linear-gradient(#ffe6e6, #ffe6e6), url('images/paper.jpg'); }
.question-item:nth-child(2) { background-image: linear-gradient(#e6ffe6, #e6ffe6), url('images/paper.jpg'); }
.question-item:nth-child(3) { background-image: linear-gradient(#e6e6ff, #e6e6ff), url('images/paper.jpg'); }
.question-item:nth-child(4) { background-image: linear-gradient(#ffffe6, #ffffe6), url('images/paper.jpg'); }
.question-item:nth-child(5) { background-image: linear-gradient(#ffe6ff, #ffe6ff), url('images/paper.jpg'); }

.answer {
    display: block;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    margin: 1rem 0;
}

.answer::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #000;
    border-radius: 8px;
    filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="5" seed="1" /><feDisplacementMap in="SourceGraphic" in2="noise" scale="2" /></filter></svg>#filter');
    pointer-events: none;
    z-index: 1;
}

.question-item .answer {
    display: none;
}

.question-item.active .answer {
    display: block;
}

.answer p {
    font-family: captain-comic, sans-serif;
    font-size: .9rem;
    line-height: 1.3rem;
    color: #4a729a;
    margin: 1rem 0;
    padding: 1rem;
}

.question-item .answer p {
    background: #fff;
    position: relative;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
}

.question-item .answer p::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid #000;
    filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="5" seed="1" /><feDisplacementMap in="SourceGraphic" in2="noise" scale="3" /></filter></svg>#filter');
    pointer-events: none;
    z-index: 1;
}

.answer img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
}

.question-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.question-arrow {
    display: flex;
    align-items: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.question-icon {
    width: 60px;
    height: 60px;
    background: url('images/question-arrow.png') no-repeat center;
    background-size: contain;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.8));
}

.question-item.active .question-icon {
    transform: rotate(180deg);
}

@media (max-width: 480px) {
    .question-item {
        padding: 1rem;
    }

    .question-text {
        font-size: 1rem;
        line-height: 1.4rem;
        margin-top:4rem;
    }

    .question-icon {
        position: absolute;
        right: -.5rem;
        top: 1rem;
        margin: 0;
        transform: translateY(-50%) rotate(0deg);
        width: 32px;
        height: 32px;
    }

    .question-item.active .question-icon {
        transform: translateY(-50%) rotate(180deg);
    }

    .question-button {
        padding-top: 0;
        position: relative;
    }

    .question-arrow {
        position: absolute;
        left: 0;
        top: 2rem;
        transform: translateY(-50%);
    }

    .burst-sfx {
        position: static;
        transform: none;
        margin: 0 auto .5rem auto;
        display: block;
    }

    .answer img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 1rem auto;
        border: 2px solid #000;
        box-shadow: 4px 4px 0 #000;
    }

    .highlighter {
        display: inline-block;
        white-space: normal;
        padding: 0 0.2rem;
    }
}

.footer {
    background-image: url('images/footer-bar-ink.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 2rem;
    margin-top: auto;
    box-sizing: border-box;
    width: 100%;
    max-width: 876px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 300;
    gap: 1rem;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a i {
    margin-left: 0.5rem;
    color: #fff;
}

.contact-info a:hover {
    opacity: 0.8;
}

.top-bar {
    position: absolute;
    top: 12px;
    width: 100%;
    left: 0;
    margin: 0;
    height: 55px;
    overflow: hidden;
}

.top-bar img {
    height: 55px;
    width: auto;
    min-width: 100%;
    object-fit: cover;
}

.cosmic-code {
    height: 70px;
    position: absolute;
    right: 15px;
    top: 5px;
}

.portrait-container {
    position: absolute;
    left: 0;
    top: 67px;
    width: 20%;
    min-width: 120px;
}

.masthead-portrait {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.masthead-portrait-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portrait-container:hover .masthead-portrait {
    opacity: 0;
}

.portrait-container:hover .masthead-portrait-hover {
    opacity: 1;
}

.header-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    display: table;
}

.portrait-container {
    display: table-cell;
    width: 20%;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.portrait-container img {
    width: 100%;
    height: auto;
    display: block;
}

.logo-container {
    display: table-cell;
    width: 80%;
    margin: 0;
    padding-top:5rem;
    padding-left:1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    vertical-align: top;
}

.stacked-logo {
    display: none;
}

.wide-logo {
    width: 100%;
    height: auto;
    display: block;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    width: 80%;
    padding: 1rem;
    box-sizing: border-box;
    margin-left: 20%;
}

.tagline {
    margin: 0;
    text-align: left;
    font-size: 2rem;
}

.speakipedia-link {
    position: absolute;
    left: 12px;
    top: 5px;
    z-index: 2;
}

.cottage-home {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
}

.cottage-home img {
    height: 1.2em;
    vertical-align: middle;
}

.speakipedia-logo {
    height: 42px!important;
    width: auto;
    transition: opacity 0.3s ease;
}

.speakipedia-logo:hover {
    opacity: 0.8;
}

.date-stamp {
    position: absolute;
    top: 67px;
    left: calc(10% + 32px);
    text-align: center;
    color: #342f25;
    line-height: 1;
    z-index: 2;
    font-family: monospace;
}

.date-day {
    font-size: 24px;
    font-weight: bold;
}

.date-month {
    font-size: 13px;
    font-weight: bold;
    margin-top:-3px;
}

.date-year {
    font-size: 11px;
    font-weight: bold;
}

.burst-sfx {
    width: 16.67vw;
    max-width: 150px;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
}

.bio-image {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.book-feature, .guitar-feature {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.book-cover {
    max-width: 200px;
    height: auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    margin: 2rem 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.bio-figure {
    margin: 2rem 0;
}

.bio-figure figcaption,
.disclaimer {
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
    font-size:.75rem;
    color:#666;
}

.visit-speakipedia {
    display: block;
    width: fit-content;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background-color: #6B7F94;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.visit-speakipedia:hover {
    background-color: #536475;
}

.virtual-coffee-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
}

.coffee-images {
    width: 300px;
    margin: 2rem auto;
}

.coffee-image {
    width: 100%;
    height: auto;
}

.calendar-embed {
    margin-top: 2rem;
    width: 100%;
}

#testimonials {
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.testimonial-container {
    position: relative;
    margin: 3rem auto;
    max-width: 800px;
}

.testimonial-wrapper {
    position: relative;
    overflow: visible;
    border-radius: 0.3rem;
    margin: 0;
    padding: 0;
    max-width: 876px;
    border: 2px solid #000;
    filter: url('#paper-texture') url('#rough-border');
    background-image: url('images/stage-lights.jpg');
    background-size: cover;
    background-position: center;
}

.testimonial {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    gap: 2rem;
    z-index: 3;
    filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="5" seed="1" /><feDisplacementMap in="SourceGraphic" in2="noise" scale="3" /></filter></svg>#filter');
    border: 2px solid #000;
}

.testimonial::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid #000;
    filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="5" seed="1" /><feDisplacementMap in="SourceGraphic" in2="noise" scale="3" /></filter></svg>#filter');
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: multiply;
}

.testimonial::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: url('images/halftones/halftone-simple.svg') center;
    background-size: 100% auto;
    opacity: 0.07;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: soft-light;
}

.testimonial-quote {
    font-family: captain-comic, sans-serif;
    font-size: 1rem;
    line-height: 1.6rem;
    color: #2a3744;
    margin-bottom: 1.5rem;
    position: relative;
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
    width: calc(100% - 100px);
    margin-left: 10px;
    z-index: 3;
    filter: url('#paper-texture') url('#rough-border');
    transition: opacity 0.3s ease-in-out;
}

.testimonial-attribution {
    position: absolute;
    bottom: -35px;
    right: -22px;
    background: #fff9c4;
    padding: 0.3rem 0.8rem;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
    z-index: 4;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    white-space: nowrap;
    transition: opacity 0.3s ease-in-out;
}

.testimonial-author {
    font-weight: bold;
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    opacity: 0.8;
}

.testimonial-image {
    flex: 0 0 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #000;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    position: relative;
    transition: opacity 0.3s ease-in-out;
}

.testimonial-quote::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    border-style: solid;
    border-width: 20px 20px 20px 0;
    border-color: transparent #000 transparent transparent;
}

.testimonial-quote::after {
    content: '';
    position: absolute;
    left: -17px;
    top: 30px;
    border-style: solid;
    border-width: 20px 20px 20px 0;
    border-color: transparent #fff transparent transparent;
}

.testimonial-author {
    font-weight: bold;
    color: #2452a8;
}

.testimonial-role {
    font-style: italic;
    color: #666;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 1;
    z-index: 10;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    overflow: hidden;
    margin: 0 -30px;
    transition: transform 0.2s ease-out;
}

.testimonial-nav.prev:hover {
    transform: translateY(-50%) translateX(-3px) scale(1.1);
}

.testimonial-nav.next:hover {
    transform: translateY(-50%) translateX(3px) scale(1.1);
}

.testimonial-nav.prev {
    left: 17px;
    background: url('images/testimonials/arrow-left.png') no-repeat center;
    background-size: contain;
}

.testimonial-nav.next {
    right: 17px;
    background: url('images/testimonials/arrow-right.png') no-repeat center;
    background-size: contain;
}

.about-dave {
    width:100%;

}

@media (max-width: 750px) {
    .wide-logo {
        display: none;
    }

    .stacked-logo {
        display: block;
        width: 100%;
        height: auto;
        margin-left: .5rem;
        margin-top: .5rem;
    }

    .header-content {
        width: 100%;
        margin-left: 0;
    }

    .tagline {
        margin: 0;
        padding: 0;
        text-align: left;
        font-size: 2rem;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    #content-container {
        padding: 1rem;
    }

    .main-content {
        padding: 0;
        margin-top: 0;
    }

    .footer {
        padding: 1.5rem 1rem;
        width: 100%;
    }

    .client-logos {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }

    .client-logos img{
        width:100%;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .contact-info span {
        width: 100%;
        text-align: left;
    }
    
    .badges {
        display: none;
    }
    
    .graphic-box {
        left: calc(17vw + 15px);
        width: 60px;
        height: 60px;
    }

    .date-year {
        display: none;
    }
    
    .burst-sfx {
        width: 20vw;
    }

    .book-feature, .guitar-feature {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .book-cover {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    
    .wrapper {
        max-width:98%;
    }

    .main-content {
        margin-top:-6rem;
    }
    .date-stamp {
        position: absolute;
        top: 67px;
        left: calc(10% + 40px);
        text-align: center;
        color: #342f25;
        line-height: 1;
        z-index: 2;
        font-family: monospace;
    }

    .date-month {
        font-size: 13px;
        font-weight: bold;
        margin-top: -.15rem;
    }

    .header-content {
        padding: 2rem 1rem 1rem 0;
        margin-left:1rem;
    }

    .tagline {
        font-size: 1.4rem;
        line-height: 1.3rem;
        padding-top: 3rem;
        clear:both;
    }

    .portrait-container {
        width: 30%;
    }

    .logo-container {
        width: 70%;
        padding-left:1.5em;
    }

    #content-container {
        padding: 0.5rem;
    }

    .client-logos {
        position: relative;
        border-radius: 0.5rem !important;
        filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="4" seed="1" /><feDisplacementMap in="SourceGraphic" scale="2" /></filter></svg>#filter');
        border: 2px solid #000;
        overflow: visible;
        padding: 1rem;
        margin: 0;
        background-image: url('images/space.jpg');
        background-size: cover;
        background-position: center;
    }

    .client-logos::before {
        border-radius: 0.5rem;
        filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="4" seed="2" /><feDisplacementMap in="SourceGraphic" scale="2" /></filter></svg>#filter');
    }

    .client-logos-title {
        font-size: 1rem !important;
        top:-1.8rem;
    }

    .testimonial-container {
        max-width: 100%;
        margin: 3rem auto;
    }

    .testimonial-wrapper {
        overflow: visible;
        padding-bottom: 1.5rem;
        filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.02" numOctaves="3" seed="1" /><feDisplacementMap in="SourceGraphic" scale="1" /></filter></svg>#filter');
        border-radius: 0.3rem !important;
        border: 2px solid #000;
    }

    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border: none !important;
    }

    .testimonial::before {
        display: none !important;
    }

    .testimonial-attribution {
        bottom: -30px;
        padding: 0.25rem 0.6rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
        left: 70%;
        transform: translateX(-50%);
        width: auto;
        min-width: min-content;
        filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.02" numOctaves="3" seed="1" /><feDisplacementMap in="SourceGraphic" scale="1" /></filter></svg>#filter');
    }

    .testimonial-image {
        width: 80px !important;
        height: 80px !important;
        flex: 0 0 80px !important;
        border-radius: 50% !important;
        margin: -3rem auto -2rem !important;
        z-index: 4 !important;
        border: 2px solid #000 !important;
        box-shadow: 3px 3px 0 #000 !important;
        overflow: hidden !important;
        filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="3" seed="1" /><feDisplacementMap in="SourceGraphic" scale="2" /></filter></svg>#filter') !important;
    }

    .testimonial-quote {
        width: 100%;
        margin: -1rem auto 0;
        z-index: 2;
        font-size: 0.9rem;
        line-height: 1.4rem;
    }

    .testimonial-author {
        font-size: 0.75rem;
        line-height: 1rem;
    }

    .testimonial-role {
        font-size: 0.65rem;
        line-height: 1rem;
    }

    .testimonial-role::before {
        display: none;
    }

    .testimonial-nav.prev {
        left: 7px;
        opacity: 1 !important;
    }

    .testimonial-nav.next {
        right: 0;
        opacity: 1 !important;
    }
}

.home-panel {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
}

.home-panel img {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.home-panel .answer img {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}