  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #0B0B1F;
            color: #FFFFFF;
            font-family: "Lato", sans-serif;font-weight: 400;font-style: normal;
            font-display: swap;
            overflow-x: hidden;
            min-height: 80vh;
        }

        p{
            font-family: "Lato", sans-serif;font-weight: 400;font-style: normal;
            font-size: 1.1rem;
        }
h1,h2,h3,h4{
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: italic;
}
        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        /* Subtle gradient overlay that moves slowly */
        .gradient-mesh {
            position: absolute;
            width: 150%;
            height: 150%;
            top: -25%;
            left: -25%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 0, 73, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 73, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(26, 26, 62, 0.3) 0%, transparent 50%);

        }


        /* Subtle vignette effect */
        .vignette {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                ellipse at center,
                transparent 0%,
                transparent 60%,
                rgba(11, 11, 31, 0.4) 100%
            );
            pointer-events: none;
        }

        /* Content container */
        .content {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: top;
            align-items: center;
            padding: 2rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* Header Navigation */
        .main-header {
            position: absolute;
            top: 1.5rem;
            left: 20px;
            padding-bottom: 1.5rem;
            right: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(255, 0, 73, 0.1);
            border-color: #FF0049;
            color: #FF0049;
            transform: translateY(-2px);
        }

        /* === Site Navigation (Desktop First) === */
        .main-header > a {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .site-nav {
            margin-left: auto;
            position: relative;
            z-index: 2;
        }

        .site-nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 0;
            align-items: center;
        }

        .site-nav-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            padding: 4px 12px;
            display: inline-block;
            position: relative;
            border-radius: 4px;
            background: transparent;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .site-nav-link:hover,
        .site-nav-link:focus-visible {
            background: rgba(255, 0, 73, 0.1);
            color: #FF0049;
        }

        .site-nav-social {
            display: none;
        }

        .site-nav-toggle {
            display: none;
            width: 50px;
            height: 50px;
            background: transparent;
            border: none;
            padding: 0;
            cursor: pointer;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            z-index: 1001;
            position: relative;
        }

        .site-nav-toggle span {
            display: block;
            width: 28px;
            height: 3px;
            background-color: rgba(255, 255, 255, 0.9);
            transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
        }

        .site-nav-toggle:hover span {
            background-color: #FF0049;
        }

        .site-nav-toggle[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .site-nav-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .site-nav-toggle[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* === Mobile: Overlay === */
        @media (max-width: 768px) {
            .site-nav-toggle {
                display: flex;
            }

            .site-nav {
                position: fixed;
                top: 0;
                right: 0;
                width: 320px;
                max-width: 85%;
                height: 100%;
                background: linear-gradient(135deg, rgba(11, 11, 31, 0.98) 0%, rgba(255, 0, 73, 0.05) 100%);
                backdrop-filter: blur(20px);
                border-left: 1px solid rgba(255, 0, 73, 0.2);
                padding: 120px 30px 30px 30px;
                transform: translateX(100%);
                transition: transform 0.3s ease;
                z-index: 1000;
                overflow-y: auto;
                display: flex;
                flex-direction: column;
                gap: 40px;
                margin-left: 0;
            }

            .site-nav.is-open {
                transform: translateX(0);
            }

            .site-nav-list {
                flex-direction: column;
                align-items: stretch;
                gap: 5px;
                width: 100%;
            }

            .site-nav-link {
                display: block;
                width: 100%;
                padding: 8px 12px;
                font-size: 1.1rem;
                border-radius: 4px;
            }

            .site-nav-link:hover,
            .site-nav-link:focus-visible {
                background: rgba(255, 0, 73, 0.1);
                color: #FF0049;
            }

            .site-nav-social {
                display: flex;
                gap: 15px;
                margin-top: auto;
                padding-top: 30px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                width: 100%;
                justify-content: center;
            }

            body.nav-open {
                overflow: hidden;
            }
        }

        .mobile-nav-social-link {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }

        .mobile-nav-social-link:hover {
            background: rgba(255, 0, 73, 0.1);
            border-color: #FF0049;
            color: #FF0049;
            transform: translateY(-3px);
        }

        .hero-section {
            text-align: left;
            width: 100%;
            margin-bottom: 0px;
            margin-top: 80px;
        }

        .hero-section-sub {
            text-align: left;
            width: 100%;
            margin-bottom: 0px;
            margin-top: 80px;
        }

        .logo {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #FFFFFF 0%, #FF0049 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tagline {
            font-size: 1.5rem;
            color: #FF0049;
            margin-bottom: 30px;
        }

        .description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
        }

        /* Newsletter Form */
        .newsletter-form {
            background: linear-gradient(135deg, rgba(11, 11, 31, 0.95) 0%, rgba(255, 0, 73, 0.08) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 40px;
            max-width: 100%;
            width: 100%;
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 60px rgba(255, 0, 73, 0.1);
            animation: fadeInUp 0.3s ease-out 0.2s backwards;
            margin-bottom: 1.5rem;
        }

        .form-title {
            font-size: 1.6rem;
            color: #FFFFFF;
            margin-bottom: 10px;
            text-align: left;
        }

        .form-subtitle {
            color: rgba(255, 255, 255, 0.6);
            text-align: left;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

        .form-row {
            display: flex;
            gap: 15px;
            align-items: flex-end;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1;
            margin-bottom: 0;
        }

        .form-label {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            color: #FFFFFF;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-input:focus {
            outline: none;
            border-color: #FF0049;
            background-color: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(255, 0, 73, 0.1);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .submit-button {
            padding: 14px 30px;
            background-color: #FF0049;
            color: #FFFFFF;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            white-space: nowrap;
            min-width: 200px;
        }

        .submit-button:hover {
            background-color: #FF335C;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 0, 73, 0.3);
        }

        .submit-button:active {
            transform: translateY(0);
        }

        .privacy-note {
            text-align: left;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            margin-top: 20px;
            line-height: 1.5;
        }

        .privacy-note a {
            color: #FF0049;
            text-decoration: none;
        }

        .privacy-note a:hover {
            text-decoration: underline;
        }

        /* Social Proof with Avatars */
        .social-proof {
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 15px;
            flex-wrap: wrap;
        }

        .avatars {
            display: flex;
            align-items: center;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.85rem;
            color: white;
            border: 2px solid #0B0B1F;
            margin-left: -10px;
            overflow:hidden;
            transition: transform 0.3s ease;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .avatar:hover {
            transform: scale(1.1) translateY(-2px);
            z-index: 10;
        }

        .social-proof-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin: 0;
        }

        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            width: 100%;
            margin-top: 60px;
        }

        .feature-card {
            background: transparent;
            border: 1px solid transparent;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }


        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .feature-icon i {
            display: block;
        }

        .feature-title {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .feature-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            width: 100%;
            margin-top: 80px;
        }

        .faq-left {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-headline {
            font-size: 2rem;
            color: #FFFFFF;
            line-height: 1.2;
        }

        .faq-teaser {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.6;
        }

        .faq-right {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(255, 0, 73, 0.3);
        }

        .faq-question {
            width: 100%;
            padding: 20px 25px;
            background: transparent;
            border: none;
            color: #FFFFFF;
            font-size: 1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .faq-icon {
            font-size: 1rem;
            transition: transform 0.3s ease;
            color: #FF0049;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 25px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 25px 20px 25px;
        }

        .faq-answer p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.95rem;
            margin: 0;
        }

        /* Blog Section */
        .blog-section {
            width: 100%;
            margin: 40px auto 40px auto;
        }

        .blog-title {
            font-size: 2.5rem;
            color: #FFFFFF;
            margin-bottom: 50px;
            text-align: left;
        }

        .blog-posts {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .blog-post {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 24px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .blog-post:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 0, 73, 0.3);
            transform: translateY(-3px);
        }

        .blog-thumbnail {
            width: 100%;
            aspect-ratio: 1 / 1;
            height: auto;
            border-radius: 8px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .blog-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-content {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 8px;
            padding: 0;
        }

        .blog-content > * {
            margin: 0;
        }

        .blog-headline {
            font-size: 1.4rem;
            color: #FFFFFF;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .blog-headline a{
            color: #fff;
            transition: ease all 0.2s;
        }

        .blog-headline:hover a{
            color: #FF0049;
        }


        .blog-teaser {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .blog-meta {
            display: flex;
            gap: 5px;
            align-items: center;
            flex-wrap: wrap;
        }

        .blog-date {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            padding: 0;
        }

        .blog-post .blog-date {
            padding: 0;
        }

        .blog-category {
            background: rgba(255, 0, 73, 0.1);
            color: #FF0049;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Footer */
        .main-footer {
            position: relative;
            z-index: 10;
            width: 100%;
            padding: 60px 20px 40px 20px;
            margin-top: 100px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1050px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, #FFFFFF 0%, #FF0049 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #FF0049;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social-link {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            background: rgba(255, 0, 73, 0.1);
            border-color: #FF0049;
            color: #FF0049;
            transform: translateY(-2px);
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            margin: 0;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 2.5rem;
            }
            
            .tagline {
                font-size: 1.2rem;
            }
            
            .description {
                font-size: 1rem;
            }

            .newsletter-form {
                padding: 30px 20px;
            }

            .form-title {
                font-size: 1.4rem;
                text-align: center;
            }

            .form-row {
                flex-direction: column;
                align-items: stretch;
            }

            .submit-button {
                width: 100%;
                min-width: auto;
            }

            .social-proof {
                flex-direction: column;
                gap: 10px;
            }

            .social-proof-text {
                text-align: center;
            }

            .faq-section {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-top: 60px;
            }

            .blog-section {
                width: 100%;
                margin-top: 60px;
            }

            .blog-title {
                font-size: 2rem;
            }

            .blog-post {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .blog-thumbnail {
                aspect-ratio: 1 / 1;
                height: auto;
            }

            .blog-headline {
                font-size: 1.2rem;
            }

            .footer-links {
                gap: 20px;
            }

            .footer-link {
                font-size: 0.9rem;
            }
            .hero-section {
            margin-top: 100px;
            }

            .hero-section-sub {
            margin-top: 100px;
            }

        }


        /* Breadcrumb */
        .breadcrumb {
            width: 100%;
            margin-bottom: 30px;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
        }

        .breadcrumb-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .breadcrumb-link:hover {
            color: #FF0049;
        }

        .breadcrumb-separator {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
            user-select: none;
        }

        .breadcrumb-current span {
            color: #FF0049;
            font-size: 0.9rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .breadcrumb-list {
                font-size: 0.85rem;
            }
            
            .breadcrumb-current span {
                display: block;
                max-width: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
        }

                /* Newsletter Thumbnail */
        .newsletter-thumbnail {
            width: 100%;
            max-width: 100%;
            margin-bottom: 30px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            background-color: #0B0B1F;
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 60px rgba(255, 0, 73, 0.1);
        }

        .newsletter-thumbnail img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }

        .newsletter-archive-content {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
            padding: 40px;
            max-width: 100%;
            width: 100%;
            height: 80vh;
            overflow-y: auto;
            margin-bottom: 1.5rem;
        }

        /* Custom Scrollbar */
        .newsletter-archive-content::-webkit-scrollbar {
            width: 12px;
        }

        .newsletter-archive-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin: 16px 0;
        }

        .newsletter-archive-content::-webkit-scrollbar-thumb {
            background: #FF335C;
            border-radius: 10px;
            border: 2px solid rgba(11, 11, 31, 0.95);
        }

        .newsletter-archive-content::-webkit-scrollbar-thumb:hover {
            background: #FF0049;
        }

        /* Firefox Scrollbar */
        .newsletter-archive-content {
            scrollbar-width: thin;
            scrollbar-color: #FF335C rgba(255, 255, 255, 0.05);
        }

         /* Share Section */
        .share-section {
            width: 100%;
            margin-top: 2rem;
            margin-bottom: 2rem;
           
        }

        .share-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            display: block;
            text-align: center;
        }

        .share-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .share-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: transparent;
            border: none;
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .share-button:hover {
            transform: translateY(-2px);
        }

        .share-twitter:hover {
            background: transparent;
            color: #1DA1F2;
        }

        .share-facebook:hover {
            background: transparent;
            color: #1877F2;
        }

        .share-linkedin:hover {
            background: transparent;
            color: #0A66C2;
        }

        .share-whatsapp:hover {
            background: transparent;
            color: #25D366;
        }

        .share-copy:hover {
            background: transparent;
            color: #FF0049;
        }

         /* Newsletter Navigation */
        .newsletter-nav {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            width: 100%;
            margin-top: 40px;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 25px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            flex: 1;
            max-width: 48%;
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 0, 73, 0.3);
            transform: translateY(-3px);
        }

        .nav-prev {
            justify-content: flex-start;
        }

        .nav-next {
            justify-content: flex-end;
            text-align: right;
        }

        .nav-arrow {
            font-size: 24px;
            color: #FF0049;
            transition: transform 0.3s ease;
        }

        .nav-link:hover .nav-arrow {
            transform: translateX(0);
        }

        .nav-prev:hover .nav-arrow {
            transform: translateX(-5px);
        }

        .nav-next:hover .nav-arrow {
            transform: translateX(5px);
        }

        .nav-text {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .nav-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-title {
            font-size: 1rem;
            color: #FFFFFF;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .newsletter-nav {
                flex-direction: column;
                gap: 15px;
            }

            .nav-link {
                max-width: 100%;
            }

            .nav-next {
                text-align: left;
                justify-content: flex-start;
            }

            .nav-next .nav-text {
                order: 1;
            }

            .nav-next .nav-arrow {
                order: 2;
            }
        }
#newsletter-single .blog-meta{
    margin-bottom: 1.25rem;
    justify-content: center;
}

#newsletter-single .blog-date{
    padding-bottom: 0px;
    padding-top: 5px;
}



h1.front-page-heading{
    font-size: 1.8rem;
    color: #FFF;
}

h1.front-page-heading span{
    color: #FF0049;
    display: block;
    font-size: 2.2rem;
}
.top-logo{
    width: 90%; max-width: 300px; height: auto; margin-top: 0px; margin-bottom: 0px;
}

@media (max-width: 768px) {
.top-logo{
    width: 90%; max-width: 250px; height: auto; margin-top: 0px; margin-bottom: 0px;
}

}

.footer-logo{
    width: 80%; max-width: 170px; height: auto; margin-top: 20px; margin-bottom: 10px;
}

.blog-post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-copyright{
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 3px 6px 3px 6px;
    font-size: 0.65rem;
    color: #fff;
    background-color: rgba(11, 11, 31, 0.5);
    display: inline-block;
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    border-top-left-radius: 4px;
    z-index: 1000;
}

.hr{
    display: block;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    padding-bottom: 2rem;
}

.wpcf7-spinner{
    display: none!important;
}

.newsletter-content h2, .simracing-news-content h2{
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 1.25rem;
}

.newsletter-section h3, .simracing-news-content h3{
    font-size: 1.25rem;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 0.2rem;
    color: #FF0049;
}

.newsletter-content p, .simracing-news-content p{
    padding-bottom: 1rem;
}
.simracing-news-content img.alignnone{
display: block;
width: 100%!important;
max-width: 100%!important;
height: auto;
border-radius: 8px;
border: 1px solid #0f0c21;
margin-bottom: 1rem;
}

.simracing-news-content ul, ul.main-ul{
    margin-bottom: 1rem;
    padding-left: 15px;
}

.simracing-news-content ul li, ul.main-ul li{
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.newsletter-content .newsletter-section{
 padding-bottom: 1rem;
 margin-bottom: 2rem;
 border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.newsletter-content .newsletter-section .section-item {
            display: flex;
            flex-wrap: wrap;
        }

        .section-item > div {
            width: 100%;
        }

        @media (min-width: 768px) {
            .section-item.reverse {
            flex-direction: row-reverse;
        }
            .section-item > div:first-child {
                width: 40%;
                padding-right: 10px;
                padding-top: 10px;
            }

            .section-item > div:last-child {
                width: 60%;
            }
        }
.newsletter-content .newsletter-section .section-item img{
    border-radius: 6px;
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.simracing-news-content{
 width: 100%;
 display: block;
 margin: 0 auto;
}


.newsletter-small-button{
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin: 0 auto 0 0;
}

@media (min-width: 768px) {
    .newsletter-small-button{
        display: flex;
        flex-direction: row;
        gap: 0px;
        margin: 0 auto 0 0;
    }
}
a.small-link{
    color: rgba(255, 255, 255, 0.7);
    transition: all ease 0.2s;
    margin-top: 0.5rem;
    margin-bottom: 0;
    display: inline-block;
    font-style: italic;
    font-size: 0.9rem;
}

a.small-link:hover{
    color: #FF0049;
}


.page-content{
    width: 100%;
    display: block;
}

.page-content p{
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.abstand-unten-l-ma{
    margin-bottom: 80px;
}

.abstand-oben-l-ma{
    margin-top: 80px;
}

.dsgvo-yt-container{
    margin-top: 2rem;
    margin-bottom: 2rem;
}

span.color-font{
    color: #FF0049!important;
}

span.color-font-white{
    color: #fff!important;
}

.praetio-container {
  display: flex;
  flex-direction: row;
}

.praetio-container .flex-left {
width: 50%;
}

.praetio-container .flex-right {

width: 50%;

}

@media (max-width: 768px) {
    .praetio-container {
  flex-direction: column;
}
  .praetio-container .flex-left,
  .praetio-container .flex-right {
    width: 100%;
  }
}

img.resp-image{
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

img.resp-image-80{
    display: block;
    width: 80%;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
}

/* SVG Icon Styles */
.icon-arrow,
.icon-calendar {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-right: 4px;
}

.icon-arrow svg,
.icon-calendar svg {
    width: 1em;
    height: 1em;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}


.author-box, .info-box {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.author-box-image-wrapper {
    flex-shrink: 0;
}

.author-box-image {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box-content {
    flex-grow: 1;
}

.author-box-name {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.author-box-name a {
    text-decoration: none;
    color: #fff;
}

.author-box-name a:hover {
    color: #FF0049;
}

.author-box-bio {
padding-bottom: 1rem;
}

.info-box {
width: 100%;
display: block;
text-align: center;
}

.cta_01 {
    margin-top: 2rem;
    background-color:#FF0049;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    padding: 1rem 2rem;
    line-height: 1.0;
    transition: opacity 0.3s ease;
    display: inline-block;;
}

.cta_01:hover{
    opacity: 0.7;
}


.dsgvo-yt-overlay.dsgvo-yt-custom{
    border: 1px solid #FF0049;
    border-radius: 8px;
    overflow: hidden!important;
}


.icon-img{
    width: 100%;
    max-width: 70px;
    height: auto;
    margin: 0 auto 1rem auto;
}

/* Pagination */
.navigation.pagination {
    width: 100%;
    margin-top: 50px;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a.page-numbers {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.nav-links a.page-numbers:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 0, 73, 0.3);
    color: #FF0049;
    transform: translateY(-2px);
}

.nav-links span.page-numbers.current {
    background: #FF0049;
    border: 1px solid #FF0049;
    color: #FFFFFF;
}

.nav-links a.prev,
.nav-links a.next {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.nav-links a.prev:hover,
.nav-links a.next:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 0, 73, 0.3);
    color: #FF0049;
    transform: translateY(-2px);
}

.nav-links span.dots {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    min-width: auto;
    padding: 8px 4px;
}

@media (max-width: 768px) {
    .pagination-label {
        display: none;
    }

    .nav-links a,
    .nav-links span {
        min-width: 40px;
        height: 40px;
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

#metis-img-pixel img{
height: 1px!important;
width: 1px!important;
}

/* ============================================
   HERO GRID (Magazin-Layout: Lead + 3 Teaser)
   ============================================ */
.hero-grid {
    width: 100%;
    margin-bottom: 40px;
}

.hero-grid__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.hero-grid__secondary {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.hero-story {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.hero-story__media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 0, 73, 0.08) 0%, rgba(11, 11, 31, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}

.hero-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-story__media:hover img {
    transform: scale(1.03);
}

.hero-story__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.hero-story__content .blog-date {
    padding: 0;
    margin: 0;
}

.hero-story__headline {
    color: #FFFFFF;
    line-height: 1.25;
    margin: 0;
}

.hero-story__headline a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-story__headline a:hover {
    color: #FF0049;
}

.hero-story__excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Lead-Story (gross, links) */
.hero-story--lead .hero-story__headline {
    font-size: 1.75rem;
}

/* Kleine Teaser (rechts): Datum oben, darunter Thumb + Headline nebeneinander */
.hero-story--small {
    gap: 6px;
}

.hero-story--small > .blog-date {
    margin: 0;
    padding: 0;
}

.hero-story__row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    min-width: 0;
}

.hero-story--small .hero-story__media {
    flex: 0 0 35%;
    max-width: 35%;
    aspect-ratio: 1 / 1;
}

.hero-story__text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.hero-story__text .blog-date {
    margin: 0;
    padding: 0;
}

.hero-story--small .hero-story__headline {
    font-size: 1rem;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile: alles stacken, Lead prominent, Small kompakt */
@media (max-width: 768px) {
    .hero-grid__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-grid__secondary {
        padding-top: 20px;
        gap: 16px;
    }

    .hero-story--lead .hero-story__headline {
        font-size: 1.35rem;
    }

    .hero-story--small .hero-story__media {
        flex: 0 0 110px;
        max-width: 110px;
    }

    .hero-story--small .hero-story__headline {
        font-size: 0.95rem;
    }
}


p.date-single{
    font-size: 0.7rem;
    color:#FF0049;
}

/* ===========================
   Racingtitel
   =========================== */

/* Racingtitel-Tags in Posts */
.blog-category-racingtitel {
    background: rgba(0, 162, 255, 0.1);
    color: #00A2FF;
    text-decoration: none;
    transition: background 0.2s ease;
}

.blog-category-racingtitel:hover {
    background: rgba(0, 162, 255, 0.25);
}

/* Plattform-Badge */
.racingtitel-platform {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
    white-space: nowrap;
    margin-top: 0;
}

.racingtitel-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
}

/* Badge neben Titel auf Archivseite */
.racingtitel-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.racingtitel-title-row .racingtitel-platform {
    margin-top: 0;
}

.racingtitel-platform--pc {
    background: rgba(0, 162, 255, 0.1);
    color: #00A2FF;
}

.racingtitel-platform--konsole {
    background: rgba(0, 200, 83, 0.1);
    color: #00C853;
}

.racingtitel-platform--pc_konsole {
    background: rgba(255, 193, 7, 0.1);
    color: #FFC107;
}


/* Racingtitel Suche */
.racingtitel-search {
    width: 100%;
    padding: 1rem 0 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.racingtitel-search-label {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.2rem;
    white-space: nowrap;
    padding-top: 10px;
}

#racingtitel-search-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}

#racingtitel-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#racingtitel-search-input:focus {
    border-color: rgba(255, 0, 73, 0.5);
}

.racingtitel-no-results {
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 0;
    font-size: 1rem;
}

/* Racingtitel Plattform-Filter */
.racingtitel-search-col {
    flex: 1;
    min-width: 0;
}

.racingtitel-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0.5rem 0 0 0;
}

.racingtitel-filter-btn {
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: transparent;
    font-family: "Lato", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.racingtitel-filter-btn--pc {
    color: #00A2FF;
    border-color: rgba(0, 162, 255, 0.3);
}

.racingtitel-filter-btn--konsole {
    color: #00C853;
    border-color: rgba(0, 200, 83, 0.3);
}

.racingtitel-filter-btn--pc_konsole {
    color: #FFC107;
    border-color: rgba(255, 193, 7, 0.3);
}

.racingtitel-filter-btn[data-filter="all"] {
    color: #FF0049;
    border-color: rgba(255, 0, 73, 0.3);
}

.racingtitel-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.racingtitel-filter-btn--active {
    background: rgba(255, 0, 73, 0.15);
    border-color: rgba(255, 0, 73, 0.5);
    color: #FF0049;
}

.racingtitel-filter-btn--pc.racingtitel-filter-btn--active {
    background: rgba(0, 162, 255, 0.12);
    border-color: rgba(0, 162, 255, 0.5);
    color: #00A2FF;
}

.racingtitel-filter-btn--konsole.racingtitel-filter-btn--active {
    background: rgba(0, 200, 83, 0.12);
    border-color: rgba(0, 200, 83, 0.5);
    color: #00C853;
}

.racingtitel-filter-btn--pc_konsole.racingtitel-filter-btn--active {
    background: rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.5);
    color: #FFC107;
}

/* Racingtitel Landingpage Grid */
.racingtitel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    padding-bottom: 1rem;
}

.racingtitel-card {
    display: block;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #FFFFFF;
    padding: 20px;
    transition: all 0.3s ease;
}

.racingtitel-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 0, 73, 0.3);
    transform: translateY(-3px);
}

.racingtitel-card.racingtitel-card--hidden {
    display: none;
}

.racingtitel-card-thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.racingtitel-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.racingtitel-card {
    display: flex;
    flex-direction: column;
}

.racingtitel-card-content {
    padding-top: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}


.racingtitel-card-title {
    font-size: 1.3rem;
    margin-top: 12px;
    margin-bottom: 0;
}

.racingtitel-card-count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Racingtitel Card Details (Studio, Release, Genre) */
.racingtitel-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 10px 0 0 0;
    padding: 10px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.racingtitel-card-detail {
    display: flex;
    gap: 5px;
    font-size: 0.78rem;
    line-height: 1.4;
}

.racingtitel-card-detail dt::after {
    content: ":";
}

.racingtitel-card-detail dt {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.racingtitel-card-detail dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Racingtitel Info-Bar auf Archivseite */
.racingtitel-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin: -30px 0 1.5rem 0;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.racingtitel-info-item {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.racingtitel-info-item dt::after {
    content: ":";
}

.racingtitel-info-item dt {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.racingtitel-info-item dd {
    margin: 0;
    color: #FFFFFF;
}

/* Simracing Titel Sektion auf Startseite */
.simracing-titel-section, .simracing-news-section, .simracing-feature-section {
    width: 100%;
}

.simracing-news-section .blog-posts{
padding-bottom: 1rem;
}

.section-heading {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.headline-slash::before {
    content: "/";
    color: #FF0049;
    margin-right: 10px;
}

.racingtitel-grid--frontpage {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
    .racingtitel-grid--frontpage {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .racingtitel-grid--frontpage {
        grid-template-columns: 1fr;
    }
}

/* Racingtitel Archivseite Beschreibung */
.racingtitel-description {
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    font-size: 1.1rem;
    line-height: 1.6;
}

.racingtitel-description h2{
    font-size: 1.6rem;
}
/* Responsive: Tablet */
@media (max-width: 900px) {
    .racingtitel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Frontpage: News 2/3 + Newsletter-Sidebar 1/3 (an Hero-Grid ausgerichtet) */
.simracing-news-section--split .simracing-news-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    width: 100%;
}

.simracing-news-layout__main {
    min-width: 0;
}

.simracing-news-layout__aside {
    position: sticky;
    top: 24px;
    min-width: 0;
    max-width: 100%;
}

.simracing-news-layout__aside > * {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.newsletter-form--sidebar,
.newsletter-form--sidebar * {
    box-sizing: border-box;
    max-width: 100%;
}

.newsletter-form--sidebar .cr_form,
.newsletter-form--sidebar .cr_body,
.newsletter-form--sidebar .formbox,
.newsletter-form--sidebar .editable_content,
.newsletter-form--sidebar .cr_form-component,
.newsletter-form--sidebar .cr_form-inputgroup {
    width: 100%;
    min-width: 0;
}

.simracing-news-section--split .blog-post {
    grid-template-columns: 160px 1fr;
    gap: 18px;
    padding: 16px;
}

.newsletter-form--sidebar {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    backdrop-filter: none;
    animation: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.newsletter-form--sidebar:hover,
.newsletter-form--sidebar:focus-within {
    opacity: 1;
}

.newsletter-form--sidebar .form-title {
    font-size: 1.25rem;
    margin: 0 0 12px;
}

.newsletter-form--sidebar .newsletter-form__lead {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 16px;
}

.newsletter-form--sidebar .newsletter-form-wrapper {
    margin-bottom: 12px;
}

.newsletter-form--sidebar .editable_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form--sidebar .cr_form-component,
.newsletter-form--sidebar .submit_field_praetio,
.newsletter-form--sidebar .submit_container {
    width: 100% !important;
    max-width: 100%;
    margin: 0;
}

.newsletter-form--sidebar .cr_ipe_item input[type="email"] {
    min-width: 0;
    width: 100%;
}

.newsletter-form--sidebar .cr_form-input {
    width: 100%;
    box-sizing: border-box;
    display: block;
}

.newsletter-form--sidebar .cr_button {
    width: 100%;
    display: block;
    margin: 0;
}

.social-proof--sidebar {
    margin: 18px 0 14px;
}

.social-proof--sidebar .avatars {
    margin-bottom: 8px;
}

.social-proof--sidebar .social-proof-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.privacy-note--sidebar {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.privacy-note--sidebar a {
    color: inherit;
    text-decoration: underline;
}

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .simracing-news-section--split .simracing-news-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }

    .simracing-news-layout__aside {
        position: static;
    }

    .newsletter-form--sidebar {
        opacity: 1;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        margin-top: 1rem;
    }

    .newsletter-form--sidebar .form-title {
        text-align: left;
    }
}

/* Responsive: Mobile */
@media (max-width: 600px) {
    .racingtitel-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Loop-Beiträge: kompaktere Mobile-Darstellung */
@media (max-width: 768px) {
    .blog-post,
    .simracing-news-section--split .blog-post {
        grid-template-columns: 110px 1fr;
        gap: 14px;
        padding: 14px;
        align-items: start;
    }

    .blog-thumbnail {
        aspect-ratio: 1 / 1;
    }

    .blog-post .blog-teaser,
    .blog-post .blog-copyright {
        display: none;
    }

    .blog-headline {
        font-size: 1rem;
        line-height: 1.3;
    }
}

/* ============================================
   SKELETON LOADING (Lazy Images)
   ============================================ */
.sr-skeleton {
    position: relative;
    display: inline-block;
    line-height: 0;
    max-width: 100%;
    overflow: hidden;
}

.sr-skeleton::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.10) 50%,
        rgba(255, 255, 255, 0.04) 100%
    );
    background-color: rgba(255, 255, 255, 0.04);
    background-size: 200% 100%;
    animation: sr-skeleton-shimmer 1.4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sr-skeleton > img {
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

.sr-skeleton.is-loaded::before {
    opacity: 0;
    animation: none;
}

.sr-skeleton.is-loaded > img {
    opacity: 1;
}

@keyframes sr-skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .sr-skeleton::before {
        animation: none;
    }
    .sr-skeleton > img {
        transition: none;
    }
}


#section-description{
    padding-bottom: 1rem;
}

.taxa-headline{
    padding-top: 40px;
}

#loop-taxa .blog-section{
    margin-top: 1rem!important;
}