/* ShopCrossCraft Theme Styles */

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.site-branding {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    margin: 0;
    font-size: 24px;
}

.site-title a {
    text-decoration: none;
    color: #333;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.post-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.post-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    padding: 20px;
}

.post-title {
    margin: 0 0 10px;
    font-size: 20px;
}

.post-title a {
    text-decoration: none;
    color: #333;
}

.post-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.post-excerpt {
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: #0073aa;
    text-decoration: none;
}

/* Single Post */
.single-post {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    font-size: 36px;
    margin: 0 0 15px;
}

.entry-meta {
    font-size: 14px;
    color: #666;
}

.entry-content {
    font-size: 18px;
    line-height: 1.8;
}

.entry-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.entry-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin: 10px 0;
}

/* CTA */
.shopcrosscraft-cta {
    background: #f9f9f9;
    border: 2px solid #0073aa;
    border-radius: 8px;
    padding: 20px;
    margin: 40px 0;
    text-align: center;
}

.cta-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #005a87;
}

/* Footer */
.site-footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-navigation a {
    color: #fff;
    text-decoration: none;
}

.site-info {
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .entry-title {
        font-size: 28px;
    }
    
    .cta-links {
        flex-direction: column;
    }
}
