/* Main container */
.ent-topic-list-container {
    max_width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section Wrapper */
.ent-topic-section {
    margin-bottom: 40px;
}

/* Topic Title */
.ent-topic-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    color: #333;
}

/* List of items */
.ent-topic-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

/* Individual Item */
.ent-topic-item {
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
    transition: transform 0.2s ease, background 0.2s;
}

.ent-topic-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.ent-topic-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    display: block;
}

.ent-topic-link:hover {
    color: #0d6efd;
}