/*
Theme Name: Donche
Theme URI: https://donche.local
Author: Donche Studio
Description: Custom WordPress Theme for Donche
Version: 1.0.0
*/

/* Layout Utils */
.donche-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.donche-main-layout {
    display: flex;
    gap: 30px;
}
.donche-content-70 {
    width: 70%;
}
.donche-sidebar-30 {
    width: 30%;
}

@media (max-width: 768px) {
    .donche-main-layout {
        flex-direction: column;
    }
    .donche-content-70, .donche-sidebar-30 {
        width: 100%;
    }
    .desktop-only {
        display: none !important;
    }
}