.questions-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}
.question-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 1px solid #ddd;
}

.question-link:last-child {
    border-bottom: none;
}

.question-link:hover {
    transform: translateY(-2px);
}

.question-item {
    padding: 20px 10px;
}

.question-item:hover {
    background-color: #f9f9f9;
}

.question-title {
    font-size: 18px;
    margin-bottom: 10px;
    color:#1d3557;
}

.question-title a {
    color: #1d3557;
    text-decoration: none;
    transition: color 0.3s;
}

.question-title a:hover {
    color:#1d3557;
}

.question-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.question-preview {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size:20px;
}

.question-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}
@media (max-width: 768px) {
    .row>*{
        --bs-gutter-x :0;
    }
    .questions-container {
        padding: 10px;
    }
    .questions-container . {
        padding: 10px;
    }
}