/* =========================================================

   POST – MOBILE STANDARD

   ========================================================= */

.q3-post-mobile-content {

    display: none;

}

/* =========================================================
   MOBILE BASIS
   ========================================================= */

@media (max-width: 600px) {

    :root {
        --fs-small: 12px;
        --fs-base: 14px;
        --fs-medium: 16px;
        --fs-large: 18px;
    }

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* STARTSEITE */
    body.front-page .q3-stage {
        width: 420px;
        height: 420px;
        transform: translate(-50%, -50%) scale(0.72);
        transform-origin: center center;
    }

    /* HEADER */
    .q3-header-title {
        font-size: 20px;
        font-weight: 700;
    }

    /* EVENT – MOBILE */
    .q3-event {
        width: 95%;
        height: auto;
        padding: 30px 0;
    }

    .q3-event-head,
    .q3-event-row {
        width: 100%;
    }

    .q3-event-head h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .q3-event-row {
        flex-direction: column;
    }

    .q3-event-col-left {
        width: 100%;
        flex: 0 0 auto;
        padding: 0;
        display: block;
    }

    .q3-event-col-right {
        width: 100%;
        flex: 0 0 auto;
        padding: 0;
        margin-top: 24px;
    }

    .q3-event-row::after {
        display: none;
    }

    .q3-event-poster-area {
        margin-bottom: 24px;
    }

    .q3-event-poster {
        width: 100%;
        max-width: 260px;
    }

    .q3-event-meta-row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
    }

    .q3-event-meta-label {
        text-align: left;
        flex: 0 0 auto;
    }

    .q3-event-meta-value {
        text-align: right;
        margin-left: auto;
    }

    .q3-event-info-bottom {
        margin-top: 36px;
        padding-top: 28px;
        border-top: 1px solid rgba(0,0,0,0.18);
    }

    .q3-event-teaser {
        padding-bottom: 32px;
    }

    .q3-event-link {
        margin-top: 28px;
        padding-bottom: 28px;
    }
	
	/* POST – MOBILE */
	
	
	.q3-post {
    height: auto;
    min-height: auto;
    overflow: visible;
    display: block;
}

.q3-post-inner {
    display: none;
}

.q3-post-mobile-content {
	display: block;
    width: 95%;
    margin: 0 auto;
    padding: 30px 0;

    font-family: 'TASA Orbiter';
    font-size: var(--fs-medium);
    font-weight: 500;
    line-height: 1.35;
    color: var(--color-text);

    text-align: justify;
    hyphens: auto;
}

.q3-post-mobile-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px 0;
}
	
	.q3-post-mobile-content a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.q3-post-mobile-content a:hover {
    text-decoration: underline;
}
	
/* =========================================================
   PROGRAMM – MOBILE
   ========================================================= */

.q3-programm {
    height: calc(100vh - 300px);
    align-items: center;
	
	overflow-x: auto;
    overflow-y: visible;	
}

.q3-programm-stage {
    height: 100%;
    align-items: center;
}

.q3-programm-list {
    height: 300px;
    padding: 0 40px;
}

.q3-programm-link {
    font-size: 30px;
    padding: 4px 8px;
}

.q3-programm-stage::before,
.q3-programm-stage::after {
    width: 80px;
}

.q3-programm.is-grid .q3-programm-grid {
    margin-top: 30px;
}
	

}

/* =========================================================
   HANDY QUERFORMAT – HOCHFORMAT ERZWINGEN
   ========================================================= */

@media (max-width: 900px) and (orientation: landscape) {

    html,
    body {
        width: 100vh;
        height: 100vw;
        overflow: hidden;
    }

    body {
        position: fixed;
        top: 100%;
        left: 0;
        transform: rotate(-90deg);
        transform-origin: left top;
    }

}