/* ==========================================================================
   ACF Block: Detox Callout
   ========================================================================== */

.acf-block-detox {
    padding: 0 0 5rem 0; /* No top padding as it sits close to previous */
    background-color: transparent;
    font-family: inherit;
}

.acf-block-detox__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.acf-block-detox__inner {
    background-color: #FAF5ED;
    border: 1px solid #EAE3D9;
    border-radius: 16px;
    padding: 3.5rem 4rem;
    color: #4B5563;
}

.acf-block-detox__content {
    width: 100%;
}

.acf-block-detox__subheadline-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.acf-block-detox__subheadline-line {
    width: 40px;
    height: 3px;
    background-color: #E0701F;
}

.acf-block-detox__subheadline {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #E0701F;
}

.acf-block-detox__heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #0C1B3A;
}

.acf-block-detox__paragraph {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #4B5563;
}

.acf-block-detox__warning {
    background-color: #ffffff;
    border: 1px solid #f3e8da;
    border-left: 4px solid #E0701F;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.acf-block-detox__warning-icon {
    background-color: #FFF5F0;
    color: #E0701F;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.acf-block-detox__warning-icon svg {
    width: 24px;
    height: 24px;
}

.acf-block-detox__warning-text {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: #4B5563;
}

.acf-block-detox__warning-text strong {
    color: #0C1B3A;
    font-weight: 700;
}

@media (max-width: 768px) {
    .acf-block-detox__inner {
        padding: 2.5rem 2rem;
    }
    
    .acf-block-detox__heading {
        font-size: 2rem;
    }

    .acf-block-detox__warning {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
}
