/* ========================================
   FOOTER HEADER GRID LAYOUT
   ======================================== */

/* Hauptgrid für Footer-Header (zwei Spalten) */
.footer-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    align-items: stretch; /* Beide Spalten gleich hoch */
}

.footer-header-col {
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

/* ========================================
   GEMEINSAME CONTAINER BASIS-STYLES
   ======================================== */

/* Gemeinsame Basis-Styles für beide Footer-Header Container */
.footer-header-container-base {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    padding: 1rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.footer-header-container-base:hover {
    box-shadow: 0 8px 25px rgba(39, 150, 60, 0.12);
    border-color: rgb(39, 150, 59);
}

/* ========================================
   LINKE SPALTE: SOCIAL MEDIA SECTION
   ======================================== */

/* ========================================
   RECHTE SPALTE: KOMPAKTER FINDER
   ======================================== */

.social-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.65rem;
    text-align: center;
}

.social-section > p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.footer-social-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.08rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 80px;
    text-align: center;
}

.footer-social-grid a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(39, 150, 60, 0.3);
}

.footer-social-grid a:focus {
    outline: 2px solid var(--vegaenergy-dark);
    outline-offset: 2px;
}

.footer-social-grid svg {
    width: 24px !important;
    height: 24px !important;
    stroke: var(--vegaenergy-dark);
    fill: none;
    stroke-width: 2;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: var(--vegaenergy-dark);
    display: block;
}

.footer-social-grid a span {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0.25rem;
}

/* Für SVGs mit fill="currentColor" (WhatsApp, X/Twitter, YouTube) */
.footer-social-grid svg[fill="currentColor"] {
    fill: var(--vegaenergy-dark) !important;
    stroke: none !important;
    stroke-width: 0 !important;
}

/* Spezielle Behandlung für WhatsApp SVG */
.footer-social-grid a[aria-label="WhatsApp"] svg {
    fill: var(--vegaenergy-dark) !important;
    stroke: none !important;
    stroke-width: 0 !important;
}

/* YouTube SVG spezielle Behandlung */
.footer-social-grid a[aria-label="YouTube"] svg {
    fill: var(--vegaenergy-dark) !important;
    stroke: none !important;
    stroke-width: 0 !important;
}

/* X/Twitter SVG spezielle Behandlung */
.footer-social-grid a[aria-label="X (Twitter)"] svg {
    fill: var(--vegaenergy-dark) !important;
    stroke: none !important;
    stroke-width: 0 !important;
}

/* ========================================
   RECHTE SPALTE: ENTDECKE MEHR
   ======================================== */

.discover-more-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.discover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.discover-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.discover-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(39, 150, 60, 0.3);
}

.discover-item:focus {
    outline: 2px solid var(--vegaenergy-dark);
    outline-offset: 2px;
}

.discover-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--vegaenergy-dark);
}

.discover-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.discover-content {
    flex: 1;
    text-align: left;
}

.discover-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.discover-content p {
    font-size: 0.8rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .discover-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .discover-item {
        padding: 0.75rem;
    }
    
    .discover-content h4 {
        font-size: 0.85rem;
    }
    
    .discover-content p {
        font-size: 0.75rem;
        text-align: left;
    }
}

/* ========================================
   FLAVOR ITEM STYLES (falls noch verwendet)
   ======================================== */

.flavor-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.flavor-image {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: rgba(39, 150, 60, 0.2);
    border: 2px solid rgba(39, 150, 60, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.flavor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Placeholder für fehlende Bilder */
.flavor-image::before {
    content: '';
    font-size: 1.5rem;
    position: absolute;
}

.flavor-info {
    flex: 1;
    text-align: left;
}

.flavor-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.flavor-info p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.flavors-btn {
    background: var(--vegaenergy-dark) !important;
    border: 2px solid rgba(39, 150, 60, 0.5) !important;
    color: #ffffff !important;
    padding: 1rem 1.5rem !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.flavors-btn:hover {
    background: #1f7a32 !important;
    border-color: var(--vegaenergy-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(39, 150, 60, 0.3) !important;
}

/* Spezielle Hover-Effekte für jede Sorte */
.flavor-item:nth-child(1):hover .flavor-image {
    border-color: #ff8c00; /* Orange */
}

.flavor-item:nth-child(2):hover .flavor-image {
    border-color: #8b0000; /* Dunkelrot für Waldfrucht */
}

.flavor-item:nth-child(3):hover .flavor-image {
    border-color: #ffff00; /* Gelb für Zitrone */
}

.flavor-item:nth-child(4):hover .flavor-image {
    border-color: #ff1493; /* Pink für Himbeer */
}

/* Redundante finder-teaser-compact:hover entfernt - wird von footer-header-container-base:hover vererbt */

.finder-teaser-compact h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.finder-teaser-compact > p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.finder-features-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-item-compact {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.feature-item-compact:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.finder-cta-compact {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: auto; /* Drückt die CTA nach unten */
}

.btn-finder-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 1rem 1.8rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
    min-height: 56px;
    min-width: 200px;
}

.btn-finder-compact:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.finder-url-compact {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   RECHTE SPALTE: LOCATION FINDER TEASER
   ======================================== */

.finder-teaser {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(39, 150, 60, 0.1) 0%, rgba(39, 150, 60, 0.05) 100%);
    border: 2px solid rgba(39, 150, 60, 0.2);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.finder-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(39, 150, 60, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.finder-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    background: var(--vegaenergy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.finder-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.finder-teaser h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.finder-teaser > p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.finder-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.finder-cta {
    position: relative;
    z-index: 1;
}

.btn-finder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--vegaenergy-dark);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
}

.btn-finder:hover {
    background: #1f7a32;
    box-shadow: 0 8px 20px rgba(39, 150, 60, 0.3);
}

.btn-finder svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-finder:hover svg {
    transform: translate(2px, -2px);
}

.finder-url {
    font-size: 0.85rem;
    color: var(--vegaenergy-dark);
    font-weight: 500;
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN - FOOTER HEADER GRID
   ======================================== */

@media (max-width: 1024px) {
    .footer-header-grid {
        gap: 3rem;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .finder-teaser {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-header-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
    }
    
    .community-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.6rem 0.3rem;
    }
    
    .stat-item strong {
        font-size: 1rem;
    }
    
    .stat-item span {
        font-size: 0.75rem;
    }
    
    .finder-teaser {
        padding: 1.5rem 1rem;
    }
    
    .finder-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .finder-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Mobile: Social-Buttons in der Footer-Header-Spalte - max. 2 nebeneinander */
    .footer-social-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten für 6 Icons = 3 Zeilen */
        gap: 0.75rem;
        justify-items: stretch; /* Icons füllen die verfügbare Breite */
    }

    .footer-social-grid a {
        width: 100%; /* Volle Breite der Grid-Zelle */
        justify-content: center; /* Icon + Text zentrieren */
        text-align: center;
        padding: 0.75rem 0.5rem; /* Mehr Padding bei nur 2 Spalten */
        min-height: 70px; /* Konsistente Höhe */
        font-size: 0.85rem; /* Größere Schrift bei mehr Platz */
    }

    /* Weniger Abstand oben für die Social-Section auf Mobile */
    .social-section p {
        padding: 0.5rem; /* weniger Innenabstand */
        margin-top: 0.0rem; /* falls ein äußerer Abstand vorhanden ist */
        margin-bottom: 1rem;
    }
    .finder-teaser-compact p{
        padding: 0.5rem; /* weniger Innenabstand */
        margin-top: 0.0rem; /* falls ein äußerer Abstand vorhanden ist */
    }
}

@media (max-width: 480px) {
    .footer-header-grid {
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .newsletter-section h3,
    .finder-teaser h3 {
        font-size: 1.2rem;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .btn-finder {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Sehr kleine Displays: Buttons kompakter - weiterhin 2 Spalten */
    .footer-social-grid {
        grid-template-columns: repeat(2, 1fr); /* Konsistent 2 Spalten auch auf sehr kleinen Displays */
        gap: 0.6rem;
        margin: 0.0rem;
        justify-items: stretch; /* Icons füllen die Grid-Zellen */
    }

    .footer-social-grid a {
        width: 100%; /* Volle Breite der Grid-Zelle */
        justify-content: center;
        text-align: center;
        padding: 0.6rem 0.4rem; /* Kompakteres Padding für sehr kleine Displays */
        min-height: 60px; /* Kleinere Höhe für sehr kleine Displays */
        font-size: 0.75rem; /* Kleinere Schrift auf sehr kleinen Displays */
    }

    /* Noch kompakter auf sehr kleinen Displays */
    .social-section {
        padding: 0.8rem;
        margin-top: 0.2rem;
    }
}

/* Social Media Posts */
.social-posts-section {
    width: 100vw;
    max-width: none;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 48px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.social-posts-section h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 20px 0;
}

/* Social Buttons Section - unterhalb der Posts */
.social-buttons-section {
    margin-top: 2.5rem;
    text-align: center;
}

/* Social Buttons oben - nach der Überschrift */
.social-buttons-top {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.social-buttons-section h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.social-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.social-post {
    position: relative;
    height: 540px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.social-post:hover {
    transform: translateY(-0px);
    box-shadow: 0 8px 25px rgba(39, 150, 60, 0.12);
    border-color: var(--vegaenergy-dark);
}

.social-post-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.social-post-content {
    position: relative;
    z-index: 3;
    padding: 18px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.1) 80%,
        transparent 100%
    );
}

.social-post-platform {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: none;
    backdrop-filter: blur(3px);
}

.social-post-text {
    color: white;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

/* Blog Post Styling */
.social-post.blog-post .social-post-platform {
    background: rgba(39, 150, 60, 0.95);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.social-post.blog-post:hover {
    border-color: var(--vegaenergy-dark);
    background: rgba(39, 150, 60, 0.1);
}

/* Instagram Post Styling */
.social-post[data-platform="Instagram"] .social-post-platform {
    background: #27963c;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.social-post[data-platform="Instagram"]:hover {
    border-color: var(--vegaenergy-dark);
    background: rgba(39, 150, 60, 0.1);
}

/* Modal für vollständige Posts */
.social-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.social-modal.active {
    opacity: 1;
    visibility: visible;
}

.social-modal-content {
    background: white;
    border-radius: 5px;
    max-width: 540px;
    width: 100%;
    max-height: 70vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.social-modal.active .social-modal-content {
    transform: scale(1);
}

.social-modal-header {
    padding: 24px 24px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
}

.social-modal-platform-badge {
    background: #27963c;
    color: white;
    padding: 6px 16px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.social-modal-body {
    padding: 24px;
}

.social-modal-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    margin-bottom: 20px;
}

.social-modal-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-modal-link {
    display: inline-block;
    background: #27963c;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.social-modal-link:hover {
    background: #1f7a32;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .social-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* ========================================
   RESPONSIVE FOOTER HEADER ANPASSUNGEN
   ======================================== */

@media (max-width: 1024px) {
    .footer-header-grid {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-header-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .social-section {
        padding: 1.5rem;
    }
    
    .footer-social-grid {
        /* 2x3 Layout für Mobile - 6 Icons in 3 Reihen */
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .footer-social-grid a {
        padding: 0.7rem;
    }
    
    .social-stats {
        padding: 1.2rem;
    }
    
    .finder-teaser-compact {
        padding: 1.5rem;
    }
    
    .finder-features-compact {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }
    
    .feature-item-compact {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .social-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .footer-container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .social-post {
        height: 500px;
    }
    
    .social-post-content {
        padding: 12px;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 60%,
            transparent 100%
        );
    }
    
    .social-post-text {
        font-size: 0.75rem;
    }
    
    .social-posts-section h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-header-container {
        padding: 3rem 1rem;
    }
    
    .footer-header-content h2 {
        font-size: 2rem;
    }
    
    .social-section {
        padding: 1.2rem;
    }
    
    /* Konsistent 2 Spalten auch bei sehr kleinen Displays */
    .footer-social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .footer-social-grid a {
        padding: 0.5rem 0.3rem;
        font-size: 0.7rem;
    }
    
    .social-stats {
        padding: 1rem;
    }
    
    .finder-teaser-compact {
        padding: 1.2rem;
    }
    
    .social-posts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .footer-container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .social-post {
        height: 500px;
    }
    
    .social-post-content {
        padding: 14px;
    }
    
    .social-modal-content {
        margin: 10px;
        max-height: 85vh;
    }
    
    .social-modal-header,
    .social-modal-body {
        padding: 16px;
    }
    
    .social-modal-image {
        height: 150px;
    }
}
