@charset "utf-8";
/* CSS Document */

/* ============================
   Lokale Webfonts
   ============================ */

/* Roboto Regular (400) */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto-v49-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Sigmar One Regular (400) */
@font-face {
    font-family: 'Sigmar One';
    src: url('../fonts/sigmar-one-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}



/* ==========================================================================
   Base Styles
   ========================================================================== */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #1a1a1a;
    line-height: 1.6;
}

h1,
h2 {
    font-family: 'Sigmar One', cursive;
}

h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    text-align: center;
    color: #2a2a2a;
    margin-bottom: 30px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: #ff7f50;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

header {
    background: url('../images/hero-image.jpg') no-repeat center center/cover;
    min-height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 20px;
}

/*
header h1 {
    font-size: clamp(2rem, 8vw, 5rem);
    margin: 0;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
}
*/

header h1 {
    margin: 0;
}

/* H1 mit Logo-Bild */
.logo-heading {
    margin: 0;
}

/* Logo-Bild im Header */
.logo-image {
    display: block;
    margin: 0 auto 0.5rem;
    /*width: clamp(440px, 75vw, 1000px);*/
	max-width: min(90vw, 1000px);
    height: auto;
    /*filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.8));*/
}


header p {
    font-size: clamp(0.9rem, 3vw, 1.5rem);
    margin: 10px 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

header .cta-button {
    margin-bottom: 50px;
    align-self: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.cta-button,
.cta-button-site{
    font-family: 'Roboto', sans-serif;
    /*background-color: #ff7f50;*/
   	background-color: #ef7803;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 16px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.cta-button {
	/* Plastischer Effekt */
    box-shadow:
        inset 0 2px 3px rgba(255, 255, 255, 0.5),   /* Lichtkante oben */
        inset 0 -2px 3px rgba(0, 0, 0, 0.15),       /* Schatten unten */
        2px 2px 8px rgba(0, 0, 0, 0.35);            /* äußere Schatten */
}

.cta-button:hover,
.cta-button:focus,
.cta-button-site:hover,
.cta-button-site:focus{
    /*background-color: #ff6347;*/
    background-color: #f69b02;
    transform: translateY(-2px);
}

.container .cta-button .cta-button-site {
    margin-top: 20px;
}

	.container_centered .cta-button-site,
	.container_centered .cta-button {
    margin-top: 15px;
    display: inline-block;
    text-align: center;
	}

/* ==========================================================================
   Layout Containers
   ========================================================================== */

section {
    padding: 30px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.container,
.container-slim{
    background: #ebebeb;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    margin: 20px auto;
    max-width: 94%;
}

.container_centered,
.container-slim-centered{
    background: #ebebeb;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    margin: 20px auto;
    max-width: 94%;
    text-align: center;
}


.container-slim,
.container-slim-centered{
	max-width: 900px;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */

/* About Section */
#about p,
#game-world p,
#vision-statement p,
#newsletter p {
    font-size: 1.1rem;
    color: #2a2a2a;
}

/* General Content Images */
.content-img {
    width: 100%;
    max-width: 98%;
    margin: 10px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    height: auto;
}

/* Text Styles for Multiple Sections */
#features .feature p,
#trailer p,
#team p,
#download p,
#artworks p,
#videos p,
#contact p{
    font-size: 1.1rem;
    color: #2a2a2a;
}

/* Centered Sections */
#trailer,
#download,
#contact {
    text-align: center;
}

#text_background {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 25px;
    border-radius: 16px;
    color: white;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: inline-block;
    max-width: 800px;
    width: 90%;
}

#text_subline,
#text_subline_new-archive{
    font-size: clamp(1.2rem, 4vw, 1.75rem);
    max-width: 850px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

#text_subline_new-archive{
	font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.text_inline {
    flex: 1;
    margin: 0;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.feature {
    position: relative;
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background: #ebebeb;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: #2a2a2a;
    margin-top: 0;
}

#features .feature img {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 62px;
    height: 62px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.inline-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.img_inline,
.img_inline_capsule{
    width: 135px;
    height: auto;
    border-radius: 16px;
    flex-shrink: 0;
}

#img_worldmap {
    width: 250px;
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}

#img_vision {
    float: left;
    width: 500px;
    max-width: 50%;
    height: auto;
    border-radius: 16px;
    margin: 0 25px 5px 0;
}

#vision-statement-text{
	margin-top: 0;
}

/* Clearfix für den Container */
.container::after {
    content: "";
    display: table;
    clear: both;
}

/* Container with games images */
#game_archive {
    text-align: center;
    margin-top: 25px;
}

.img_game_archive {
    border-radius: 16px;
    margin: 10px;
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Media Containers (Videos, Artworks, Newsletter)
   ========================================================================== */

#videos-container,
#artworks-container,
#newsletter-container {
    background: #ebebeb;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    max-width: 94%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Videos */
#videos-container iframe {
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    border: none;
}

.video-card {
    width: calc(50% - 10px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
}

/* Video selbst */
.video-player {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    display: block;
}

/* Halbtransparentes Play-Icon */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: opacity 0.25s ease;
    z-index: 10;
}

/* Icon-Größe */
.video-overlay-icon {
    width: 100px;
    height: 100px;
    display: block;
}

/* Kreis-Hintergrund des Buttons */
.video-overlay-ring {
    fill: rgba(0, 0, 0, 0.45);   /* halbtransparentes Schwarz */
}

/* Play-Dreieck */
.video-overlay-play {
    fill: #ffffff;               /* Weiß – gut lesbar auf dunkel */
}


.video-overlay:hover {
    /*background: rgba(255, 127, 80, 0.8);*/
    transform: translate(-50%, -50%) scale(1.1);
}


/* Wenn das Video läuft → Icon ausblenden */
.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-img_coming-soon {
    width: 100%;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    height: auto;
}

.video-caption {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #444;
    text-align: center;
    max-width: 100%;
    padding: 0 10px;
}

.video-title-label {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: white;
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 8px;
    pointer-events: none;
    z-index: 9;
    backdrop-filter: blur(3px);
}

/* ==========================================================================
   Artworks
   ========================================================================== */
.artwork-img {
    width: calc(50% - 10px);
    min-width: 280px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: auto;
    cursor: pointer;
}

.artwork-img:hover {
    transform: scale(1.03);
}

.artwork-img_coming-soon {
    width: calc(50% - 10px);
    min-width: 280px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: auto;
}


/* ==========================================================================
   Lightbox Overlay
   ========================================================================== */

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #ff7f50;
}

/* Animation beim Öffnen */
@keyframes zoom {
    from {
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.lightbox-content {
    animation-name: zoom;
    animation-duration: 0.3s;
}

/* Lightbox Caption */
.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 20px 30px;
    border-radius: 10px 10px 0 0;
    max-width: 90%;
    width: 600px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.lightbox-caption h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    color: #ff7f50;
    font-family: 'Sigmar One', cursive;
}

.lightbox-caption p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

/* ==========================================================================
   Specifications Section
   ========================================================================== */

#specifications-container h3 {
    color: #2a2a2a;
    margin-top: 30px;
    font-size: 1.5rem;
}

#specifications-container ul {
    color: #2a2a2a;
    line-height: 1.8;
}

#specifications-container li {
    margin-bottom: 10px;
}

#specifications-container p {
    color: #2a2a2a;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    text-align: center;
    padding: 30px 20px;
    background: #333;
    color: white;
    font-family: 'Roboto', sans-serif;
}

footer a {
    color: #ef7803;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover,
footer a:focus {
    color: #f69b02;
    text-decoration: underline;
}

/* ========================================================================== 
   Share-Section (Bevor du gehst...)
   ========================================================================== */

.share-section {
    margin: 2rem auto 0;
    padding: 1.8rem 1.5rem;
    border-radius: 10px;
    background: #f7f9fa; /* heller Hintergrund wie Newsletter */
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);

    max-width: 750px;
    display: block;

    text-align: center; /* jetzt komplett zentriert */
}

.share-title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2a2a2a;
}

.share-text {
    margin: 0 0 1.2rem;
    font-size: 1rem;
    color: #444444;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center; /* Buttons zentriert */
}


/* Runde Icon-Buttons */
/* Share-Buttons Container */
.share-buttons {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Grundform aller Buttons */
.share-btn {
    width: 44px;
    height: 44px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    text-decoration: none;

    transition: background-color 0.25s ease, transform 0.15s ease;
}

/* PNG-Icons */
.share-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* macht PNG weiß – falls nötig */
}

/* Plattformfarben */
.share-whatsapp {
    background-color: #25D366;
}
.share-facebook {
    background-color: #1877F2;
}
.share-x {
    background-color: #000000;
}
.share-copy {
    background-color: #DDDDDD;
}

/* Copy link icon should stay dark */
.share-copy img {
    filter: none; /* nicht invertieren */
}

/* Hover-Abdunklung + Lift */
.share-btn:hover {
    transform: translateY(-2px);
}

.share-whatsapp:hover {
    background-color: #1ebe5a;
}
.share-facebook:hover {
    background-color: #0f64d8;
}
.share-x:hover {
    background-color: #222222;
}
.share-copy:hover {
    background-color: #cfcfcf;
}

/* Copy-OK-Zustand */
.share-copy.copied {
    background-color: #1f8a4d !important;
}



/* Mobile Anpassungen nur für Share-Section */
@media (max-width: 480px) {
    .share-section {
        padding: 1.1rem 1rem;
        max-width: 100%;
        margin-top: 1.5rem;
    }

    .share-buttons {
        gap: 0.4rem;
    }

    .share-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}



/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 768px) {
    header {
         /* mobiles/vertikales Hero-Bild */
        background-image: url('../images/hero-image-mobile.jpg');
        background-position: center center;
        background-size: cover;
	    min-height: 100dvh;        
        padding: 30px 15px 80px;     
        justify-content: space-between; 
    }

    header .cta-button {
        margin-bottom: 0px;
        padding: 12px 24px;
        font-size: 1rem;
    }

    section {
        padding: 30px 15px;
    }

    .container,
    .container_centered {
        padding: 20px;
        margin: 15px auto;
    }

    .feature {
        flex: 1 1 100%;
    }

    #videos-container,
    #artworks-container,
    #newsletter-container {
        padding: 20px 15px;
        gap: 15px;
    }

    #videos-container iframe {
        width: 100%;
    }
	
    .video-card {
        width: 100%;
        min-width: 100%;
    }
    
    .video-overlay {
        width: 70px;
        height: 70px;
        font-size: 40px;
    }
	
	.video-overlay-icon {
        width: 70px;
        height: 70px;
    }
    
    .video-caption {
        font-size: 0.9rem;
    }

    .artwork-img,
    .artwork-img_coming-soon {
        width: 100%;
        min-width: 100%;
    }

    /* Inline Content - Stack auf Tablet */
    .inline-content {
        flex-direction: column;
        align-items: center;
    }

    .img_inline,
    #img_worldmap {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
	
	.img_inline_capsule {
        width: auto;
        max-width: 80%;
        max-height: 380px; /* oder 360px – perfekt für Mobil */
        height: auto;
        margin: 0 auto 15px;
        display: block;
        object-fit: contain;
    }

    #img_vision {
        float: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
        display: block;
    }

    #text_background {
        width: 95%;
        padding: 15px 20px;
    }

    .img_game_archive {
        width: 100%;
        max-width: 400px;
        margin: 10px auto;
        display: block;
    }

    /* Lightbox Caption auf Tablet */
    .lightbox-caption {
        padding: 15px 20px;
        width: 95%;
    }
    
    .lightbox-caption h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-caption p {
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    header {
        /*padding: 20px 10px;*/
        padding: 25px 10px 80px;
        /*min-height: 100vh;*/
        min-height: 100dvh;
    }

    header h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    header p {
        font-size: 0.9rem;
        margin: 10px 15px;
    }

    header .cta-button {
        margin-bottom: 0;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    section {
        padding: 25px 10px;
    }
	
	.logo-image {
        max-width: 90vw;   
    }

    .container,
    .container_centered {
        padding: 15px;
        margin: 10px auto;
    }

    #about p,
    #game-world p,
    #vision-statement p,
    #newsletter p,
    #features .feature p,
    #trailer p,
    #team p,
    #download p,
    #contact p,
    #artworks p,
    #videos p {
        font-size: 1rem;
    }

    .cta-button,
	.cta-button-site{
        padding: 12px 20px;
        font-size: 1rem;
    }

    #features .feature img {
        width: 50px;
        height: 50px;
    }

    .img_inline,
    #img_worldmap,
    #img_vision {
        width: 100%;
        max-width: 100%;
        margin: 0 0 15px 0;
    }

    #text_background {
        width: 95%;
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    #text_subline {
        font-size: 1.1rem;
        padding: 15px 10px;
    }

    #videos-container,
    #artworks-container,
    #newsletter-container {
        padding: 15px 10px;
        gap: 15px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }

    /* Lightbox Caption auf Mobile */
    .lightbox-caption {
        padding: 12px 15px;
        width: 95%;
        border-radius: 8px 8px 0 0;
    }
    
    .lightbox-caption h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .lightbox-caption p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    #game_archive {
        margin-top: 15px;
    }

    .img_game_archive {
        margin: 8px auto;
    }

    /* Small text für mobile besser lesbar */
    small {
        font-size: 0.85rem;
        line-height: 1.4;
    }
	
	.video-overlay {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
	
	.video-overlay-icon {
        width: 60px;
        height: 60px;
    }
    
    .video-caption {
        font-size: 0.85rem;
    }
	
    .video-title-label {
 		font-size: 0.75rem;
        padding: 3px 8px;
        top: 6px;
        bottom: auto;
        max-width: 90%;
        white-space: nowrap;     /* verhindert mehrzeilige Titel */
        overflow: hidden;
        text-overflow: ellipsis; /* falls es doch zu lang wird */
        border-radius: 5px;
    }
	
	/* Ladezustand für Videos */
	.video-wrapper.loading::before {
		content: "Video wird geladen …";
		position: absolute;
		inset: 0; /* top:0; right:0; bottom:0; left:0; */
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 0, 0, 0.55);
		color: #fff;
		font-size: 0.9rem;
		border-radius: 12px;
		z-index: 11; /* über Video & Play-Button */
		text-align: center;
	}
}

/* Extra kleine Bildschirme */
@media (max-width: 360px) {
    header h1 {
        font-size: 1.5rem;
    }

    header p,
    #text_subline {
        font-size: 0.85rem;
    }
	
	.logo-image {
        max-width: 90vw;
    }

    .cta-button,
	.cta-button-site{
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .container,
    .container_centered {
        padding: 12px;
    }
}

/* ========================================================================== 
   Newsletter-Archiv / Akkordeon
   ========================================================================== */

.accordion {
    max-width: 900px;
    margin: 20px auto 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* jedes Element / "Newsletter-Karte" */
.accordion-item {
    background: #ebebeb;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.accordion-item h3 {
    margin: 0;
}

/* Kopfzeile: Button, der das Panel öffnet/schließt */
.accordion-header {
    width: 100%;
    border: none;
    background: transparent;
    padding: 14px 22px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    display: flex;               /* wichtig für Spaltenlayout */
    align-items: center;
    cursor: pointer;
    text-align: left;
}

/* Fokus-Rahmen für Tastatur-Nutzer */
.accordion-header:focus {
    /*
	outline: 2px solid #ef7803;
    outline-offset: 2px;
	*/
	outline: none;
}

/* Titel links – nimmt den gesamten freien Platz ein */
.accordion-title {
    flex: 1 1 auto;
}

/* Statusbereich rechts (Label + KW) als Block */
.accordion-status {
    display: flex;
    align-items: center;
    margin-left: auto;      /* schiebt Status nach rechts */
    margin-right: 8px;      /* Abstand zum Icon */
}

/* Spalte "versendet:" / "geplant:" */
.accordion-status-label {
    width: 80px;            /* sorgt für bündige Spalte */
    text-align: left;
    font-size: 0.85rem;
    color: #555;
    padding-right: 4px;
}

/* Spalte "KW 49", "KW 50" etc. */
.accordion-status-kw {
    width: 55px;
    text-align: left;
    font-size: 0.85rem;
    color: #555;
}

/* Icon-Spalte ganz rechts */
.accordion-icon {
    width: 26px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Plus/Minus über Pseudo-Element steuern */
.accordion-icon::before {
    content: "+";
}

.accordion-item.is-open .accordion-icon::before {
    content: "–";
}

/* Inhaltspanel */
.accordion-panel {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.accordion-inner {
    padding: 16px 18px 18px;
    font-size: 0.95rem;
    color: #333;
}

.accordion-inner p {
    margin-top: 0;
}

/* Bilder innerhalb der Accordion-Inhalte mit Textumfluss */
.accordion-inner img {
    max-width: 40%;             /* Bildbreite (anpassbar) */
    height: auto;
    margin: 0.5rem 1rem 0.5rem 0; /* Abstand um das Bild */
    float: left;                /* Text fließt rechts herum */
    border-radius: 8px;         /* dezente Rundung (optional) */
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15); /* optionaler Schatten */
}

/* Alternative: Bild rechtsbündig mit Textumfluss */
.accordion-inner img.right {
    float: right;
    margin: 0.5rem 0 0.5rem 1rem;
}

/* Paragraph-Korrektur für bessere Lesbarkeit */
.accordion-inner p {
    margin-top: 0.6rem;
    line-height: 1.6;
}


/* Versendete Newsletter: Gabby-Orange + Hover wie CTA */

.accordion-item.sent .accordion-header {
    background-color: #ef7803;  /* wie .cta-button */
    color: #ffffff;
    border-radius: 10px;
    /*box-shadow:
        inset 0 2px 3px rgba(255, 255, 255, 0.35),
        inset 0 -2px 3px rgba(0, 0, 0, 0.12),
        2px 2px 8px rgba(0, 0, 0, 0.25);
	*/
}

.accordion-item.sent .accordion-status-label,
.accordion-item.sent .accordion-status-kw {
    color: #ffffff;
}

/* Hover-/Fokus-Effekt wie bei den CTA-Buttons */
.accordion-item.sent .accordion-header:hover,
.accordion-item.sent .accordion-header:focus {
    background-color: #f69b02; /* Hover-Orange der Buttons */
    transform: translateY(-2px);
}

/* ========================================================================== 
   Accordion – Mobile Feintuning
   ========================================================================== */

@media (max-width: 600px) {
    .accordion-header {
        flex-wrap: wrap;
        row-gap: 4px;
    }

    .accordion-title {
        flex: 1 0 100%;
        margin-bottom: 2px;
    }

    .accordion-status {
        margin-left: 0;
    }

    .accordion-status-label {
        text-align: left;
    }
	
	/* Bilder auf kleinen Bildschirmen zentriert und ohne Float */
    .accordion-inner img,
    .accordion-inner img.right {
        float: none;
        display: block;
        max-width: 100%;
        margin: 1rem auto;
    }
}
