/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: Secure and update-safe child theme for Hello Elementor.
Author: Your Name
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Add custom CSS below this line */

.blog-archive-accordion {
    width: 100%;
}

.archive-item {
    margin-bottom: 10px;
}

.archive-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}

.archive-title {
    line-height: 1.3;
}

.archive-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid #0073aa;
    border-bottom: 2px solid #0073aa;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.archive-header.active .archive-icon {
    transform: rotate(45deg);
}

.archive-content {
    display: none;
}

.archive-post {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 18px 20px;
}

.archive-post a {
    color: #1f2937;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.archive-post a:hover {
    color: #0073aa;
}