/*
Theme Name: ExodusWP Optimized Child
Template: exodoswp
Version: 1.2
Description: Performance optimized child theme for ExodusWP. Removes WooCommerce and Charitable bloat + speed improvements.
Author: Kingdom Media
*/

/* =============================================
   GALLERY STYLE BLOG / DEVOTIONALS LISTING
   2 columns, soft cream, 25px padding, 5px border
   ============================================= */

.archive .post,
.blog .post,
.category .post,
.devotionals .post,
.post-type-archive .post {
    background: #f9f5f0;           /* Soft cream matching most WP themes */
    border: 5px solid #e8e0d5;     /* Slight 5px border */
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive .post:hover,
.blog .post:hover,
.category .post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 2 per row gallery layout */
.archive .posts,
.blog .posts,
.category .posts,
.devotionals .posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Remove author name */
.post .author,
.post .byline,
.post .post-author,
.post-meta .author {
    display: none !important;
}

/* Keep font styles clean and theme-friendly */
.archive .post h2,
.blog .post h2,
.category .post h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.archive .post .entry-content,
.blog .post .entry-content,
.category .post .entry-content {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Responsive - 1 column on mobile */
@media (max-width: 768px) {
    .archive .posts,
    .blog .posts,
    .category .posts {
        grid-template-columns: 1fr;
    }
}
