/* ===============================
    Prokits Child Theme Styles
=============================== */

/* General body */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3 {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
}

/* Links */
a {
    color: #0073e6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Grid Layout */
.tools-list, .kits-list, .blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* Card Style */
.tool-item, .kit-item, .blog-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tool-item:hover, .kit-item:hover, .blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Images inside cards */
.tool-item img, .kit-item img, .blog-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.tool-item h2, .kit-item h2, .blog-item h2 {
    font-size: 1.2rem;
    margin: 10px 0 5px;
}

.blog-item p {
    font-size: 0.95rem;
    color: #555;
}

/* Single Post */
.prokits-single {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 15px;
}

.prokits-single h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 30px 0;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 2px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #0073e6;
}

.pagination span.current {
    background-color: #0073e6;
    color: #fff;
    border-color: #0073e6;
}

