.topics-list-container {
    padding: 15px;
    color: white;
}

.topics-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.topics-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.topic-link {
    text-decoration: none;
    color: white;
    display: block;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.topic-link:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.topic-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.topic-link:hover .topic-box {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.topic-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.topic-date {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
}

.topic-keywords {
    font-size: 10px;
    margin-top: auto;
}

.keyword {
    display: inline-block;
    background-color: rgba(76, 175, 80, 0.3);
    padding: 3px 6px;
    margin: 2px;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .topics-grid {
        grid-template-columns: 1fr;
    }
}
