.suggested-answers {
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.suggested-answers h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.suggested-answer-box {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #0073aa;
    border-radius: 5px;
}

.suggested-answer-box strong a {
    font-size: 16px;
    color: #0073aa;
    text-decoration: none;
}

.suggested-answer-box p {
    margin: 8px 0 0;
    font-size: 14px;
    color: #333;
}

.load-more-answers {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.load-more-answers:hover {
    background-color: #005e8c;
}

.question-archive {
    max-width: 800px;
    margin: 20px auto;
    font-family: 'Segoe UI', sans-serif;
}
.question-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.question-header h1 {
    font-size: 28px;
    margin: 0;
}
.question-header p {
    font-size: 16px;
    color: #666;
}
.question-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
    background-color: #fff;
}
.question-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.question-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
    text-decoration: none;
}
.question-title:hover {
    color: #0077cc;
}
.question-excerpt {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}
.question-meta {
    font-size: 14px;
    color: #777;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.question-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
