/**
 * Theme Name:      Jasmin Tantra Master Child
 * Theme URI:       https://www.elegantthemes.com/gallery/divi/
 * Description:     A Child to work with the WP EasyBoard © Martin Wagner
 * Author:          m-art-medien
 * Author URI:      https://m-art-medien.de
 * Template:         Divi
 * Version:         1.2.2
 * Text Domain:     jasmin-tantra-master-child
 * License:         GPL2
 * License URI:     https://www.gnu.org/licenses/gpl-2.0.html
 */


/* ---------------------- Theme customization starts here ---------------------- */

/* Tastatur-Fokus sichtbar (WCAG 2.4.7). Divi-Reset setzt global :focus{outline:0} (Divi/style.min.css, inline);
   keine Theme-Option dafuer. Nur bei Tastaturbedienung (:focus-visible), Maus-Klick bleibt ohne Rahmen.
   currentColor = Textfarbe des Elements: weiss auf dunklem Grund, Magenta/Dunkel auf hellem — passt immer zum Design. */
:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
	border-radius: 6px;
}

/* Tabellen in Text-/Code-Modulen (Oeffnungszeiten im Footer, Damen-Daten aus dem Portal) duerfen auf dem Handy
   nicht ueber den Viewport hinausragen: volle Breite, feste Zellbreiten (auch inline) aufheben, lange Woerter umbrechen. */
.et_pb_text_inner table,
.et_pb_code_inner table,
.et_pb_post_content table {
	width: 100% !important;
	max-width: 100%;
	table-layout: fixed;
}
.et_pb_text_inner table td,
.et_pb_code_inner table td,
.et_pb_post_content table td {
	width: auto !important;
	overflow-wrap: anywhere;
}
