/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 13 2025 | 07:01:52 */
/* ===========================
   BLOG PAGE GLOBAL STYLING
   =========================== */

/* Blog Page Title */
h1.wp-block-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

/* Each Post Wrapper */
.wp-block-post {
    margin-bottom: 60px;
    padding: 40px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.wp-block-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Post Title */
.wp-block-post-title a {
    text-decoration: none;
    color: #222;
    transition: color .2s ease;
}

.wp-block-post-title a:hover {
    color: #1a73e8;   /* blue hover */
}

/* Post Title Sizing */
.wp-block-post-title {
    margin-bottom: 18px;
}

/* Post Images */
.wp-block-post-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 18px;
}

/* Post Description Paragraph */
.wp-block-post-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

/* Blog Post Date */
.wp-block-post-date a {
    color: #777;
    text-decoration: none;
    font-size: 15px;
}

.wp-block-post-date a:hover {
    color: #000;
}

/* Blog List Layout Fix */
.wp-block-post-template {
    list-style: none !important;
    padding-left: 0 !important;
}

/* Reduce excessive spacing from default theme */
.wp-block-group.alignfull.has-global-padding {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

/* ===========================
   NAVIGATION BAR
   =========================== */

.wp-block-site-title a {
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    color: #111;
}

.wp-block-navigation__container a {
    color: #111;
    font-size: 17px;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background .2s ease, color .2s ease;
}

.wp-block-navigation__container a:hover {
    background: #f0f0f0;
}

/* Highlight active page in nav */
.current-menu-item a {
    color: #1a73e8 !important;
    font-weight: 600;
}

/* ===========================
   MOBILE RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .wp-block-post {
        padding: 25px;
    }

    h1.wp-block-heading {
        font-size: 34px;
    }

    .wp-block-post-title {
        font-size: 26px;
    }
}
