/*
Theme Name: Antigravity Custom Theme
Theme URI: https://example.com/antigravity
Author: Antigravity Team
Author URI: https://example.com
Description: A minimal, modular WordPress theme built with Tailwind CSS.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: antigravity-theme
*/

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Blog Listings */
.blog-post-wrapper {
    background: #fafafa;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 28px;
}

.blog-post-wrapper:nth-child(even) {
    background: #f2f4f7;
}

/* Announcement Banner */
.top-announcement-bar {
    background: #0a1a5e;
    color: #ffffff;
    padding: 8px 0;
    text-align: center;
    font-weight: 600;
}

.top-announcement-bar a {
    color: #ffffff;
    text-decoration: underline;
}