/*
Theme Name: Newsmatic Child Sidebar Home
Theme URI: https://paparodeo.com/
Description: Child theme for Newsmatic that adds a homepage template with shortcode support and sidebar, without replacing the parent theme's full homepage system.
Author: OpenAI
Template: newsmatic
Version: 1.0.0
Text Domain: newsmatic-child-sidebar-home
*/

/* Optional light styling for the custom homepage template */
.home-shortcode-layout {
    width: 100%;
}

.home-shortcode-layout .home-shortcode-container {
    width: min(1200px, calc(100% - 30px));
    margin: 30px auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 30px;
}

.home-shortcode-layout .home-shortcode-main,
.home-shortcode-layout .home-shortcode-sidebar {
    background: #fff;
}

.home-shortcode-layout .home-shortcode-main {
    padding: 20px;
}

.home-shortcode-layout .home-shortcode-title {
    margin: 0 0 20px;
    font-size: 28px;
    line-height: 1.3;
}

.custom-post-list-wrapper ul.custom-post-list {
    margin: 0;
    padding-left: 18px;
}

.custom-post-list-wrapper ul.custom-post-list li {
    margin-bottom: 10px;
}

.custom-post-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.custom-post-card {
    border: 1px solid rgba(0,0,0,.08);
    padding: 16px;
    border-radius: 6px;
    background: #fff;
}

.custom-post-card .entry-title {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.35;
}

.custom-post-card .entry-meta {
    font-size: 13px;
    opacity: .75;
    margin-bottom: 10px;
}

.custom-post-card .entry-excerpt p {
    margin: 0;
}

@media (max-width: 900px) {
    .home-shortcode-layout .home-shortcode-container {
        grid-template-columns: 1fr;
    }
}
