/* Smart Archive Engine - Frontend Styles */

.sae-archive-container {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.sae-block {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.sae-intro {
    background: #f8f9fa;
    border-color: #f0f0f1;
}

.sae-intro h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #23282d;
}

/* Top Posts */
.sae-top-posts h3 {
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-top: 0;
    font-size: 1.25em;
    display: inline-block;
}

.sae-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sae-post-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sae-post-list li:last-child {
    border-bottom: none;
}

.sae-post-list a {
    text-decoration: none;
    font-weight: 500;
    color: #1d2327;
    transition: color 0.2s;
}

.sae-post-list a:hover {
    color: #0073aa;
}

/* FAQ */
.sae-faq h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.sae-faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.sae-faq-item:last-child {
    border-bottom: none;
}

.sae-faq-question {
    margin: 0 0 10px;
    font-size: 1.1em;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

.sae-faq-answer {
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Related Tags */
.sae-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sae-tag-item {
    background: #f0f0f1;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    color: #555;
}