/**
 * Text Container Block
 * Synced with ACF: Text Container
 */

/* Padding: "Top Only" = no bottom; "Bottom Only" = no top; "Neither" = no top or bottom */
.text-container-section--padding-top {
    padding-bottom: 0 !important;
}

.text-container-section--padding-bottom {
    padding-top: 0 !important;
}

.text-container-section--padding-neither {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Text: 1rem on tablet/mobile, 1.5rem on desktop */
.text-container-text {
    font-size: 1rem;
    margin: 0;
}

@media (min-width: 1024px) {
    .text-container-text {
        font-size: 1.5rem;
    }
}
