/*
Theme Name: EVD Fuechse Theme
Theme URI: https://senioren.evd-ev.de
Author: Steffen Kaster (Kaster Development)
Author URI: https://kaster-development.de
Description: Custom theme for EVD Füchse Duisburg
Version: 1.6.3
Text Domain: evd-fuechse-theme
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tested up to: 6.8
Requires PHP: 8.2
Tags: blog, one-column, two-columns, custom-background, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments, translation-ready, wide-blocks
Copyright: © 2025 Kaster Development. Alle Rechte vorbehalten.
*/

/* ======================================
   1. CSS VARIABLES (CUSTOM PROPERTIES)
====================================== */
:root {
    /* Primärfarben */
    --fuechse-rot: #DF0914;
    --fuechse-grau-dunkel: #1D1E1C;
    --fuechse-grau: #333333;
    --fuechse-grau-hell: #444444;
    
    /* Akzentfarben */
    --sprade-blau: #0088ce;
    
    /* Funktionsfarben */
    --text-weiss: #ffffff;
    --text-grau: #cccccc;
    --text-grau-hell: #888888;
    
    /* UI-Farben */
    --bg-dunkel: #2b2b2b;
    --bg-transparent-dunkel: rgba(29, 30, 28, 0.2);
    --bg-transparent-rot: rgba(223, 9, 20, 0.2);
    --bg-transparent-blau: rgba(0, 136, 206, 0.2);
    --border-transparent: rgba(255, 255, 255, 0.1);

    /* Heading size variables */
    --h1-size: 2.8rem;
    --h2-size: 2.4rem;
    --h3-size: 2rem;
    --h4-size: 1.8rem;
    --h5-size: 1.5rem;
    --h6-size: 1.2rem;
}

/* ======================================
   2. RESET & BASE STYLES
====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins-Regular', sans-serif !important;
    margin: 0;
    padding: 0;
    background-color: var(--fuechse-grau);
}

/* ======================================
   2.1 RESPONSIVE IMAGES (CUSTOM SIZES)
====================================== */
/* Stelle sicher, dass die benutzerdefinierten Größen nie den Container überlaufen
   und gleichzeitig nicht über ihre reale Breite (512/1024px) hochskaliert werden. */
img.size-evd_content_512w,
.wp-caption img.size-evd_content_512w {
    width: 100%;
    max-width: 512px;
    height: auto;
}

img.size-evd_content_1024w,
.wp-caption img.size-evd_content_1024w {
    width: 100%;
    max-width: 1024px;
    height: auto;
}

/* Captions sollen nicht breiter sein als ihr Container */
figure.wp-caption { max-width: 100%; }

/* Accessibility: screen-reader-text (WP Core generiert diese Klasse) */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
    clip: auto !important;
    clip-path: none;
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: 600;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

/* Alias für screen reader only Elemente */
.sr-only {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* ======================================
   3. TYPOGRAPHY
====================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Redzone BlackReg', sans-serif !important;
}

/* Content Heading Styles */
.content h1, 
.content h2, 
.content h3, 
.content h4, 
.content h5, 
.content h6 {
    color: var(--fuechse-rot) !important;
}

.content h1 { font-size: var(--h1-size); }
.content h2 { font-size: var(--h2-size); }
.content h3 { font-size: var(--h3-size); }
.content h4 { font-size: var(--h4-size); }
.content h5 { font-size: var(--h5-size); }
.content h6 { font-size: var(--h6-size); }

/* ======================================
   4. LINKS
====================================== */
a {
    color: var(--fuechse-rot);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--fuechse-rot);
    text-decoration: underline;
}

/* Link Exceptions - No underline on hover */
.elementor-widget-evd_blog .blog-actions .read-more:hover,
.blog-card-link:hover,
.elementor-widget-evd_blog .blog-card-link:hover,
.evd-button-wrapper a:hover,
.read-more:hover {
    text-decoration: none !important;
}

/* ======================================
   5. LAYOUT & CONTAINERS
====================================== */
.content-wrapper,
.content-wrapper-top,
.content-wrapper-nav {
    width: 100%;
    background-color: var(--fuechse-grau);
}

.content-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.content-wrapper-nav.dark {
    background-color: var(--fuechse-grau-dunkel);
}

.content-container {
    width: 85%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* ======================================
   6. HEADER COMPONENTS
====================================== */

/* Home Header (Startseite) */
.home-header {
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
}

.home-header-image-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.home-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.home-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
}

.home-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
}

.home-header-text-wrapper {
    display: inline-block;
    position: relative;
}

.home-header-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    display: inline-block;
    max-width: 100%;
    color: #ffffff;
}

.home-header-subtitle {
    font-size: 1.8rem;
    margin-top: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
    color: #ffffff;
}

/* Standard Header Image */
.header-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.header-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, 
                rgba(51,51,51,0) 0%, 
                rgba(51,51,51,0.2) 30%, 
                rgba(51,51,51,0.6) 60%,
                rgba(51,51,51,0.85) 85%,
                rgba(51,51,51,1) 100%);
    pointer-events: none;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Page Header (Unterseiten) */
.page-header {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.page-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    text-align: center;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.page-header-title {
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    padding: 0 20px;
}

/* Gradient Deaktivierung */
body.gradient-disabled .header-image::after,
body.gradient-disabled .page-header::after,
body.gradient-disabled .header-image::before,
body.gradient-disabled .page-header::before {
    display: none !important;
    background: none !important;
    opacity: 0 !important;
}

/* ======================================
   7. MATCH CARDS
====================================== */
.match-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    margin-top: -150px;
    z-index: 2;
}

.match-card {
    background-color: var(--bg-dunkel);
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    color: var(--text-weiss);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.match-card h2 {
    margin-bottom: 25px;
    font-size: 24px;
    color: var(--text-weiss);
}

.match-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
}

.team-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.vs {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-weiss);
}

.match-card p {
    margin: 20px 0;
    line-height: 1.6;
    font-size: 18px;
}

/* ======================================
   8. BLOG SECTION
====================================== */
.blog-section {
    padding: 20px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--text-weiss);
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-dunkel);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

/* ======================================
   UTILITY & EMPFOHLENE KOMPATIBILITÄTSKLASSEN
====================================== */
/* .sticky: Hervorhebung für angepinnte Beiträge */
.sticky {
    position: relative;
    border-left: 4px solid var(--fuechse-rot);
    padding-left: 12px;
}

/* .bypostauthor: Kommentare des Autors visuell kennzeichnen */
.bypostauthor {
    background: rgba(223, 9, 20, 0.06);
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    max-width: none;
}

/* Obere Abrundung für Blog-Bild Container */
.blog-image {
    border-radius: 10px 10px 0 0;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-categories {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.blog-category {
    background: var(--fuechse-rot);
    color: var(--text-weiss);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1.2;
    border: 1px solid var(--text-weiss);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--text-grau-hell);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-content h3 {
    color: var(--text-weiss);
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-grau);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--fuechse-rot);
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* ======================================
   9. SEASON TICKET SECTION
====================================== */
.season-ticket-section {
    padding: 80px 20px;
    background-color: var(--bg-dunkel);
    position: relative;
    margin-top: 3rem;
}

.season-ticket-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fuechse-rot), transparent);
}

.season-ticket-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.season-ticket-image {
    flex: 0 1 50%;
    max-width: 600px;
    position: relative;
}

.season-ticket-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--bg-transparent-rot);
    transition: transform 0.3s ease;
}

.season-ticket-image:hover img {
    transform: scale(1.02);
}

.season-ticket-content {
    flex: 0 1 50%;
    padding: 0 20px;
    text-align: center;
}

.season-ticket-content h2 {
    color: var(--text-weiss);
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.season-ticket-content p {
    font-size: 1.2rem;
    color: var(--text-grau);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ======================================
   10. FANSHOP SECTION
====================================== */
.fanshop-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.fanshop-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0.5rem;
}

.product-card {
    background: var(--bg-dunkel);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-transparent);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-image {
    position: relative;
    height: 300px;
    background: #222;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--fuechse-rot);
    color: var(--text-weiss);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-content {
    padding: 1.5rem;
    text-align: center;
}

.product-content h3 {
    color: var(--text-weiss);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--fuechse-rot);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ======================================
   11. CONTENT STYLING
====================================== */

/* WordPress Standard-Bildstile */
.content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.5em;
}

.content .alignright {
    float: right;
    margin: 0.5em 0 1.5em 1.5em;
}

.content .alignleft {
    float: left;
    margin: 0.5em 1.5em 1.5em 0;
}

.content .aligncenter {
    display: block;
    margin: 1.5em auto;
}

/* WordPress Bildunterschriften */
.content .wp-caption {
    max-width: 100%;
    margin-bottom: 1.5em;
    background: var(--bg-dunkel);
    border: 1px solid var(--border-transparent);
    padding: 5px;
    border-radius: 4px;
}

.content .wp-caption img {
    margin-bottom: 0.5em;
}

.content .wp-caption-text {
    font-size: 0.9em;
    color: var(--text-grau);
    text-align: center;
    margin: 0;
    padding: 5px;
    font-style: italic;
}

/* WordPress Galerie */
.content .gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 1.5em;
    justify-content: center;
}

.content .gallery-item {
    padding: 10px;
    text-align: center;
    margin: 0;
}

.content .gallery-columns-1 .gallery-item { width: 100%; }
.content .gallery-columns-2 .gallery-item { width: 50%; }
.content .gallery-columns-3 .gallery-item { width: 33.333%; }
.content .gallery-columns-4 .gallery-item { width: 25%; }
.content .gallery-columns-5 .gallery-item { width: 20%; }

.content .gallery img {
    width: 100%;
    height: auto;
    border: 1px solid var(--border-transparent);
    padding: 5px;
    transition: all 0.3s ease;
}

.content .gallery img:hover {
    border-color: var(--fuechse-rot);
}

.content .gallery-caption {
    font-size: 0.8em;
    color: var(--text-grau);
    margin-top: 5px;
}

/* Listen-Formatierung */
.content ul:not(.elementor-editor-element-settings):not(.elementor-editor-container-settings),
.content ol:not(.elementor-editor-element-settings):not(.elementor-editor-container-settings) {
    padding-left: 30px !important;
    margin: 15px 0 !important;
    list-style-position: outside;
}

.content ul:not(.elementor-editor-element-settings):not(.elementor-editor-container-settings) li:not(.elementor-editor-element-setting):not(.elementor-editor-element-edit):not(.elementor-editor-element-add):not(.elementor-editor-element-remove):not(.ui-sortable-handle),
.content ol:not(.elementor-editor-element-settings):not(.elementor-editor-container-settings) li:not(.elementor-editor-element-setting):not(.elementor-editor-element-edit):not(.elementor-editor-element-add):not(.elementor-editor-element-remove):not(.ui-sortable-handle) {
    margin-bottom: 10px !important;
    color: var(--text-grau);
    line-height: 1.5;
    position: relative;
    display: list-item !important;
}

/* Ungeordnete Listen */
.content ul:not(.elementor-editor-element-settings):not(.elementor-editor-container-settings):not(.elementor-editor-widget-settings) {
    list-style-type: none !important;
    padding-left: 20px !important;
}

.content ul:not(.elementor-editor-element-settings):not(.elementor-editor-container-settings):not(.elementor-editor-widget-settings) li:not(.elementor-editor-element-setting):not(.elementor-editor-element-edit):not(.elementor-editor-element-add):not(.elementor-editor-element-remove):not(.ui-sortable-handle) {
    padding-left: 25px !important;
    position: relative;
    display: block;
}

.content ul:not(.elementor-editor-element-settings):not(.elementor-editor-container-settings):not(.elementor-editor-widget-settings) li:not(.elementor-editor-element-setting):not(.elementor-editor-element-edit):not(.elementor-editor-element-add):not(.elementor-editor-element-remove):not(.ui-sortable-handle)::before {
    content: "•";
    color: var(--text-grau);
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block !important;
}

/* Nummerierte Listen */
.content ol:not(.elementor-editor-element-settings):not(.elementor-editor-container-settings):not(.elementor-editor-widget-settings) {
    counter-reset: item;
    list-style-type: none !important;
    padding-left: 20px !important;
}

.content ol:not(.elementor-editor-element-settings):not(.elementor-editor-container-settings):not(.elementor-editor-widget-settings) li:not(.elementor-editor-element-setting):not(.elementor-editor-element-edit):not(.elementor-editor-element-add):not(.elementor-editor-element-remove):not(.ui-sortable-handle) {
    counter-increment: item;
    padding-left: 25px !important;
    position: relative;
    display: block;
}

.content ol:not(.elementor-editor-element-settings):not(.elementor-editor-container-settings):not(.elementor-editor-widget-settings) li:not(.elementor-editor-element-setting):not(.elementor-editor-element-edit):not(.elementor-editor-element-add):not(.elementor-editor-element-remove):not(.ui-sortable-handle)::before {
    content: counter(item) ".";
    color: var(--text-grau);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block !important;
}

/* ======================================
   12. BUTTONS
====================================== */

/* Base Button Styles */
.button-match,
.button-ticket,
.button-shop {
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 4px;
    margin-right: 10px;
    font-family: 'Redzone BlackReg', sans-serif;
    font-size: 17px;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: visible;
    text-overflow: initial;
    flex-shrink: 0;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: min-content;
    margin: 5px auto;
    padding: 12px 20px;
    font-size: 15px;
    min-height: 38px;
}

/* Match Buttons */
.match-card:first-child .button-match {
    background-color: var(--bg-transparent-dunkel);
    border: 2px solid var(--fuechse-grau-hell);
}

.match-card:first-child .button-match:hover {
    background-color: var(--fuechse-grau-hell);
}

.match-card:last-child .button-match {
    background-color: var(--bg-transparent-rot);
    border: 2px solid var(--fuechse-rot);
}

.match-card:last-child .button-match:hover {
    background-color: var(--fuechse-rot);
}

/* Ticket Button */
.button-ticket {
    background-color: var(--bg-transparent-rot);
    color: var(--text-weiss);
    border: 2px solid var(--fuechse-rot);
    font-size: 1.1rem;
    padding: 12px 35px;
    margin-top: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-ticket:hover {
    background-color: var(--fuechse-rot);
    transform: translateY(-2px);
}

/* Shop Button */
.button-shop {
    background-color: var(--bg-transparent-rot);
    color: var(--text-weiss);
    border: 2px solid var(--fuechse-rot);
    width: auto;
    margin: 0 auto;
    min-width: 140px;
    max-width: 200px;
    height: auto;
    min-height: 42px;
    padding: 10px 25px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.button-shop:hover {
    background-color: var(--fuechse-rot);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 9, 20, 0.3);
}

/* Button Hover Text Color */
.fanshop:hover,
.ticket-shop:hover,
.sprade-tv:hover,
.button-match:hover,
.button-ticket:hover,
.button-shop:hover {
    color: var(--text-weiss) !important;
}

/* Specific Button Hover Backgrounds */
.fanshop:hover {
    background-color: var(--fuechse-grau-hell);
    color: var(--text-weiss);
}

.ticket-shop:hover {
    background-color: var(--fuechse-rot);
    color: var(--text-weiss);
}

.sprade-tv:hover {
    background-color: var(--sprade-blau);
    color: var(--text-weiss);
}

/* Mobile Ticket Button */
.mobile-ticket {
    display: none;
}

/* ======================================
   13. COMMENTS SECTION
====================================== */
.evd-comments-section {
    margin: 20px auto 0;
    padding: 15px 20px 0px;
    position: relative;
}

.evd-comments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, var(--fuechse-rot) 20%, var(--fuechse-rot) 80%, transparent 100%);
}

.evd-comments-container-boxed {
    max-width: 1200px;
}

.evd-comments-container-full {
    max-width: 1400px;
}

/* ======================================
   14. ICONS & UTILITIES
====================================== */
.fa-search {
    color: var(--text-weiss);
    font-size: 18px;
    cursor: pointer;
}

/* ======================================
   15. RESPONSIVE DESIGN
====================================== */

/* Large Tablets */
@media screen and (max-width: 992px) {
    .content h1 { font-size: 2.4rem; }
    .content h2 { font-size: 2rem; }
    
    .home-header {
        height: 600px !important;
    }
    .home-header-title {
        font-size: 3rem !important;
    }
    .home-header-subtitle {
        font-size: 1.5rem;
    }
    
    .page-header-title {
        padding: 0 15px;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    .content h1 { font-size: 2rem; }
    .content h2 { font-size: 1.8rem; }
    .content h3 { font-size: 1.6rem; }
    
    .home-header {
        height: 450px !important;
    }
    .home-header-title {
        font-size: 2.5rem !important;
    }
    .home-header-subtitle {
        font-size: 1.3rem;
    }
    
    .page-header {
        height: 250px;
    }
    .page-header-title {
        padding: 0 15px;
    }
    
    .mobile-ticket {
        display: flex;
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-60%);
        padding: 8px 15px;
        font-size: 14px;
        height: 40px;
        min-width: auto;
        align-items: center;
    }
    
    /* Mobile Navigation Visibility */
    .mobile-nav-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
        padding: 20px 0 !important;
    }
    
    .mobile-nav-section h3 {
        display: block !important;
        visibility: visible !important;
        padding: 0 30px 15px !important;
        color: var(--text-weiss) !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin: 0 !important;
        opacity: 0.8 !important;
    }
}

/* Mobile Phones */
@media screen and (max-width: 480px) {
    .home-header {
        height: 350px !important;
    }
    .home-header-title {
        font-size: 2rem !important;
    }
    .home-header-subtitle {
        font-size: 1.2rem;
    }
    
    .page-header {
        height: 200px;
    }
    .page-header-title {
        padding: 0 10px;
    }
}

/* Desktop - Hide Mobile Ticket */
@media screen and (min-width: 769px) {
    .mobile-ticket {
        display: none !important;
    }
}

/* ======================================
   16. ELEMENTOR ICON LIST FIX
   Entfernt die durch das Theme erzeugten eigenen Bullet-Punkte bei Elementor Icon Lists,
   damit nur das vom Widget bereitgestellte Icon (SVG / Font Icon) sichtbar ist.
====================================== */
/* Basisliste zurücksetzen */
ul.elementor-icon-list-items,
.content ul.elementor-icon-list-items {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Einzelne Listenelemente ohne zusätzlichen linken Innenabstand */
ul.elementor-icon-list-items li.elementor-icon-list-item,
.content ul.elementor-icon-list-items li.elementor-icon-list-item {
    padding-left: 0 !important;
}

/* Von den globalen .content ul li::before erzeugte Pseudo-Bullets unterdrücken */
ul.elementor-icon-list-items li.elementor-icon-list-item::before,
.content ul.elementor-icon-list-items li.elementor-icon-list-item::before {
    content: none !important;
    display: none !important;
}

/* Falls andere Selektoren noch greifen: mit höherer Spezifität absichern */
.content ul.elementor-icon-list-items.elementor-icon-list-items li.elementor-icon-list-item::before {
    content: none !important;
}

/* Optional: vertikale Ausrichtung & Abstand der Icon-List konsistent halten */
ul.elementor-icon-list-items li.elementor-icon-list-item .elementor-icon-list-icon {
    margin-right: 8px;
    display: inline-flex;
    align-items: flex-start;
}

/* Sicherheit: Keine zusätzlichen Marker durch list-style auf LI-Ebene */
ul.elementor-icon-list-items li.elementor-icon-list-item {
    list-style: none !important;
}
