/*
Theme Name: ClevWave Theme
Theme URI: https://clevawave.com/
Author: ClevaWave Team
Author URI: https://clevawave.com/
Description: A premium WordPress theme for AI-powered solutions, built with Tailwind CSS and modern aesthetics.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: clevwave
*/

/* Core CSS Reset for Full Width Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main {
    width: 100%;
}

/* Ensure images and videos are responsive but don't break width */
img,
video {
    max-width: 100%;
    height: auto;
}

/* Fix for WordPress admin bar */
body.admin-bar {
    margin-top: 0 !important;
}

/* Blog layouts will handle their own containers internally */
.blog-listing-container,
.blog-post-container {
    width: 100%;
}