.sb-blog-cards {
            max-width: 1400px;
            margin: 50px auto;
            padding: 0 18px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 32px;
        }

        .sb-blog-card {
            background: #F9F7F2;
            border-radius: 20px;
            border: 1px solid rgba(74, 102, 85, .14);
            box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
            overflow: hidden;
            transition: all .3s;
            display: flex;
            flex-direction: column;
        }

        .sb-blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
        }

        .sb-card-thumb img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .sb-card-body {
            padding: 24px 20px 28px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            text-align: center;
        }

        /* AUTO PREFIX + SPLIT */
        .sb-prefixed-title::before {
            content: "Sunnybank Flowers";
            display: block;
            font-family: "Playfair Display", serif;
            font-size: clamp(1.4rem, 3vw, 1.75rem);
            font-weight: 600;
            line-height: 1.22;
            color: #4A6655;
            margin-bottom: 6px;
        }

        .sb-prefixed-title::after {
            content: attr(title);
            display: block;
            font-family: "Playfair Display", serif;
            font-size: clamp(1.15rem, 2.5vw, 1.45rem);
            line-height: 1.28;
            color: #4A6655;
            opacity: .95;
        }

        .sb-prefixed-title {
            color: transparent;
            font-size: 0;
            line-height: 0;
        }

        .sb-card-meta {
            font-size: .9rem;
            color: #777;
            margin-bottom: 12px;
        }

        .sb-card-excerpt {
            flex-grow: 1;
            line-height: 1.6;
            color: #333;
            margin-bottom: 20px;
        }

        .sb-card-button {
            margin-top: auto;
            align-self: center;
            background: #4A6655;
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: .95rem;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(74, 102, 85, .25);
            transition: all .25s;
        }

        .sb-card-button:hover {
            background: #688673;
            transform: translateY(-2px);
        }
