 /* Module styling */
        .module-container {
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            background-color: white;
        }
        .module-title {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 2rem;
        }
        .module-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        }
        
        /* Hero section */
        .hero-section {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border-radius: 10px;
            padding: 3rem;
            margin-bottom: 2rem;
        }
        
        /* Post card */
        .post-card {
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            background-color: white;
            margin-bottom: 2rem;
            overflow: hidden;
        }
        .post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: #2575fc;
        }
        .post-image-container {
            height: 200px;
            overflow: hidden;
        }
        .post-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .post-card:hover .post-image {
            transform: scale(1.05);
        }
        .post-body {
            padding: 1.5rem;
        }
        .post-title {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }
        .post-title a {
            color: #343a40;
            text-decoration: none;
        }
        .post-title a:hover {
            color: #2575fc;
        }
        .post-meta {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .post-excerpt {
            color: #495057;
            margin-bottom: 1.5rem;
        }
        .read-more {
            font-weight: 500;
            color: #2575fc;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        .read-more:hover {
            text-decoration: underline;
        }
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        .read-more:hover i {
            transform: translateX(3px);
        }
        
        /* Sidebar */
        .sidebar-card {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            background-color: white;
            padding: 1.5rem;
        }
        .sidebar-title {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid #e0e0e0;
            position: relative;
        }
        .sidebar-title:after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        }
        .category-list {
            list-style: none;
            padding: 0;
        }
        .category-list li {
            margin-bottom: 0.75rem;
        }
        .category-list a {
            display: flex;
            justify-content: space-between;
            color: #495057;
            text-decoration: none;
            padding: 0.5rem;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .category-list a:hover {
            color: #2575fc;
            background-color: #f8f9fa;
        }
        .category-count {
            background-color: #e9ecef;
            color: #495057;
            border-radius: 10px;
            padding: 0.25rem 0.5rem;
            font-size: 0.75rem;
        }
        
        /* Pagination */
        .pagination {
            justify-content: center;
            margin-top: 3rem;
        }
        .page-item.active .page-link {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-color: transparent;
        }
        .page-link {
            color: #2575fc;
            margin: 0 5px;
            border-radius: 5px !important;
        }
        .page-link:hover {
            color: #6a11cb;
        }
        /* Responsive */
        @media (max-width: 767.98px) {
            .module-container, .sidebar-card {
                padding: 1.5rem;
            }
            .hero-section {
                padding: 2rem 1.5rem;
            }
        }