/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  GeneratePress Child Theme
 Author:       Your Name
 Author URI:   https://yoursite.com
 Template:     generatepress
 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:  generatepress-child
*/

/* Simple Posts Grid Styles */
.simple-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .simple-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .simple-posts-grid {
        grid-template-columns: 1fr;
    }
}

.simple-post-card {
    background: #fff;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.simple-post-card .post-title {
    margin: 0 0 15px 0;
    font-size: 1.4em;
    line-height: 1.3;
}

.simple-post-card .post-title a {
    color: #000;
    text-decoration: underline;
    text-decoration-color: #5bb4e8;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.simple-post-card .post-title a:hover {
    color: #333;
    text-decoration-color: #3a9fd8;
}

.simple-post-card .post-date {
    font-size: 0.75em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.simple-post-card .post-excerpt {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.simple-post-card .read-more-link {
    display: inline-block;
    margin-left: 4px;
    color: #5bb4e8;
    text-decoration: none;
    font-weight: 500;
}

.simple-post-card .read-more-link:hover {
    color: #3a9fd8;
    text-decoration: underline;
}

/* Pagination Styles */
.simple-posts-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.simple-posts-pagination a,
.simple-posts-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background: #fff;
    font-weight: 500;
    transition: all 0.2s ease;
}

.simple-posts-pagination a:hover {
    background: #5bb4e8;
    border-color: #5bb4e8;
    color: #fff;
}

.simple-posts-pagination .current {
    background: #5bb4e8;
    border-color: #5bb4e8;
    color: #fff;
}

.simple-posts-pagination .dots {
    border: none;
    background: transparent;
}

/* Single Post Styles */

/* Date in all caps */
.single .single-post-date {
    display: block;
    text-transform: uppercase;
    font-size: 0.85em;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

/* Breadcrumbs */
.single-post-breadcrumbs {
    font-size: 0.9em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.single-post-breadcrumbs a {
    color: #5bb4e8;
    text-decoration: none;
}

.single-post-breadcrumbs a:hover {
    color: #3a9fd8;
    text-decoration: underline;
}

.single-post-breadcrumbs .breadcrumb-separator {
    margin: 0 8px;
    color: #999;
}

.single-post-breadcrumbs .breadcrumb-current {
    color: #666;
}

