        /* ===== MAIN CONTENT WRAPPER ===== */
        .td-main-content-wrap {
            padding: 30px 0 60px;
        }

        .td-container-wrap {
            position: relative;
        }

        /* ===== TAG HEADER ===== */
        .tdm-block-column-title {
            margin-bottom: 40px;
            text-align: center;
        }

        .tdm-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
            position: relative;
            padding-bottom: 15px;
            margin: 68px auto;
        }

        .tdm-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, #ff3366, #ff9933);
        }

        /* ===== ARTICLES GRID ===== */
        .td-block-inner {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        @media (max-width: 768px) {
            .td-block-inner {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        /* ===== ARTICLE CARD ===== */
        .td_module_wrap {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #f0f0f0;
        }

        .td_module_wrap:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: #ff3366;
        }

        .td-module-container {
            position: relative;
            height: 100%;
        }

        /* ===== ARTICLE IMAGE ===== */
        .td-image-wrap {
            position: relative;
            display: block;
            overflow: hidden;
            height: 240px;
        }

        .td-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .td_module_wrap:hover .td-image-wrap img {
            transform: scale(1.05);
        }

        /* ===== ARTICLE CONTENT ===== */
        .td-module-meta-info {
            padding: 25px;
        }

        .td-module-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 15px;
            color: #000;
        }

        .td-module-title a:hover {
            color: #ff3366;
        }

        .td-excerpt {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* ===== READ MORE BUTTON ===== */
        .tdb_module_read_more {
            margin-top: 20px;
        }

        .tdb_module_read_more a {
            display: inline-flex;
            align-items: center;
            color: #ff3366;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .tdb_module_read_more a:hover {
            color: #000;
        }

        .tdb-mrm-icon {
            margin-left: 8px;
            display: inline-flex;
            align-items: center;
        }

        .tdb-mrm-icon svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* ===== DECORATIVE ELEMENTS ===== */
        .tdc-zone {
            position: relative;
        }

        .tdc-row {
            position: relative;
        }

        .td-element-style {
            position: absolute;
            pointer-events: none;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .tdm-title {
                font-size: 2rem;
            }
            
            .td-block-inner {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .tdm-title {
                font-size: 1.8rem;
            }
            
            .td-module-title {
                font-size: 1.2rem;
            }
            
            .td-image-wrap {
                height: 200px;
            }
            
            .td-module-meta-info {
                padding: 20px;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        /* ===== LOADING STATE ===== */
        .td-module-container {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
            animation-delay: calc(var(--item-index, 0) * 0.1s);
        }

        /* ===== PAGINATION ===== */
        .td-pagination {
            margin-top: 60px;
            text-align: center;
        }

        .td-pagination-wrap {
            display: inline-flex;
            gap: 5px;
        }

        .td-page-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background: #f8f8f8;
            color: #666;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .td-page-number:hover,
        .td-page-number.current {
            background: #ff3366;
            color: #fff;
        }

        .td-pagination-next-prev {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background: #f8f8f8;
            color: #666;
            transition: all 0.3s ease;
        }

        .td-pagination-next-prev:hover {
            background: #ff3366;
            color: #fff;
        }

        /* ===== NO POSTS MESSAGE ===== */
        .no-posts-message {
            text-align: center;
            padding: 60px 20px;
            color: #666;
        }

        .no-posts-message i {
            font-size: 3rem;
            color: #ddd;
            margin-bottom: 20px;
        }

        .no-posts-message h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #333;
        }
