h1 {
    font-size: 2.5rem;
}

.cpt-archive-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.cpt-grid-1 {
    width: 1200px !important;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr)) !important;
    gap: 20px;
    padding: 20px;
}

.cpt-grid-2 {
    width: 1200px !important;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(500px,1fr)) !important;
    gap: 20px;
    padding: 20px;
}

.cpt-card {
    max-width: 100% !important;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
}

.cpt-card:hover {
    transform: translateY(-5px);
}

.cpt-card img {
    width: 100%;
    height: auto;
    display: block;
}

.cpt-card h2 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
}

.cpt-card p {
    color: #666;
    font-size: 0.9rem;
}

.cpt-pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.cpt-pagination a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

.cpt-pagination a:hover {
    text-decoration: underline;
}
