body {
    margin: 0;
    font-family: var(--font-body, var(--wp--preset--font-family--fs-me, "FS Me", sans-serif));
    background: #DCEAF7;
    background: radial-gradient(circle, rgba(220, 234, 247, 1) 32%, rgba(255, 255, 255, 1) 100%);
    color: var(--wp--preset--color--dark);
    font-size: 16px;
    line-height: 1.6;
}


a {
    color: var(--wp--preset--color--primary);
    text-decoration: none;
    cursor: pointer;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: var(--wp--preset--color--secondary);
    outline: none;
}

.entry-content a:visited {
    text-decoration: line-through;
}


/**

Header 

**/

:root {
    --font-body: var(--wp--preset--font-family--fs-me, "FS Me", sans-serif);
    --font-display: var(--wp--preset--font-family--fs-me-narrow, "FS Me Narrow", sans-serif);
    --transition-speed: 300ms;
}

.gradient-blue {
    background: #0063E3;
    background: -webkit-linear-gradient(57deg, rgba(0, 99, 227, 1) 0%, rgba(29, 66, 125, 1) 100%);
    background: -moz-linear-gradient(57deg, rgba(0, 99, 227, 1) 0%, rgba(29, 66, 125, 1) 100%);
    background: linear-gradient(57deg, rgba(0, 99, 227, 1) 0%, rgba(29, 66, 125, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0063E3", endColorstr="#1D427D", GradientType=0);
}

/* Grundlayout */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 1000;

}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding img {
    max-height: 60px;
    height: auto;
    width: auto;
    max-width: 300px;
    display: block;
}

/* Firefox SVG fallback for custom logo */
.custom-logo {
    height: 60px;
    width: auto;
    max-width: 300px;
    max-height: 60px;
    object-fit: contain;
}

/* Navigation */
.main-navigation {
    position: relative;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: start;
}

.main-navigation ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation li.current-menu-item {
    background: var(--wp--preset--color--lightblue);
}

.main-navigation a {
    color: var(--wp--preset--color--dark);
    font-weight: 600;
    padding: 0.5rem;
    display: block;
    font-family: var(--font-display, var(--wp--preset--font-family--fs-me-narrow, "FS Me Narrow", sans-serif));
    transition: color var(--transition-speed);
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: var(--wp--preset--color--primary);
    outline: none;
}

.wp-block-button__link,
.news-archive .news-cat-button,
.events-archive .news-cat-button,
.single .share-buttons a {
    font-family: var(--font-display, var(--wp--preset--font-family--fs-me-narrow, "FS Me Narrow", sans-serif));
}

.wp-block-button__link:visited,
.error-404 .error-button:visited,
.news-archive .news-cat-button:visited,
.events-archive .news-cat-button:visited,
.single .share-buttons a:visited,
.floating-icon:visited {
    color: inherit;
}

/* ===========================
   Dropdown-Menü (1. Ebene)
   =========================== */
.main-navigation li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #e4e4e4;
    opacity: 0;
    visibility: hidden;
    /* verhindert Überlappen */
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
    display: block;
    border-radius: 4px;
}

.main-navigation li:hover>ul,
.main-navigation li:focus-within>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.main-navigation li ul li {
    position: relative;
}

.main-navigation li ul li a {
    padding: 0.75rem 1rem;
    white-space: nowrap;
}

/* ===========================
   Dropdown-Menü (2. Ebene)
   =========================== */
.main-navigation li ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    border: 1px solid #e4e4e4;
    background: #fff;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 998;
    border-radius: 4px;
    /* tiefer als aktive erste Ebene */
}

/* Pfeil bei übergeordneten Items */
.main-navigation li ul li.menu-item-has-children>a::after {
    content: "›";
    float: right;
    opacity: 0.4;
}

/* Aktivierung beim Hover oder Fokus */
.main-navigation li ul li:hover>ul,
.main-navigation li ul li:focus-within>ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(100%);
    z-index: 1000;
}

/* ===========================
   Animation
   =========================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Hamburger Menü
   =========================== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.menu-icon {
    display: inline-block;
    width: 24px;
    height: 18px;
    position: relative;
    transition: transform 0.3s ease;
}

.menu-icon .bar {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--wp--preset--color--primary);
    transition: 0.3s ease;
    border-radius: 2px;
}

.bar1 {
    top: 0;
}

.bar2 {
    top: 7.5px;
}

.bar3 {
    top: 15px;
}

.menu-toggle.active .bar1 {
    transform: rotate(45deg);
    top: 7.5px;
}

.menu-toggle.active .bar2 {
    opacity: 0;
}

.menu-toggle.active .bar3 {
    transform: rotate(-45deg);
    top: 7.5px;
}

/* ===========================
   Header Widget
   =========================== */
.header-widget-area .widget {
    margin: 0;
}

/* ===========================
   Sidebar Widgets (Blog)
   =========================== */
#secondary.widget-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#secondary .widget {
    background: white;
    padding: 1.25rem 1.25rem 1rem;
}

#secondary .widget-title {
    font-family: var(--font-display, var(--wp--preset--font-family--fs-me-narrow, "FS Me Narrow", sans-serif));
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--wp--preset--color--secondary);
}

#secondary .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#secondary .widget ul li {
    padding: 0.55rem 0;
    border-bottom: 1px solid #eee;
}

#secondary .widget ul li:last-child {
    border-bottom: none;
}

#secondary .widget ul li a {
    color: var(--wp--preset--color--dark);
    display: block;
}

#secondary .widget ul li a:hover,
#secondary .widget ul li a:focus {
    color: var(--wp--preset--color--secondary);
    text-decoration: none;
}

#secondary .widget_recent_entries .post-date {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: #666;
}

#secondary .widget_categories ul li {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    color: #666;
}

#secondary .widget_categories ul li a {
    color: var(--wp--preset--color--dark);
    flex: 1 1 auto;
}

/* ===========================
   Responsive Menü
   =========================== */
@media (max-width: 960px) {

    .header-inner {
        padding: 1rem;
    }

    .site-branding {
        max-width: 75%;
    }


    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--wp--preset--color--lightblue);
        flex-direction: column;
        padding: 1rem;
        display: flex;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    }

    .main-navigation.active {
        max-height: 80vh;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
        align-items: flex-start;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .menu-toggle {
        display: block;
    }

    /* Dropdowns mobil untereinander sichtbar machen */
    .main-navigation li ul,
    .main-navigation li ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        border: none;
        background: none;
        box-shadow: none;
    }

    .main-navigation li ul {
        margin-left: 1rem;
    }

    .main-navigation li ul li a {
        font-size: 0.9rem;
        font-weight: normal;
        padding: 0.2rem;
    }

    .main-navigation li ul li:hover>ul,
    .main-navigation li ul li:focus-within>ul {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        z-index: 1000;
    }

    .header-widget-area .widget {
        margin-top: 1rem;
    }

    .tribe-events .tribe-events-l-container {
        padding: 0 !important;
    }

}


/* Main */
.entry-header {
    color: #fff;
    min-height: 200px;
    display: flex;
    align-items: end;
    position: relative;
    background: #0063E3;
    background: -webkit-linear-gradient(57deg, rgba(0, 99, 227, 1) 0%, rgba(29, 66, 125, 1) 100%);
    background: -moz-linear-gradient(57deg, rgba(0, 99, 227, 1) 0%, rgba(29, 66, 125, 1) 100%);
    background: linear-gradient(57deg, rgba(0, 99, 227, 1) 0%, rgba(29, 66, 125, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0063E3", endColorstr="#1D427D", GradientType=0);
    background-size: auto;
}

.entry-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/background-pattern-2.svg");
    background-repeat: repeat;
    background-size: 500px 500px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.entry-header>* {
    position: relative;
    z-index: 1;
}

.entry-header .header-inner {
    max-width: 1200px;
    width: 100%;
    padding: 1rem 2rem;
    display: block;
}

.entry-header .header-inner.front-page {
    max-width: 600px;
    margin-right: 200px;
}

.entry-header .header-inner.front-page h1 {
    position: relative;
    padding: 2rem 4.5rem;
    font-size: 2rem;
    margin-bottom: -50px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    background: var(--wp--preset--color--secondary);
    overflow: hidden;
    z-index: 0;
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
    border-right: 10px solid white;
    text-align: right;
}


.entry-content,
footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.error-404 .error-subtitle {
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
}

.error-404 .error-content {
    display: grid;
    gap: 2rem;
}

.error-404 .error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.error-404 .error-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    background: var(--wp--preset--color--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-display, var(--wp--preset--font-family--fs-me-narrow, "FS Me Narrow", sans-serif));
    transition: background 0.2s ease, color 0.2s ease;
}

.error-404 .error-button:hover,
.error-404 .error-button:focus {
    background: var(--wp--preset--color--secondary);
    color: #fff;
}

.error-404 .error-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.error-404 .error-card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.25rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.error-404 .error-card h2 {
    margin-top: 0;
    color: var(--wp--preset--color--primary);
}

@media screen and (max-width: 786px) {

    .entry-header .header-inner.front-page {
        padding: 1rem;
        margin-left: 0;
    }

    .entry-header .header-inner.front-page h1 {
        width: 100%;
        font-size: 1.4rem;
        padding: 1.5rem;
    }

    .entry-content,
    footer {
        max-width: 1200px;
        padding: 1rem;
    }

    footer {
        margin: 1rem;
    }

    .error-404 .error-actions {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* 

News Grid

*/

/* Header */
.news-archive .news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.news-archive .news-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.news-filter-form {
    display: flex;
    align-items: center;
}

.news-filter-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.news-filter-form select {
    appearance: none;
    border: 1px solid #d6d6d6;
    border-radius: 999px;
    padding: 0.45rem 2.2rem 0.45rem 1rem;
    background-color: #fff;
    color: var(--wp--preset--color--dark);
    font-size: 0.95rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23005da4' d='M5.25 7.5l4.75 5 4.75-5H5.25z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 0.8rem;
}

.news-filter-form select:focus {
    outline: 2px solid var(--wp--preset--color--primary);
    outline-offset: 2px;
}

.news-filter-form .filter-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--wp--preset--color--primary);
    background: var(--wp--preset--color--primary);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.news-filter-form .filter-button:hover,
.news-filter-form .filter-button:focus {
    background: var(--wp--preset--color--secondary);
    border-color: var(--wp--preset--color--secondary);
}

.news-archive .news-cat-button {
    border: 1px solid #000;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.news-archive .news-cat-button:hover,
.news-archive .news-cat-button.active {
    background: var(--wp--preset--color--secondary);
    color: #fff;
    text-decoration: none;
    border: 1px solid var(--wp--preset--color--secondary);
}

.news-archive .news-sort select {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

/* Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.news-grid .news-card {
    background: #fff;
    overflow: hidden;
    position: relative;
}

.news-grid .news-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.news-grid .news-content {
    padding: 1rem;
}

.news-grid .news-title {
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
}

.news-grid .news-title a {
    text-decoration: none;
    color: var(--wp--preset--color--dark);
}

.news-grid .news-title a:hover {
    color: var(--wp--preset--color--primary);
}

.news-grid .news-date {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-grid .news-excerpt {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.news-grid .news-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    color: var(--wp--preset--color--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-grid .news-link:hover {
    color: var(--wp--preset--color--secondary);
}

/* 

Single News

*/


.single .news-hero img {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.single .news-header {
    text-align: left;
    margin-bottom: 2rem;
}

.single .news-title {
    font-size: 2rem;
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}

.single .news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.95rem;
    color: #666;
}

.single .news-meta i {
    color: var(--wp--preset--color--primary);
    margin-right: 0.4rem;
}

.single .news-meta a {
    color: var(--wp--preset--color--primary);
    text-decoration: none;
}

.single .news-meta a:hover {
    text-decoration: underline;
}

.single .news-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #222;
    margin-bottom: 2rem;
}

.single .news-content p {
    margin-bottom: 1.2rem;
}

/* === Sharing === */
.single .news-share {
    margin-top: 3rem;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

.single .news-share h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.single .share-buttons {
    display: flex;
    gap: 1rem;
}

.single .share-buttons a {
    color: #fff;
    background: var(--wp--preset--color--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.single .share-buttons a:hover {
    background: var(--wp--preset--color--secondary);
}

/* === Navigation === */
.single .news-navigation {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    margin-top: 3rem;
    padding-top: 1rem;
}

.single .news-navigation a {
    text-decoration: none;
    color: var(--wp--preset--color--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.single .news-navigation a:hover {
    color: var(--wp--preset--color--secondary);
}


/* 

Serviceportal - Presse 

*/



/*

Search 

*/

/* === Search Page === */
.search-archive {
    padding: 2rem 1rem;
}

.search-archive .page-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.search-archive .page-title span {
    color: var(--wp--preset--color--primary);
}

/* Search Bar */
.search-bar {
    margin-bottom: 2rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
}

.search-form .search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.search-form .search-submit {
    background: transparent;
    color: #fff;
    border: 1px solid;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form .search-submit:hover {
    background: var(--wp--preset--color--secondary);
}

/* === No results === */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
}



/* 

Footer 

*/

footer {
    position: relative;
    background: -webkit-linear-gradient(57deg, rgba(0, 99, 227, 1) 0%, rgba(29, 66, 125, 1) 100%);
    background: -moz-linear-gradient(57deg, rgba(0, 99, 227, 1) 0%, rgba(29, 66, 125, 1) 100%);
    background: linear-gradient(57deg, rgba(0, 99, 227, 1) 0%, rgba(29, 66, 125, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0063E3", endColorstr="#1D427D", GradientType=0);
    background-size: auto;
    color: #fff;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/background-pattern-2.svg");
    background-repeat: repeat;
    background-size: 500px 500px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

footer>* {
    position: relative;
    z-index: 1;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    padding: 5px 0;
}

footer ul li a,
footer ul li a:visited {
    color: #fff
}

footer ul li a:hover {
    text-decoration: underline;
    color: var(--wp--preset--color--secondary)
}


/*

Fixed Icons 

*/

/* === Floating Icons === */
.floating-icons {
    position: fixed;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}

.floating-icon {
    background: var(--wp--preset--color--secondary);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.floating-icon:hover {
    background: var(--wp--preset--color--primary);
    color: #fff;
    transform: scale(1.1);
    text-decoration: none;
}

.floating-icon:visited {
    color: #fff
}

/* === Mobile Position über Borlabs === */
@media (max-width: 768px) {
    .floating-icons {
        bottom: 80px;
        /* Platz über Borlabs Cookie Button */
        top: auto;
        transform: none;
        right: 0.8rem;
        flex-direction: column;
        gap: 0.6rem;
    }
}

/* === Suchmodal === */
.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.search-modal.open {
    display: flex;
}

.search-modal-content {
    background: #fff;
    padding: 4rem;
    border-radius: 10px;
    position: relative;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.search-modal form {
    display: flex;
    gap: 0.5rem;
}

.search-modal input[type="search"] {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.search-modal .search-submit {
    background: var(--wp--preset--color--primary);
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

.search-modal .search-submit:hover {
    background: var(--wp--preset--color--secondary);
}

/* Close Button */
.search-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--wp--preset--color--primary);
    font-size: 1.5rem;
    cursor: pointer;
}


/* 

Tribe Events 

*/

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
    padding: 0 !important;
}

#tribe-events-pg-template {
    max-width: 1200px !important;
    padding: 0 !important;
}

.tribe-events-back {
    display: none !important;
}

.tribe-events-single-section {
    width: 100% !important;
}

.tribe-events-single ul.tribe-related-events li {
    border: none !important;
    background-color: transparent !important;
}

body.tax-tribe_events_cat .tribe-events-header__title,
body.tax-tribe_events_cat .tribe-events-page-title,
body.tax-tribe_events_cat .tribe-events-c-top-bar__title {
    display: none !important;
}

.tribe-tickets__rsvp-attendance {
    display: none !important;
}
