.topic-cards {
    display: flex;
    gap: 10px;
    padding: 4px;
    overflow-x: auto;
}

.topic-card {
    border: 1px solid #9b9999;
    padding: 20px;
    border-radius: 5px;
    width: 240px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.topic-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.topic-linkicon {
    display: flex;
    width: fit-content;
    margin:auto;
    gap: 15px;
}

.topic-linkicon::after {
    content: url(/res/icons/link.svg);
    width: 15px;
    height: 15px;
    margin-top: 8px;
}

.topic-card:hover {
    transform: translate(3px,-3px);
    box-shadow: -3px 3px 5px 0 #9b9999;
}

.topic-card h2 {
    font-weight: bold;
}

.topic-card img {
    border: 1px solid #9b9999;
    object-fit: contain;
    width: 200px;
    border-radius: 10px;
}

.topic-cards::-webkit-scrollbar-thumb {
    border-radius: 5px;
}