/* ================================
   MATERIAL PRICE ARCHIVE CARDS
   ================================ */

.trtm-material-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.trtm-card {
    display: block;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-decoration: none;
    color: #111;
    transition: all 0.25s ease;
}

.trtm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.trtm-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.trtm-card-price {
    font-size: 20px;
    font-weight: 600;
    color: #050a30;
}

.trtm-card-date {
    margin-top: 6px;
    font-size: 13px;
    opacity: 0.6;
}

/* Pagination */
.trtm-pagination {
    margin-top: 30px;
    text-align: center;
}

.trtm-pagination a,
.trtm-pagination span {
    padding: 8px 12px;
    margin: 0 4px;
    background: #f5f5f5;
    border-radius: 6px;
    text-decoration: none;
    color: #111;
    font-size: 14px;
}

.trtm-pagination .current {
    background: #050a30;
    color: #fff;
    font-weight: 600;
}