/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 17 2026 | 22:54:11 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* Blog Grid Style */
.blog .site-main,
.archive .site-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 30px;
}

/* Blog Cards */
.blog article,
.archive article {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.blog article:hover,
.archive article:hover {
    transform: translateY(-8px);
}

/* Featured Image */
.blog article img,
.archive article img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Content */
.blog .entry-content,
.archive .entry-content,
.blog .entry-header,
.archive .entry-header {
    padding: 20px;
}

/* Title */
.blog .entry-title a,
.archive .entry-title a {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

/* Meta */
.blog .entry-meta,
.archive .entry-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

/* Single Post */
.single-post .site-main {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

.single-post .post {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.single-post .entry-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.single-post .post img {
    border-radius: 20px;
    margin-bottom: 30px;
}