/* CMS Claupost — Frontend Product Grid */

.claupost-product-grid {
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.claupost-grid-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1d27;
    margin-bottom: 1rem;
}

.claupost-grid-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.claupost-grid-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.claupost-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.claupost-product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.claupost-product-info {
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.claupost-product-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #2d3748;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.claupost-product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #6c63ff;
}

.claupost-product-btn {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: #6c63ff;
    color: #fff;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s;
}

.claupost-product-link:hover .claupost-product-btn {
    background: #5a52d5;
}
