/* TangXuFeng Child Theme Custom Styles */

/* Footer */
.footer-copyright {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #e0e0e0;
    margin-top: 40px;
}

/* Module pages */
.page .entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page .entry-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page .entry-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.page .entry-content a {
    color: #0066cc;
    text-decoration: underline;
}

.page .entry-content a:hover {
    color: #004499;
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    background: #fff;
    transition: box-shadow 0.2s;
}

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

.product-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.product-card h3 a {
    color: #0066cc;
    text-decoration: none;
}

.product-card h3 a:hover {
    text-decoration: underline;
}

.product-card .meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
}

.product-card .desc {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}
