/* SEO-Day Home Screen Styles */

/* Hero Section */
.seoday-hero {
    position: relative;
    min-height: 80vh;
    width: 100%;
    max-width: 100vw;
    background-image: url('/images/headers/header_2020.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.seoday-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.seoday-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.seoday-hero-title {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8);
    letter-spacing: -2px;
    line-height: 1.1;
}

.seoday-hero-subtitle {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.seoday-hero-date {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.seoday-hero-date::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(
        90deg,
        #f39324 0%,
        #ff6b35 25%,
        #f39324 50%,
        #ffaa40 75%,
        #f39324 100%
    );
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 8s ease infinite;
    filter: blur(8px);
    opacity: 0.5;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.seoday-hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.seoday-hero-cta .widget-button-standard {
    font-size: 20px;
    padding: 18px 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


/* About Section */
.seoday-about {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
}

.seoday-about-header {
    text-align: center;
    margin-bottom: 60px;
}

.seoday-about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f39324 0%, #ff9e45 100%);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(243, 147, 36, 0.4);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.seoday-about-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    letter-spacing: -1.5px;
    line-height: 1.1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.seoday-about-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #495057;
    margin: 0 0 30px 0;
    line-height: 1.5;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.seoday-about-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    background: rgba(28, 122, 126, 0.05);
    border: 2px solid rgba(28, 122, 126, 0.3);
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.seoday-about-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin: 0 0 20px 0;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-style: italic;
}

.seoday-about-founder {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    text-align: right;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.highlight-gold {
    color: #f39324;
    font-weight: 900;
}

.seoday-about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #f39324;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(243, 147, 36, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.seoday-section-header {
    text-align: center;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(243, 147, 36, 0.2);
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: calc(100% - 40px);
    max-width: 900px;
    margin: 0 auto 60px;
    box-sizing: border-box;
}

.seoday-section-header h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -1px;
}

.seoday-section-header h3 {
    font-size: 28px;
    font-weight: 400;
    color: #495057;
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.seoday-section-header h4 {
    font-size: 24px;
    font-weight: 400;
    color: #495057;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.seoday-video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 60px 40px 80px;
    background: transparent;
    box-sizing: border-box;
}

/* iMac Mockup */
.imac-mockup {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.imac-screen {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #c0c0c0 0%, #d8d8d8 25%, #e8e8e8 50%, #d8d8d8 75%, #c0c0c0 100%);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    border: 4px solid rgba(160, 160, 160, 0.8);
}

.imac-camera {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #1a1a1a 0%, #0a0a0a 40%, #000000 100%);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 
        0 0 0 4px rgba(200, 200, 200, 0.6),
        0 2px 6px rgba(0, 0, 0, 0.4),
        inset 0 2px 3px rgba(255, 255, 255, 0.2);
}

.seoday-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 
        inset 0 0 0 3px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.seoday-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.imac-chin {
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #c0c0c0 0%, #d8d8d8 25%, #e8e8e8 50%, #d8d8d8 75%, #c0c0c0 100%);
    border-radius: 0 0 16px 16px;
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.8);
    border: 4px solid rgba(160, 160, 160, 0.8);
    border-top: none;
}

.imac-stand {
    width: 280px;
    height: 90px;
    background: linear-gradient(135deg, #b0b0b0 0%, #c8c8c8 25%, #d8d8d8 50%, #c8c8c8 75%, #b0b0b0 100%);
    margin-top: -3px;
    clip-path: polygon(35% 0%, 65% 0%, 80% 100%, 20% 100%);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 3px 6px rgba(255, 255, 255, 0.7),
        inset 0 -3px 6px rgba(0, 0, 0, 0.2);
    border-left: 3px solid rgba(160, 160, 160, 0.6);
    border-right: 3px solid rgba(160, 160, 160, 0.6);
}

.imac-base {
    width: 360px;
    height: 20px;
    background: linear-gradient(135deg, #b0b0b0 0%, #c8c8c8 25%, #d8d8d8 50%, #c8c8c8 75%, #b0b0b0 100%);
    border-radius: 40px;
    margin-top: -3px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 3px 6px rgba(255, 255, 255, 0.8),
        inset 0 -3px 6px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(160, 160, 160, 0.7);
}

.seoday-description {
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 0;
    box-sizing: border-box;
}

.seoday-description-content {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(243, 147, 36, 0.15);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.seoday-description-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #f39324 30%, #1c7a7e 70%, transparent 100%);
    border-radius: 20px 20px 0 0;
}

.seoday-description-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    text-align: center;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.seoday-description-text {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin: 0 0 40px 0;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.seoday-description-quote {
    background: rgba(243, 147, 36, 0.05);
    border-left: 4px solid #f39324;
    padding: 30px 30px;
    border-radius: 12px;
    margin-top: 30px;
    border-right: 1px solid rgba(243, 147, 36, 0.1);
    border-top: 1px solid rgba(243, 147, 36, 0.1);
    border-bottom: 1px solid rgba(243, 147, 36, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quote-text {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    font-style: italic;
    margin: 0 0 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.quote-author {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    text-align: right;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Recaps Section */
.seoday-recaps {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.seoday-recap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.seoday-recap-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(243, 147, 36, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.seoday-recap-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(243, 147, 36, 0.2);
    border-color: #f39324;
}

.seoday-recap-logo {
    width: 100%;
    max-width: 200px;
}

.seoday-recap-logo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Kundenstimmen Section */
.seoday-kundenstimmen {
    position: relative;
    padding: 20px 20px 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
}

.seoday-kundenstimmen .seoday-section-header,
#testimonials-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(28, 122, 126, 0.2);
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: calc(100% - 40px);
    max-width: 900px;
    margin-top: 10px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.seoday-kundenstimmen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.seoday-kundenstimmen-item {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.seoday-kundenstimmen-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 0, 0, 0.3);
}

.seoday-kundenstimmen-item img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    filter: grayscale(0%);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.seoday-kundenstimmen-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .seoday-hero {
        min-height: 60vh;
    }
    
    .seoday-hero-title {
        font-size: 56px;
        letter-spacing: -1px;
        line-height: 1.2;
        padding: 0 15px;
    }
    
    .seoday-hero-subtitle {
        font-size: 24px;
        line-height: 1.4;
        padding: 0 15px;
    }
    
    .seoday-hero-date {
        font-size: 28px;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .seoday-about-title {
        font-size: 42px;
    }
    
    .seoday-about-subtitle {
        font-size: 20px;
    }
    
    .seoday-about-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .seoday-description-title {
        font-size: 26px;
    }
    
    .seoday-description-text {
        font-size: 16px;
    }
    
    .quote-text {
        font-size: 16px;
    }
    
    .seoday-section-header {
        padding: 30px 15px;
        width: calc(100% - 30px);
    }
    
    .seoday-section-header h2 {
        font-size: 42px;
        line-height: 1.3;
        padding: 0;
    }
    
    .seoday-section-header h3 {
        font-size: 22px;
        line-height: 1.5;
        padding: 0;
    }
    
    .seoday-section-header h4 {
        font-size: 20px;
        line-height: 1.6;
        padding: 0;
    }
    
    .seoday-video-container {
        width: calc(100% - 30px);
        padding: 30px 15px 40px;
    }
    
    .imac-screen {
        padding: 15px;
        border-radius: 16px;
    }
    
    .imac-camera {
        width: 8px;
        height: 8px;
        top: 25px;
    }
    
    .imac-chin {
        height: 25px;
    }
    
    .imac-stand {
        width: 180px;
        height: 60px;
    }
    
    .imac-base {
        width: 220px;
        height: 14px;
    }
    
    .seoday-description {
        width: calc(100% - 30px);
    }
    
    .seoday-description-content {
        padding: 40px 25px;
    }
    
    .seoday-kundenstimmen-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .seoday-about,
    .seoday-kundenstimmen {
        padding: 60px 15px;
    }
}

@media (max-width: 576px) {
    
    .seoday-hero-title {
        font-size: 40px;
        letter-spacing: -0.5px;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .seoday-hero-subtitle {
        font-size: 18px;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .seoday-hero-date {
        font-size: 20px;
        padding: 0 10px;
        margin-bottom: 25px;
    }
    
    .seoday-about-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .seoday-about-title {
        font-size: 32px;
    }
    
    .seoday-about-subtitle {
        font-size: 18px;
    }
    
    .seoday-about-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .seoday-description-title {
        font-size: 22px;
    }
    
    .seoday-description-text {
        font-size: 15px;
    }
    
    .seoday-description-content {
        padding: 30px 20px;
    }
    
    .seoday-description-quote {
        padding: 20px 15px;
    }
    
    .quote-text {
        font-size: 15px;
    }
    
    .quote-author {
        font-size: 14px;
    }
    
    .seoday-section-header {
        padding: 25px 10px;
        width: calc(100% - 20px);
    }
    
    .seoday-section-header h2 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .seoday-section-header h3 {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .seoday-section-header h4 {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .seoday-video-container {
        width: calc(100% - 20px);
        padding: 20px 10px 30px;
    }
    
    .imac-screen {
        padding: 12px;
        border-radius: 12px;
    }
    
    .imac-camera {
        width: 6px;
        height: 6px;
        top: 18px;
    }
    
    .imac-chin {
        height: 20px;
    }
    
    .imac-stand {
        width: 140px;
        height: 50px;
    }
    
    .imac-base {
        width: 170px;
        height: 12px;
    }
    
    .seoday-description {
        width: calc(100% - 20px);
    }
    
    .seoday-kundenstimmen-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .seoday-about,
    .seoday-kundenstimmen {
        padding: 40px 10px;
    }
}

/* Blog-Teaser Section */
.seoday-blog-teaser {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

.seoday-blog-post-card {
    background: #ffffff;
    border: 2px solid rgba(243, 147, 36, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.seoday-blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(243, 147, 36, 0.2);
    border-color: #f39324;
}

.seoday-blog-post-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.seoday-blog-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.seoday-blog-post-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.seoday-blog-post-title {
    font-family: var(--font-family-headline);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.seoday-blog-post-title-link {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.seoday-blog-post-title-link:hover {
    color: #f39324;
}

.seoday-blog-post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    color: #1a1a1a;
}

.seoday-blog-post-author {
    font-weight: 600;
    color: #f39324;
}

.seoday-blog-post-date {
    font-weight: 400;
}

.seoday-blog-post-excerpt {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.seoday-blog-post-link {
    color: #f39324;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.seoday-blog-post-link:hover {
    color: #1c7a7e;
}

.seoday-blog-all-posts-button {
    text-align: center;
    margin-top: 40px;
}

/* Blog-Teaser Responsive */
@media (max-width: 1024px) {
    .seoday-blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .seoday-blog-teaser {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .seoday-blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seoday-blog-teaser {
        padding: 40px 0;
    }
    
    .seoday-blog-post-title {
        font-size: 18px;
    }
    
    .seoday-blog-post-content {
        padding: 20px;
    }
}

/* Social Wall Section - Premium walls.io Style */
.seoday-social-wall {
    padding: 100px 0;
    background: #f5f7fa;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
}

.seoday-social-wall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(243, 147, 36, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(28, 122, 126, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.seoday-social-wall .layout-hauptcontainer {
    position: relative;
    z-index: 1;
}

.seoday-social-wall .seoday-section-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    width: calc(100% - 60px);
    max-width: 1000px;
    margin: 0 auto 80px;
    box-sizing: border-box;
}

.social-wall-grid {
    column-count: 3;
    column-gap: 30px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.social-wall-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 30px;
}

.social-wall-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(243, 147, 36, 0.1), rgba(28, 122, 126, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.social-wall-card:hover {
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(243, 147, 36, 0.2);
}

.social-wall-card:hover::before {
    opacity: 1;
}

.social-card-platform {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.08) 0%, rgba(10, 102, 194, 0.04) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.social-card-platform-icon {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 2px rgba(10, 102, 194, 0.2));
}

.social-card-platform-name {
    font-size: 11px;
    font-weight: 700;
    color: #0A66C2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-card-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.social-card-image {
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-card-image-real {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.social-wall-card:hover .social-card-image-real {
    transform: scale(1.05);
}

.social-card-image-placeholder {
    width: 100%;
    min-height: 300px;
    aspect-ratio: 9 / 16;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.social-card-image-placeholder::before {
    content: '📸';
    font-size: 48px;
    opacity: 0.25;
    filter: grayscale(1);
}

.social-card-image-placeholder::after {
    content: 'Post Preview';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.social-card-header {
    padding: 20px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.social-card-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-card-avatar {
    display: none;
}

.social-card-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.social-card-author-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.social-card-author-company {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.3;
}

.social-card-content {
    padding: 16px 24px 20px;
    flex-grow: 1;
}

.social-card-quote {
    font-size: 15px;
    line-height: 1.7;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0 0 8px 0;
    font-weight: 400;
    letter-spacing: -0.1px;
}

.social-card-readmore {
    display: inline-block;
    background: #f39324;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.5px;
    margin-top: 12px;
    white-space: nowrap;
}

.social-card-readmore:hover {
    background: #e88a1f;
}

.social-card-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
}

.social-card-stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-card-stat-icon {
    font-size: 16px;
    line-height: 1;
}

.social-card-stat-number {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.social-card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: 16px 24px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01), transparent);
}

.social-card-engagement {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-card-likes,
.social-card-comments {
    font-size: 14px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-card-likes:hover,
.social-card-comments:hover {
    color: #f39324;
    transform: scale(1.05);
}

.social-wall-view-all-button {
    text-align: center;
    margin-top: 60px;
}

.social-wall-view-all-button .widget-button-standard {
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 16px rgba(243, 147, 36, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.social-wall-view-all-button .widget-button-standard:hover {
    box-shadow: 
        0 8px 24px rgba(243, 147, 36, 0.35),
        0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Social Wall Responsive */
@media (max-width: 1024px) {
    .social-wall-grid {
        column-count: 2;
        column-gap: 24px;
    }
    
    .seoday-social-wall {
        padding: 80px 0;
    }
    
    .seoday-social-wall .seoday-section-header {
        padding: 45px 25px;
        width: calc(100% - 50px);
    }
}

/* Speaker Section */
.seoday-speakers {
    padding: 100px 0;
    background: #ffffff;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.seoday-speakers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.seoday-speaker-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.seoday-speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(243, 147, 36, 0.5);
}

.speaker-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.speaker-card-content {
    text-align: center;
}

.speaker-card-image-container {
    width: 160px;
    height: 160px;
    margin: 0 auto 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(243, 147, 36, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.speaker-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.seoday-speaker-card:hover .speaker-card-image {
    transform: scale(1.05);
}

.speaker-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.speaker-card-role {
    font-size: 12px;
    color: #666666;
    margin-bottom: 6px;
    line-height: 1.4;
}

.speaker-card-company {
    font-size: 12px;
    font-weight: 600;
    color: #F39324;
}

/* Tablet */
@media (max-width: 1024px) {
    .seoday-speakers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .seoday-speakers {
        padding: 60px 0;
    }
    
    .seoday-speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .seoday-speaker-card {
        padding: 15px;
    }
    
    .speaker-card-image-container {
        width: 120px;
        height: 120px;
        margin: 0 auto 12px;
    }
    
    .speaker-card-name {
        font-size: 14px;
    }
    
    .speaker-card-role,
    .speaker-card-company {
        font-size: 11px;
    }
}

/* Social Wall "Zum Recap" Button */
.seoday-social-wall-all-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    width: 100%;
}

.seoday-social-wall-all-button .widget-button-standard {
    padding: 15px 40px;
    font-size: 16px;
    display: inline-block;
}

@media (max-width: 768px) {
    .social-wall-grid {
        column-count: 1;
        column-gap: 20px;
    }
    
    .seoday-social-wall {
        padding: 60px 0;
    }
    
    .seoday-social-wall .seoday-section-header {
        padding: 35px 20px;
        width: calc(100% - 40px);
        margin-bottom: 50px;
    }
    
    .social-card-author-name {
        font-size: 14px;
    }
    
    .social-card-quote {
        font-size: 14px;
    }
    
    .social-card-platform {
        padding: 14px 18px;
    }
    
    .social-card-platform-icon {
        width: 18px;
        height: 18px;
    }
    
    .social-card-header {
        padding: 18px 20px 0;
    }
    
    .social-card-content {
        padding: 14px 20px 18px;
    }
    
    .social-card-footer {
        padding: 14px 20px;
    }
    
    .social-card-engagement {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .seoday-social-wall {
        padding: 40px 0;
    }
    
    .seoday-social-wall .seoday-section-header {
        padding: 30px 15px;
        width: calc(100% - 30px);
        margin-bottom: 40px;
    }
    
    .social-card-author {
        gap: 10px;
    }
    
    .social-card-author-name {
        font-size: 13px;
    }
    
    .social-card-author-company {
        font-size: 12px;
    }
    
    .social-card-platform {
        padding: 12px 16px;
    }
    
    .social-card-platform-name {
        font-size: 10px;
    }
    
    .social-card-platform-icon {
        width: 16px;
        height: 16px;
    }
    
    .social-card-header {
        padding: 16px 18px 0;
    }
    
    .social-card-content {
        padding: 12px 18px 16px;
    }
    
    .social-card-footer {
        padding: 12px 18px;
    }
    
    .social-card-quote {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .social-card-stats {
        padding: 14px 18px 16px 18px;
        gap: 16px;
    }
    
    .social-card-stat {
        gap: 5px;
    }
    
    .social-card-stat-icon {
        font-size: 14px;
    }
    
    .social-card-stat-number {
        font-size: 13px;
    }
    
    .social-card-image-placeholder::before {
        font-size: 36px;
    }
    
    .social-card-image-placeholder::after {
        font-size: 10px;
        bottom: 15px;
    }
}
