.telcon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.telcon-card {
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.telcon-card img {
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.telcon-price {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 5px;
}