@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

   .sellers-hero {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding-top: 100px;
            overflow: hidden;
        }

        .sellers-hero video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .sellers-hero .container {
            position: relative;
            z-index: 1;
        }

        .sellers-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .sellers-hero .container {
            z-index: 2;
        }

        .sellers-hero h1 {
            font-size: 5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }

        .sellers-hero p {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }

        .sellers-hero .btn-browse {
            background-color: #23b8bb;
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            transition: all 0.3s ease;
        }

        .sellers-hero .btn-browse:hover {
            background-color: #9adbe2;
            transform: scale(1.05);
        }

        .newsletter-section {
            background: url('../images/harry.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.3);
        }

        .newsletter-content {
            position: relative;
            z-index: 1;
        }

        .newsletter-section h2 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 10px;
            font-family: "Montserrat", sans-serif;
        }

        .blog-post-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            text-decoration: none !important;
            display: block;
            line-height: 1.2;
            transition: var(--transition-smooth);
        }

        .newsletter-section p {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 40px;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
            background: white;
            padding: 10px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .newsletter-form input {
            flex: 1;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            outline: none;
            font-size: 1.1rem;
        }

        .newsletter-form button {
            background-color: #23b8bb;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background-color: #9adbe2;
        }

        .blog-excerpt {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 30px;

            display: -webkit-box;
            -webkit-line-clamp: 5;
            /* 🔥 5 lines */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-post {
            background: var(--white);
            margin-bottom: 50px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            border: 1px solid rgba(0, 0, 0, 0.03);
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            height: 94%;
        }

        @media (max-width: 768px) {
            .sellers-hero h1 {
                font-size: 3rem;
            }

            .newsletter-section h2 {
                font-size: 2.5rem;
            }

            .newsletter-form {
                flex-direction: column;
                border-radius: 20px;
                padding: 20px;
            }

            .newsletter-form input {
                width: 100%;
                margin-bottom: 10px;
            }
        }