/*
 Theme Name: Hello Elementor Child
 Theme URI: https://example.com/
 Description: Child theme for Hello Elementor with sidebar support on archives and single posts.
 Author: Patrick / ChatGPT
 Template: hello-elementor
 Version: 1.1.0
 Text Domain: hello-elementor-child
*/

/* You can add your custom styles below */

body {
    line-height: 1.6;
}

.site-main {
    padding: 40px 20px;
}

.hello-archive-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.hello-archive-layout .archive-posts,
.hello-archive-layout .single-content {
    flex: 1 1 0;
    min-width: 0;
}

.hello-archive-layout .sidebar-area {
    flex: 0 0 280px;
}

@media (max-width: 768px) {
    .hello-archive-layout {
        flex-direction: column;
    }
    .hello-archive-layout .sidebar-area {
        flex: 1 1 100%;
    }
}
