    * {
        box-sizing: border-box;
    }

    .hero-section {
        text-align: center;
        margin-bottom: 40px;
        max-width: 1100px;
        margin: 0 auto;
        border-bottom: #9e0157 2px solid;
        padding-bottom: 8px;
    }

    .hero-title {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        opacity: 0.95;
    }


    .posts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 24px;
        margin-bottom: 60px;
    }

    .post-card {
        background: #fff;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .post-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .post-image {
        width: 100%;
        height: 240px;
        object-fit: cover;
        background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
        display: block;
    }

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

    .post-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 16px;
        flex-wrap: wrap;
    }

    .post-date {
        font-size: 0.875rem;
        color: #475569;
        font-weight: 500;
    }

    .post-badges {
        display: flex;
        align-items: center;
        justify-content: space-between;
        ;
        flex: 1;
    }

    .badge {
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: capitalize;
        letter-spacing: 0.025em;
    }

    .badge-category {
        background-color: #e0e7ff;
        color: #4f46e5;
    }

    .badge-category.marketing {
        background-color: #fce7f3;
        color: #db2777;
    }

    .badge-category.sales {
        background-color: #dbeafe;
        color: #2563eb;
    }

    .badge-category.business {
        background-color: #d1fae5;
        color: #059669;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.7;
        }
    }

    .post-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin: 0 0 12px 0;
        line-height: 1.4;
        letter-spacing: -0.01em;
    }

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

    .post-title a:hover {
        color: #667eea;
    }

    .post-excerpt {
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1;
        font-size: 0.9375rem;
    }

    .post-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 16px;
        border-top: 1px solid #e2e8f0;
        margin-top: auto;
    }

    .post-author {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 600;
        font-size: 0.875rem;
        flex-shrink: 0;
    }

    .author-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .author-name {
        font-size: 0.9375rem;
        font-weight: 600;
        color: #1e293b;
        line-height: 1.2;
    }

    .author-role {
        font-size: 0.8125rem;
        color: #64748b;
        line-height: 1.2;
    }

    .post-stats {
        display: flex;
        gap: 12px;
        font-size: 0.8125rem;
        color: #475569;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 4px;
        color: #475569;
    }

    .no-posts {
        text-align: center;
        padding: 80px 20px;
        color: #718096;
    }

    .no-posts-icon {
        font-size: 4rem;
        margin-bottom: 20px;
        opacity: 0.3;
    }

    .no-posts-text {
        font-size: 1.25rem;
        color: #64748b;
    }

    @media screen and (max-width: 768px) {
        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .posts-grid {
            grid-template-columns: 1fr;
        }

        .grid-ad {
            grid-column: span 1;
        }


        .post-title {
            font-size: 1.25rem;
        }
    }

    @media screen and (min-width: 1200px) {
        .posts-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .grid-ad {
            grid-column: 1 / -1;
            /* 🔥 THIS forces full width */
            width: 100%;
        }
    }