/*
Theme Name: Neve Child
Theme URI: https://themeisle.com/themes/neve/
Template: neve
Author: ThemeIsle
Author URI: https://themeisle.com
Description: Neve is a next-generation, ultra-fast WordPress theme designed for top performance, SEO, and Core Web Vitals. Its lightweight codebase and small size ensure minimal overhead and lightning-fast load times. Fully compatible with the block editor, popular page builders (Elementor, Bricks, Oxygen etc), and WooCommerce, it’s perfect for blogs, small businesses, agencies, portfolios, and online stores. With responsive design, multilingual translations, and easy customization options, Neve empowers you to create a future-proof, high-ranking online presence. Discover everything Neve has to offer and explore our powerful premium version at https://themeisle.com/themes/neve/.
Tags: blog,custom-logo,e-commerce,rtl-language-support,grid-layout,one-column,two-columns,custom-background,custom-colors,custom-header,custom-menu,featured-image-header,featured-images,flexible-header,full-width-template,sticky-post,theme-options,threaded-comments,translation-ready,accessibility-ready,wide-blocks,block-styles,footer-widgets,portfolio,left-sidebar,right-sidebar
Version: 4.1.2.1752389658
Updated: 2025-07-13 12:54:18

*/



/*
Theme Name: Neve Child
Template: neve
Version: 1.0
*/

.gtg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gtg-3col-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Column Styling */
.gtg-left-sidebar,
.gtg-main-content,
.gtg-right-promo {
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

/* Sticky Sidebars */
@media (min-width: 1025px) {
    .gtg-left-sidebar,
    .gtg-right-promo {
        position: sticky;
        top: 50px;
        align-self: start;
        height: fit-content;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        z-index: 10;
    }
}

/* Custom Scrollbar */
.gtg-left-sidebar::-webkit-scrollbar,
.gtg-right-promo::-webkit-scrollbar {
    width: 6px;
}
.gtg-left-sidebar::-webkit-scrollbar-thumb,
.gtg-right-promo::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* Responsive Tablet */
@media (max-width: 1024px) {
    .gtg-3col-layout {
        grid-template-columns: 1fr 2fr;
        grid-template-areas:
            "left main"
            "right right";
    }
    .gtg-left-sidebar { grid-area: left; }
    .gtg-main-content { grid-area: main; }
    .gtg-right-promo  { grid-area: right; }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .gtg-3col-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "left"
            "right";
    }
}
