.se-category-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding-bottom: 50px;
}

/* Category Box */
.se-category {
    width: calc(33.33% - 14px); /* Three per row on desktop */
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    border: 2px solid orange;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Category Title */
.se-category-title {
    font-size: 18px;
    font-weight: bold;
    background: #0073aa;
    color: #fff;
    padding: 10px;
    margin: 0;
    border-radius: 3px;
    text-align: center;
}

/* Post Container */
.se-post-container {
    padding: 10px;
    display: block;
}

/* Post List */
.se-post-container ul {
    padding-left: 5px;
    list-style-type: disc;
    text-align: left;
}

/* Post Item */
.se-post-item {
    padding: 8px;
}

/* Post Link */
.se-post-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: block;
    transition: background 0.3s ease-in-out, padding-left 0.3s ease-in-out;
}

.se-post-link:hover {
    background: #f0f0f0;
    color: #0073aa;
    padding-left: 10px;
}

/* Responsive: Two per row on tablets */
@media (max-width: 1024px) {
    .se-category {
        width: calc(90% - 10px);
    }
}

/* Responsive: One per row on mobile */
@media (max-width: 768px) {
    .se-category {
        width: 100%;
    }
}
