/* --- Trang chi tiết Single FAQ --- */

/* Container tổng của trang single */
.qa-single-container {
    max-width: 850px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Be Vietnam Pro', sans-serif;
}

/* Thanh điều hướng quay lại */
.qa-breadcrumb {
    margin-bottom: 25px;
}

.qa-breadcrumb a {
    color: #f38120; /* Màu cam đồng bộ */
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.qa-breadcrumb a:hover {
    color: #e67616;
    transform: translateX(-5px);
}

/* Card chứa nội dung câu hỏi */
.qa-single-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    padding: 45px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

/* Đường line trang trí phía trên card */
.qa-single-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f38120, #ffb347);
}

.qa-single-header {
    margin-bottom: 30px;
}

/* Tag nhãn câu hỏi */
.qa-tag {
    background: rgba(243, 129, 32, 0.1);
    color: #f38120;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/* Tiêu đề câu hỏi (H1) */
.qa-single-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a2b3c;
    margin: 20px 0 0 0;
    line-height: 1.3;
}

/* Nội dung câu trả lời */
.qa-single-content {
    font-size: 17px;
    line-height: 1.9;
    color: #4a5568;
    border-top: 1px solid #f0f0f0;
    padding-top: 35px;
}

/* Tùy chỉnh các thẻ bên trong nội dung (nếu admin dùng block editor) */
.qa-single-content p {
    margin-bottom: 20px;
}

.qa-single-content strong {
    color: #333;
}

.qa-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Phần chân trang single */
.qa-single-footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px dashed #e2e8f0;
    text-align: center;
}

.qa-single-footer p {
    color: #718096;
    font-size: 16px;
}

.qa-single-footer a {
    color: #f38120;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(243, 129, 32, 0.2);
    transition: all 0.3s ease;
}

.qa-single-footer a:hover {
    border-bottom-color: #f38120;
    background: rgba(243, 129, 32, 0.05);
}

/* Responsive cho thiết bị di động */
@media (max-width: 768px) {
    .qa-single-container {
        margin: 30px auto;
    }
    
    .qa-single-card {
        padding: 30px 20px;
    }
    
    .qa-single-title {
        font-size: 26px;
    }
    
    .qa-single-content {
        font-size: 16px;
    }
}